/**
 * main.css
 * Core design system and styles for PT Siti Rahmah Anugerah custom theme.
 */

/* ==========================================================================
   1. VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
	/* Colors */
	--primary-gold: #E5A93B;
	--primary-gold-hover: #D39527;
	--primary-dark: #1E2125;
	--primary-dark-hover: #171A1D;
	--bg-light: #F7F8FA;
	--bg-white: #FFFFFF;
	--bg-dark: #16181C;
	--wood-brown: #8B5A2B;
	--forest-green: #2E7D32;
	
	/* Text Colors */
	--text-main: #333940;
	--text-light: #67707A;
	--text-white: #FFFFFF;
	
	/* Typography */
	--font-headings: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;
	
	/* Spacing & Layout */
	--container-width: 1200px;
	--container-thin-width: 800px;
	--transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--border-radius: 8px;
	--box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	--box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   2. BASE RESETS & UTILITIES
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
}

html {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-main);
	background-color: var(--bg-white);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-headings);
	font-weight: 600;
	color: var(--primary-dark);
	margin-top: 0;
	margin-bottom: 0.8em;
	line-height: 1.3;
}

p {
	margin-top: 0;
	margin-bottom: 1.2em;
	color: var(--text-light);
}

a {
	color: var(--wood-brown);
	text-decoration: none;
	transition: var(--transition-smooth);
}

a:hover {
	color: var(--primary-gold);
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.container-thin {
	max-width: var(--container-thin-width);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--text-white) !important; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.font-italic { font-style: italic; }

.section-divider {
	width: 60px;
	height: 4px;
	background-color: var(--primary-gold);
	margin: 15px 0 35px 0;
	border-radius: 2px;
}

.section-divider.center {
	margin-left: auto;
	margin-right: auto;
}

.section-subtitle {
	font-family: var(--font-headings);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--primary-gold);
	text-transform: uppercase;
	display: block;
	margin-bottom: 5px;
}

.section-header {
	margin-bottom: 50px;
}

body.home .zoom-section,
body.front-page .zoom-section {
	transform: scale(0.94) translateY(14px);
	opacity: 0.76;
	transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.55s ease;
	transform-origin: top center;
	will-change: transform, opacity;
}

body.home .zoom-section.zoom-active,
body.front-page .zoom-section.zoom-active {
	transform: scale(1) translateY(0);
	opacity: 1;
}

/* Screen reader text for accessibility */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* ==========================================================================
   3. BUTTONS & ACTIONS
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-headings);
	font-weight: 600;
	padding: 10px 24px;
	border-radius: var(--border-radius);
	cursor: pointer;
	border: 2px solid transparent;
	transition: var(--transition-smooth);
	font-size: 0.95rem;
}

.btn-large {
	padding: 14px 36px;
	font-size: 1.05rem;
}

.btn-small {
	padding: 6px 14px;
	font-size: 0.85rem;
}

.btn-primary {
	background-color: var(--primary-gold);
	color: var(--primary-dark);
}

.btn-primary:hover {
	background-color: var(--primary-gold-hover);
	color: var(--primary-dark);
	box-shadow: 0 4px 15px rgba(229, 169, 59, 0.4);
}

.btn-secondary {
	background-color: var(--primary-dark);
	color: var(--text-white);
}

.btn-secondary:hover {
	background-color: var(--primary-dark-hover);
	color: var(--text-white);
}

.btn-outline {
	background-color: transparent;
	border-color: var(--text-white);
	color: var(--text-white);
}

.btn-outline:hover {
	background-color: var(--text-white);
	color: var(--primary-dark);
}

.btn-outline-white {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.4);
	color: var(--text-white);
}

.btn-outline-white:hover {
	background-color: var(--text-white);
	color: var(--primary-dark);
	border-color: var(--text-white);
}

.btn-block {
	display: flex;
	width: 100%;
}

.btn-link-white {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: underline;
	margin-left: 20px;
	font-size: 0.95rem;
}

.btn-link-white:hover {
	color: var(--text-white);
}

/* ==========================================================================
   4. STICKY HEADER & NAVIGATION
   ========================================================================== */
.site-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: var(--container-width);
	z-index: 1000;
	background-color: #1E2125;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	padding: 12px 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: var(--transition-smooth);
}

.site-header.is-sticky {
	top: 10px;
	padding: 8px 24px;
	background-color: rgba(30, 33, 37, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-container-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	padding-right: 20px;
	border-right: 1.5px solid rgba(229, 169, 59, 0.3); /* Gold border divider */
}

.logo-link {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text-white);
}

.logo-link:hover {
	color: var(--text-white);
}

.logo-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.logo-text {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.brand-title {
	font-family: var(--font-headings);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.8px;
	line-height: 1.25;
	color: #FFFFFF;
	text-transform: uppercase;
}

.brand-subtitle {
	font-family: var(--font-body);
	font-size: 0.55rem;
	font-weight: 600;
	letter-spacing: 0.8px;
	color: #E5A93B;
	line-height: 1.3;
	margin-top: 4px;
	text-transform: uppercase;
}

/* Main Navigation Menu */
.main-navigation {
	display: flex;
	align-items: center;
	flex-grow: 1;
	justify-content: center;
	margin: 0 20px;
}

.main-header-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 24px;
}

.main-header-menu li {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-header-menu a {
	color: #FFFFFF;
	font-family: var(--font-headings);
	font-size: 0.88rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.25;
	padding: 6px 4px;
	display: inline-block;
	transition: var(--transition-smooth);
	text-transform: none;
}

.main-header-menu a:hover {
	color: var(--primary-gold);
}

.main-header-menu .current-menu-item a {
	color: var(--primary-gold);
	position: relative;
}

/* Mobile Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 18px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.menu-toggle .bar {
	width: 100%;
	height: 2px;
	background-color: var(--text-white);
	transition: var(--transition-smooth);
}

/* Header CTA Button styling matching reference image */
.menu-quotation {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.btn-header-quote {
	background-color: var(--primary-gold);
	color: #1E2125 !important;
	border-radius: 6px;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	border: none;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.btn-header-quote:hover {
	background-color: var(--primary-gold-hover);
	color: #1E2125 !important;
	box-shadow: 0 4px 15px rgba(229, 169, 59, 0.35);
	transform: translateY(-1px);
}

.btn-header-quote .quote-icon {
	flex-shrink: 0;
	color: #1E2125;
	width: 18px;
	height: 18px;
}

.btn-header-quote .btn-text {
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: 1.15;
}

.btn-header-quote .btn-line-1 {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: none;
	display: block;
}

.btn-header-quote .btn-line-2 {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: none;
	display: block;
}

/* Adjust layout spacing for main content since header is floating */
.main-content-wrapper {
	padding-top: 100px;
}

body.home .site-header,
body.front-page .site-header {
	width: min(calc(100% - 40px), 1040px);
	max-width: 1040px;
}

/* ==========================================================================
   5. HOMEPAGE SECTIONS
   ========================================================================== */

/* 1. Hero Section */
.hero-section {
	position: relative;
	background-color: var(--primary-dark);
	background-image: linear-gradient(180deg, rgba(15, 17, 20, 0.48), rgba(15, 17, 20, 0.72)), url('../images/backheroplywood.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 100px 0;
	min-height: calc(85vh - 80px);
	display: flex;
	align-items: center;
}

.hero-bg-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(10, 12, 15, 0.28);
	backdrop-filter: blur(2px);
	z-index: 1;
}

.hero-container {
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 760px;
}

.about-hero-section {
	position: relative;
	padding: 120px 0 70px;
	background-color: var(--primary-dark);
	background-image: linear-gradient(180deg, rgba(15, 17, 20, 0.92), rgba(15, 17, 20, 0.78)), url('../images/backheroplywood.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--text-white);
}

.about-hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(229, 169, 59, 0.18), transparent 22%), radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.06), transparent 22%);
	pointer-events: none;
}

.page-hero-inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.page-hero-copy {
	max-width: 760px;
}

.about-hero-section .page-hero-title {
	font-size: clamp(3rem, 4vw, 4.6rem);
	font-weight: 800;
	line-height: 1.05;
	margin: 18px 0 20px;
	letter-spacing: -0.7px;
}

.about-hero-section .page-hero-subtitle {
	font-size: 1.05rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.88);
	max-width: 700px;
	margin-bottom: 28px;
}

.about-hero-section .hero-copy-text p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.85;
	max-width: 680px;
}

.hero-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 35px;
}

.hero-stat-card {
	padding: 22px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
}

.hero-stat-number {
	display: block;
	font-family: var(--font-headings);
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-white);
	margin-bottom: 8px;
}

.hero-stat-label {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.72);
}

.hero-action-row {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.page-hero-visual {
	display: flex;
	justify-content: flex-end;
}

.hero-visual-card {
	max-width: 420px;
	padding: 32px;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 28px;
	backdrop-filter: blur(14px);
}

.hero-visual-image {
	margin-bottom: 24px;
	overflow: hidden;
	border-radius: 22px;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.hero-visual-image img {
	display: block;
	width: 100%;
	height: auto;
}

.hero-visual-card h3 {
	font-size: 1.3rem;
	margin-bottom: 16px;
}

.hero-visual-card p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.75;
	margin-bottom: 24px;
}

.hero-visual-list {
	display: grid;
	gap: 14px;
}

.hero-visual-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.hero-visual-marker {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--primary-gold);
	flex-shrink: 0;
	margin-top: 5px;
}

.hero-visual-item span {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.96rem;
	line-height: 1.7;
}

@media screen and (max-width: 1100px) {
	.page-hero-inner {
		grid-template-columns: 1fr;
	}

	.page-hero-visual {
		justify-content: center;
		margin-top: 32px;
	}
}

@media screen and (max-width: 768px) {
	.page-hero-section {
		padding: 80px 0 50px;
	}

	.hero-stats-grid {
		grid-template-columns: 1fr;
	}

	.hero-action-row {
		flex-direction: column;
	}

	.hero-visual-card {
		width: 100%;
		max-width: none;
	}
}

.hero-tagline {
	font-family: var(--font-headings);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--primary-gold);
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 15px;
}

.hero-headline {
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.15;
	color: var(--text-white);
	margin-bottom: 20px;
	letter-spacing: -0.5px;
	text-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.hero-subheadline {
	font-size: 1.25rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 25px;
	border-left: 3px solid var(--primary-gold);
	padding-left: 15px;
	text-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-body-copy p {
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 20px;
	line-height: 1.75;
}

.hero-actions {
	margin-top: 35px;
	display: flex;
	gap: 15px;
}

.hero-actions .btn {
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.hero-actions .btn:hover {
	transform: translateY(-1px);
}

/* 2. Key Stats Section */
.stats-section {
	padding: 60px 0;
	background-color: var(--bg-white);
	margin-top: -60px;
	position: relative;
	z-index: 10;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.stat-card {
	background-color: var(--bg-white);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	text-align: center;
	border-top: 4px solid transparent;
	transition: var(--transition-smooth);
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-hover);
	border-top-color: var(--primary-gold);
}

.stat-icon-wrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgba(229, 169, 59, 0.1);
	color: var(--primary-gold);
	margin-bottom: 20px;
}

.stat-number {
	font-family: var(--font-headings);
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary-dark);
	margin-bottom: 5px;
}

.stat-label {
	font-family: var(--font-headings);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 10px;
}

.stat-desc {
	font-size: 0.85rem;
	margin-bottom: 0;
}

/* 3. Featured Products Section */
.products-section {
	padding: 100px 0;
	background-color: var(--bg-light);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.product-card {
	background-color: var(--bg-white);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	overflow: hidden;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--box-shadow-hover);
}

.product-img-holder {
	position: relative;
	overflow: hidden;
	background-color: var(--primary-dark);
}

.product-img-holder svg {
	width: 100%;
	height: auto;
	display: block;
	transition: var(--transition-smooth);
}

.product-card:hover .product-img-holder svg {
	transform: scale(1.05);
}

.product-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: var(--primary-dark);
	color: var(--primary-gold);
	font-family: var(--font-headings);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-info {
	padding: 25px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-name {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.product-description {
	font-size: 0.9rem;
	line-height: 1.5;
	flex-grow: 1;
	margin-bottom: 20px;
}

.product-cta {
	font-family: var(--font-headings);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--wood-brown);
}

.product-cta:hover {
	color: var(--primary-gold);
}

/* 4. Why Choose Us Section */
.why-choose-section {
	padding: 100px 0;
	background-color: var(--bg-white);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
}

.benefit-card {
	padding: 20px;
	border-radius: var(--border-radius);
	transition: var(--transition-smooth);
}

.benefit-card:hover {
	background-color: var(--bg-light);
}

.benefit-icon {
	color: var(--primary-gold);
	margin-bottom: 15px;
	font-size: 1.5rem;
	display: inline-block;
}

.benefit-card h3 {
	font-size: 1.15rem;
	margin-bottom: 12px;
}

.benefit-card p {
	font-size: 0.92rem;
	line-height: 1.6;
	margin-bottom: 0;
}

/* 5. Certifications Section */
.certifications-section {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.certifications-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.cert-card {
	background-color: var(--bg-white);
	padding: 30px 20px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	transition: var(--transition-smooth);
}

.cert-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--box-shadow-hover);
}

.cert-logo-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	margin-bottom: 20px;
}

.cert-card h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.cert-card p {
	font-size: 0.85rem;
	line-height: 1.5;
	margin-bottom: 15px;
}

.cert-link {
	font-family: var(--font-headings);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-light);
}

.cert-link:hover {
	color: var(--primary-gold);
}

/* 6. Blog Section */
.blog-section {
	padding: 100px 0;
	background-color: var(--bg-white);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-card {
	background-color: var(--bg-white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--border-radius);
	overflow: hidden;
	transition: var(--transition-smooth);
}

.blog-card:hover {
	box-shadow: var(--box-shadow-hover);
	border-color: transparent;
	transform: translateY(-4px);
}

.blog-img-holder svg {
	width: 100%;
	height: auto;
	display: block;
}

.blog-info {
	padding: 25px;
}

.blog-meta {
	font-size: 0.8rem;
	color: var(--text-light);
	margin-bottom: 10px;
	font-weight: 500;
}

.blog-title {
	font-size: 1.15rem;
	line-height: 1.4;
	margin-bottom: 15px;
}

.blog-title a {
	color: var(--primary-dark);
}

.blog-title a:hover {
	color: var(--primary-gold);
}

.blog-excerpt {
	font-size: 0.88rem;
	line-height: 1.6;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-link {
	font-family: var(--font-headings);
	font-size: 0.85rem;
	font-weight: 600;
}

/* 7. Testimonials Section */
.testimonials-section {
	padding: 100px 0;
	background-color: var(--bg-light);
}

.testimonials-slider {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
}

.testimonials-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.testimonial-card {
	min-width: 100%;
	padding: 40px;
	background-color: var(--bg-white);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	text-align: center;
}

.testimonial-rating {
	color: var(--primary-gold);
	font-size: 1.4rem;
	margin-bottom: 20px;
}

.testimonial-text {
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--text-main);
	font-style: italic;
	margin-bottom: 25px;
}

.testimonial-author h4 {
	font-size: 1.05rem;
	margin-bottom: 5px;
}

.testimonial-author span {
	font-size: 0.85rem;
	color: var(--text-light);
	font-weight: 500;
}

.slider-controls {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 30px;
}

.slider-btn {
	background-color: var(--bg-white);
	border: 1px solid rgba(0, 0, 0, 0.1);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 0.9rem;
	transition: var(--transition-smooth);
}

.slider-btn:hover {
	background-color: var(--primary-gold);
	color: var(--primary-dark);
	border-color: var(--primary-gold);
}

/* 8. Contact Section */
.contact-section {
	padding: 100px 0;
	background-color: var(--primary-dark);
	background-image: radial-gradient(circle at bottom left, rgba(229, 169, 59, 0.08), transparent 45%);
}

.contact-box {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 50px;
	align-items: center;
}

.contact-content-info h2 {
	font-size: 2.5rem;
	line-height: 1.2;
}

.contact-content-info p {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 35px;
}

.contact-actions-row {
	display: flex;
	gap: 15px;
}

.contact-visual-card {
	background-color: var(--bg-white);
	padding: 40px;
	border-radius: var(--border-radius);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-visual-card h3 {
	font-size: 1.35rem;
	margin-bottom: 10px;
}

.contact-visual-card p {
	font-size: 0.88rem;
	margin-bottom: 25px;
}

.form-group {
	margin-bottom: 15px;
}

.form-input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: var(--border-radius);
	font-family: var(--font-body);
	font-size: 0.92rem;
	color: var(--text-main);
	background-color: var(--bg-light);
	transition: var(--transition-smooth);
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-gold);
	background-color: var(--bg-white);
	box-shadow: 0 0 0 3px rgba(229, 169, 59, 0.15);
}

select.form-input {
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 18px;
}

/* ==========================================================================
   6. INNER PAGE LAYOUTS
   ========================================================================== */

/* Page Hero */
.page-hero-section {
	background-color: var(--primary-dark);
	padding: 80px 0 60px 0;
	color: var(--text-white);
	position: relative;
	background-image: radial-gradient(circle at top right, rgba(229, 169, 59, 0.08), transparent 45%);
}

.page-hero-title {
	font-size: 2.8rem;
	color: var(--text-white);
	margin-bottom: 15px;
}

.page-hero-subtitle {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.7);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Default standard page style */
.default-page-section {
	padding: 80px 0;
}

.page-header {
	margin-bottom: 40px;
}

.page-title {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.entry-content {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--text-main);
	max-width: 900px;
	margin: 0 auto;
}

.entry-content p {
	margin-bottom: 1.5em;
}

.highlight-box {
	background-color: rgba(229, 169, 59, 0.08);
	border-left: 4px solid var(--primary-gold);
	padding: 25px;
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
	margin: 30px 0;
}

.highlight-box h3 {
	font-size: 1.15rem;
	margin-bottom: 10px;
}

.highlight-box p:last-child {
	margin-bottom: 0;
}

.styled-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 25px;
}

.styled-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	font-size: 0.95rem;
}

.styled-list li::before {
	content: "•";
	position: absolute;
	left: 5px;
	top: -2px;
	color: var(--primary-gold);
	font-size: 1.4rem;
}

/* 6.1 ABOUT US PAGE SPECIFICS */
.about-intro-section {
	padding: 80px 0;
}

.about-intro-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: center;
}

.about-intro-media svg {
	width: 100%;
	height: auto;
	display: block;
	box-shadow: var(--box-shadow-hover);
	border-radius: var(--border-radius);
}

.sub-headline {
	font-size: 1.8rem;
	margin-bottom: 20px;
}

/* Timeline Layout */
.timeline {
	position: relative;
	max-width: 900px;
	margin: 40px auto;
	padding: 20px 0;
}

.timeline::after {
	content: '';
	position: absolute;
	width: 4px;
	background-color: rgba(229, 169, 59, 0.2);
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -2px;
}

.timeline-item {
	padding: 10px 40px;
	position: relative;
	background-color: inherit;
	width: 50%;
}

.timeline-item::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	right: -8px;
	background-color: var(--bg-white);
	border: 4px solid var(--primary-gold);
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}

.left {
	left: 0;
}

.right {
	left: 50%;
}

.right::after {
	left: -8px;
}

.timeline-content {
	padding: 25px;
	background-color: var(--bg-white);
	position: relative;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
}

.timeline-date {
	font-family: var(--font-headings);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--primary-gold);
	text-transform: uppercase;
	margin-bottom: 5px;
}

.timeline-content h3 {
	font-size: 1.15rem;
	margin-bottom: 10px;
}

.timeline-content p {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 0;
}

/* Facility Page Section */
.facility-section {
	padding: 80px 0;
}

.section-intro-text {
	max-width: 800px;
	margin: 0 auto 50px auto;
	font-size: 1.1rem;
}

.facility-info-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
}

.facility-metrics-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.metric-box {
	background-color: var(--bg-light);
	padding: 25px;
	border-radius: var(--border-radius);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.metric-val {
	font-family: var(--font-headings);
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--wood-brown);
	line-height: 1;
	margin-bottom: 8px;
}

.metric-lbl {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-light);
	text-transform: uppercase;
}

/* Values grid */
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.value-card {
	background-color: var(--bg-white);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	position: relative;
	overflow: hidden;
}

.value-number {
	font-family: var(--font-headings);
	font-size: 4rem;
	font-weight: 800;
	color: rgba(229, 169, 59, 0.08);
	position: absolute;
	top: -10px;
	right: 15px;
	line-height: 1;
}

.value-card h3 {
	font-size: 1.2rem;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;
}

.value-card p {
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}

/* Team Grid */
.team-section {
	padding: 80px 0;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.team-card {
	text-align: center;
	background-color: var(--bg-white);
	border: 1px solid rgba(0, 0, 0, 0.06);
	padding: 30px 20px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
}

.team-avatar-placeholder {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.team-card h3 {
	font-size: 1.15rem;
	margin-bottom: 4px;
}

.team-title {
	font-family: var(--font-headings);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--primary-gold);
	text-transform: uppercase;
	display: block;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
}

.team-bio {
	font-size: 0.82rem;
	line-height: 1.5;
	margin-bottom: 0;
}

/* Awards Grid */
.awards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.award-card {
	background-color: var(--bg-white);
	padding: 25px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	text-align: center;
}

.award-year {
	font-family: var(--font-headings);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary-gold);
	margin-bottom: 8px;
}

.award-card h3 {
	font-size: 1rem;
	margin-bottom: 5px;
}

.award-org {
	font-size: 0.8rem;
	color: var(--text-light);
	margin-bottom: 0;
	font-weight: 500;
}

/* Semarang Features */
.semarang-section {
	padding: 80px 0;
}

.semarang-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.semarang-feature-box {
	background-color: var(--bg-light);
	padding: 30px;
	border-radius: var(--border-radius);
}

.semarang-feature-box h4 {
	font-size: 1.1rem;
	color: var(--wood-brown);
	margin-bottom: 12px;
	border-bottom: 2px solid var(--primary-gold);
	padding-bottom: 8px;
	display: inline-block;
}

.semarang-feature-box p {
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.about-cta-section {
	padding: 80px 0;
}

.about-cta-section h2 {
	font-size: 2.2rem;
	margin-bottom: 15px;
}

.about-cta-section p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 30px;
}

/* 6.2 COMMERCIAL PLYWOOD PRODUCT PAGE SPECIFICS */
.product-intro-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 50px;
	padding: 60px 0;
}

.lead-text {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--primary-dark);
}

.specs-quick-card {
	background-color: var(--primary-dark);
	color: var(--text-white);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
}

.specs-quick-card h3 {
	font-size: 1.15rem;
	color: var(--text-white);
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 10px;
}

.specs-quick-card ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 25px;
}

.specs-quick-card li {
	margin-bottom: 10px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

.specs-quick-card strong {
	color: var(--primary-gold);
}

/* Specifications Table */
.table-responsive {
	overflow-x: auto;
	margin: 30px 0;
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius);
}

.specs-table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--bg-white);
}

.specs-table th, 
.specs-table td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 0.95rem;
}

.specs-table th {
	background-color: var(--primary-dark);
	color: var(--text-white);
	font-family: var(--font-headings);
	font-weight: 600;
}

.specs-table tr:last-child td {
	border-bottom: none;
}

.specs-table tr:nth-child(even) {
	background-color: var(--bg-light);
}

/* Product Grades */
.grades-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.grade-card {
	background-color: var(--bg-white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--border-radius);
	padding: 35px 25px;
	position: relative;
	box-shadow: var(--box-shadow);
	transition: var(--transition-smooth);
}

.grade-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-hover);
}

.grade-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	font-family: var(--font-headings);
	font-size: 0.65rem;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	letter-spacing: 0.5px;
}

.premium-tier {
	border-top: 4px solid var(--primary-gold);
}

.premium-tier .grade-badge {
	background-color: rgba(229, 169, 59, 0.1);
	color: var(--primary-gold);
}

.mid-tier {
	border-top: 4px solid var(--wood-brown);
}

.mid-tier .grade-badge {
	background-color: rgba(139, 90, 43, 0.1);
	color: var(--wood-brown);
}

.economy-tier {
	border-top: 4px solid var(--text-light);
}

.economy-tier .grade-badge {
	background-color: rgba(103, 112, 122, 0.1);
	color: var(--text-light);
}

.grade-card h3 {
	font-size: 1.25rem;
	margin-bottom: 15px;
	margin-top: 10px;
}

.grade-desc {
	font-size: 0.9rem;
	color: var(--text-main);
	margin-bottom: 25px;
	line-height: 1.6;
}

.grade-details {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.grade-details li {
	margin-bottom: 8px;
	font-size: 0.85rem;
	color: var(--text-light);
}

.grade-details strong {
	color: var(--primary-dark);
}

/* App list on product details */
.app-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.app-card {
	background-color: var(--bg-white);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
}

.app-card h4 {
	font-size: 1.15rem;
	color: var(--wood-brown);
	margin-bottom: 12px;
	border-left: 3px solid var(--primary-gold);
	padding-left: 12px;
}

.app-list {
	list-style: none;
	padding-left: 0;
}

.app-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	font-size: 0.9rem;
}

.app-list li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--primary-gold);
}

.assurance-list-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 30px 0;
}

.assurance-item {
	background-color: var(--bg-white);
	padding: 20px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	font-size: 0.9rem;
	text-align: left;
}

.assurance-item strong {
	color: var(--primary-gold);
	display: block;
	margin-bottom: 5px;
}

.ordering-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.ordering-card {
	background-color: var(--bg-light);
	padding: 30px;
	border-radius: var(--border-radius);
}

.ordering-card h4 {
	font-size: 1.15rem;
	margin-bottom: 15px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.05);
	padding-bottom: 8px;
}

/* Pricing Table styling */
.pricing-table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--bg-white);
}

.pricing-table th, 
.pricing-table td {
	padding: 16px 20px;
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 0.95rem;
}

.pricing-table th {
	background-color: var(--primary-dark);
	color: var(--text-white);
	font-family: var(--font-headings);
	font-weight: 600;
}

.pricing-table tr:last-child td {
	border-bottom: none;
}

.pricing-table tr.table-divider td {
	border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.pricing-note {
	margin-top: 15px;
	font-size: 0.85rem;
}

/* FAQ Accordion Styling */
.faq-accordion-wrapper {
	max-width: 800px;
	margin: 40px auto;
}

.accordion-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-headings);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--primary-dark);
}

.accordion-header:hover {
	color: var(--primary-gold);
}

.accordion-icon {
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--primary-gold);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.accordion-content p {
	padding-bottom: 20px;
	font-size: 0.92rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.accordion-item.active .accordion-content {
	max-height: 300px; /* Allow enough height for text */
}

/* Related Products Grid */
.related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.related-card {
	background-color: var(--bg-white);
	padding: 25px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	display: flex;
	flex-direction: column;
}

.related-card h4 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.related-card p {
	font-size: 0.85rem;
	flex-grow: 1;
	margin-bottom: 15px;
}

.cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 30px;
}

/* 6.3 MANUFACTURING PROCESS PAGE SPECIFICS */
.facility-overview-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 50px;
	padding: 60px 0;
}

.facility-metrics-sidebar h3 {
	font-size: 1.15rem;
	margin-bottom: 15px;
}

/* Step roadmap styling */
.process-roadmap {
	max-width: 900px;
	margin: 50px auto;
	position: relative;
}

.process-roadmap::after {
	content: '';
	position: absolute;
	width: 4px;
	background-color: rgba(229, 169, 59, 0.2);
	left: 30px;
	top: 10px;
	bottom: 10px;
	z-index: 1;
}

.process-step {
	display: flex;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.process-step:last-child {
	margin-bottom: 0;
}

.step-number {
	width: 64px;
	height: 64px;
	background-color: var(--bg-white);
	border: 3px solid var(--primary-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-headings);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--primary-gold);
	margin-right: 30px;
	flex-shrink: 0;
	box-shadow: var(--box-shadow);
	transition: var(--transition-smooth);
}

.process-step:hover .step-number {
	background-color: var(--primary-gold);
	color: var(--primary-dark);
}

.step-content {
	background-color: var(--bg-white);
	padding: 25px 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	flex-grow: 1;
}

.step-content h3 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.step-content p {
	font-size: 0.92rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.manufacturing-cta {
	padding: 80px 0;
}

/* Single Blog Page details */
.container-thin {
	max-width: 800px;
}

.single-post-section {
	padding: 80px 0;
}

.post-header {
	margin-bottom: 30px;
}

.post-meta {
	font-size: 0.9rem;
	color: var(--text-light);
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
}

.post-meta span {
	display: flex;
	align-items: center;
}

.post-meta svg {
	margin-right: 6px;
}

.post-thumbnail-wrapper {
	margin-bottom: 40px;
}

.featured-image {
	max-width: 100%;
	height: auto;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
}

.post-navigation-links {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	font-family: var(--font-headings);
	font-size: 0.95rem;
	font-weight: 600;
}

/* ==========================================================================
   7. FOOTER SECTION & FLOATING WIDGET
   ========================================================================== */
.site-footer {
	background-color: var(--bg-dark);
	color: rgba(255, 255, 255, 0.7);
	padding: 80px 0 0 0;
	font-size: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
	margin-bottom: 60px;
}

.footer-widget-area {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1.1fr 0.9fr;
	gap: 40px;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.footer-brand-title {
	font-family: var(--font-headings);
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--text-white);
	letter-spacing: 1px;
}

.footer-desc {
	font-size: 0.88rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer-certifications-badges {
	display: flex;
	gap: 10px;
}

.badge {
	font-family: var(--font-headings);
	font-size: 0.65rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	text-transform: uppercase;
}

.badge-svlk {
	background-color: rgba(46, 125, 50, 0.2);
	color: var(--forest-green);
	border: 1px solid var(--forest-green);
}

.badge-iso {
	background-color: rgba(13, 71, 161, 0.2);
	color: #2196F3;
	border: 1px solid #2196F3;
}

.badge-fsc {
	background-color: rgba(51, 105, 30, 0.2);
	color: #8BC34A;
	border: 1px solid #8BC34A;
}

.footer-title {
	font-family: var(--font-headings);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 8px;
}

.footer-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background-color: var(--primary-gold);
}

.footer-links {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
	color: var(--primary-gold);
	padding-left: 5px;
}

.footer-address p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
}

.addr-icon {
	color: var(--primary-gold);
	margin-right: 10px;
	flex-shrink: 0;
	margin-top: 3px;
}

.footer-social-links {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.footer-social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition-smooth);
}

.footer-social-links a:hover {
	background-color: var(--primary-gold);
	color: var(--primary-dark);
}

.newsletter-form {
	margin-top: 15px;
}

.newsletter-form .form-input {
	background-color: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
	color: var(--text-white);
	margin-bottom: 10px;
}

.newsletter-form .form-input:focus {
	border-color: var(--primary-gold);
	background-color: rgba(255, 255, 255, 0.08);
}

.site-info {
	background-color: #0E0F12;
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-info-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.copyright {
	margin-bottom: 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.4);
}

.footer-policy-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 20px;
}

.footer-policy-menu a {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.4);
}

.footer-policy-menu a:hover {
	color: var(--primary-gold);
}

/* Floating WhatsApp Button widget */
.floating-wa {
	position: fixed;
	bottom: 25px;
	right: 25px;
	background-color: #25D366;
	color: var(--text-white);
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	z-index: 999;
	transition: var(--transition-smooth);
	animation: wa-bounce 2s infinite;
}

.floating-wa:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
	background-color: #20BA5A;
}

@keyframes wa-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}


/* ==========================================================================
   8. RESPONSIVE MEDIA QUERIES (Browser, Hp, Tab)
   ========================================================================== */

/* Tablet Breakpoint (Large screens up to 992px) */
@media screen and (max-width: 992px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.certifications-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.about-intro-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.facility-info-grid {
		grid-template-columns: 1fr;
	}
	
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.awards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.semarang-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.product-intro-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.grades-grid {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin: 0 auto;
	}
	
	.ordering-grid {
		grid-template-columns: 1fr;
	}
	
	.related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.facility-overview-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-widget-area {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.timeline::after {
		left: 31px;
	}
	
	.timeline-item {
		width: 100%;
		padding-left: 70px;
		padding-right: 20px;
	}
	
	.timeline-item::after {
		left: 23px;
		right: auto;
	}
	
	.left, .right {
		left: 0;
	}
}

/* Mobile Breakpoint (Phones up to 768px) */
@media screen and (max-width: 768px) {
	/* Header Navigation for Mobile */
	.menu-toggle {
		display: flex;
	}
	
	.main-header-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--primary-dark);
		flex-direction: column;
		padding: 20px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
		transform: translateY(-20px);
		opacity: 0;
		pointer-events: none;
		transition: var(--transition-smooth);
	}
	
	.main-header-menu.toggled {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	
	.main-header-menu li {
		margin: 10px 25px;
	}
	
	.main-header-menu a {
		display: block;
		font-size: 1.05rem;
	}
	
	.menu-toggle.active .bar-1 {
		transform: translateY(8px) rotate(45deg);
	}
	
	.menu-toggle.active .bar-2 {
		opacity: 0;
	}
	
	.menu-toggle.active .bar-3 {
		transform: translateY(-8px) rotate(-45deg);
	}
	
	.menu-quotation {
		display: none; /* Hide top quotation button on smaller mobiles */
	}
	
	/* Typography adjustments */
	.hero-headline {
		font-size: 2.2rem;
	}
	
	.page-hero-title {
		font-size: 2rem;
	}
	
	.page-title {
		font-size: 1.8rem;
	}
	
	.hero-subheadline {
		font-size: 1.05rem;
	}
	
	/* Layout grid single columns */
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.products-grid {
		grid-template-columns: 1fr;
	}
	
	.benefits-grid {
		grid-template-columns: 1fr;
	}
	
	.certifications-grid {
		grid-template-columns: 1fr;
	}
	
	.blog-grid {
		grid-template-columns: 1fr;
	}
	
	.team-grid {
		grid-template-columns: 1fr;
		max-width: 350px;
		margin: 0 auto;
	}
	
	.awards-grid {
		grid-template-columns: 1fr;
	}
	
	.semarang-grid {
		grid-template-columns: 1fr;
	}
	
	.app-grid {
		grid-template-columns: 1fr;
	}
	
	.assurance-list-grid {
		grid-template-columns: 1fr;
	}
	
	.related-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-widget-area {
		grid-template-columns: 1fr;
	}
	
	.contact-box {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.contact-content-info h2 {
		font-size: 2rem;
	}
	
	.contact-actions-row {
		flex-direction: column;
		gap: 10px;
	}
	
	.contact-visual-card {
		padding: 25px;
	}
	
	.hero-actions {
		flex-direction: column;
		gap: 10px;
	}
	
	.footer-info-inner {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.footer-policy-menu {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.process-roadmap::after {
		left: 20px;
	}
	
	.process-step {
		margin-bottom: 30px;
	}
	
	.step-number {
		width: 44px;
		height: 44px;
		font-size: 1rem;
		margin-right: 15px;
	}
	
	.step-content {
		padding: 15px 20px;
	}
	
	.step-content h3 {
		font-size: 1.1rem;
	}
}
