/* ===== IMPORTS (reduced to 2 fonts for performance) ===== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Montserrat:wght@400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --color-primary: #1A1A2E;
  --color-accent: #C39661;
  --color-accent-dark: #a87d4e;
  --color-accent-light: rgba(195,150,97,0.1);
  --color-dark: #0D0D0D;
  --color-darker: #080808;
  --color-section: #111111;
  --color-section-alt: #0a0a0a;
  --color-cream: #FAF6F1;
  --color-white: #ffffff;
  --color-text: rgba(0, 0, 0, 0.7);
  --color-text-muted: rgba(0, 0, 0, 0.5);
  --color-border: rgba(0, 0, 0, 0.1);
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  --font-alt: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
  --container-max: 1280px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  width: 120px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #1a1a1a;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1001;
  transition: transform 0.3s ease;
}
.top-bar .container {
  max-width: 1600px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}
.top-bar a:hover {
  color: #fff;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 34px; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: top 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  top: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header .container {
  max-width: 1600px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo img {
  height: 36px;
  width: auto;
}
.header.scrolled .logo img {
  height: 36px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.nav-menu li {
  position: relative;
}
.nav-menu li a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 0;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #1a1a1a;
  transition: width 0.3s ease;
}
.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}
.nav-menu li a:hover {
  color: #1a1a1a;
}

/* Dropdown */
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  color: #1a1a1a;
}
.dropdown-menu li a:hover {
  background: rgba(195, 150, 97, 0.1);
}
.dropdown-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 6px 16px;
}
.dropdown > a::after {
  display: none;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dropdown-toggle i {
  font-size: 10px;
  transition: var(--transition);
}
.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.nav-cta:hover {
  background: #333;
}

/* Mobile CTA in nav menu - hidden on desktop */
.mobile-cta-item {
  display: none;
}
.mobile-cta-item .nav-cta {
  padding: 10px 24px;
  font-size: 13px;
  border-radius: 6px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-toggle span {
  width: 28px; height: 2px;
  background: #1a1a1a;
  transition: var(--transition);
}

/* Mobile Products Dropdown */
.mobile-products-dropdown {
  display: none;
  position: relative;
  margin-left: auto;
  margin-right: 12px;
}
.mobile-products-btn {
  background: none;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.mobile-products-btn i {
  font-size: 9px;
  transition: transform 0.3s ease;
}
.mobile-products-dropdown.active .mobile-products-btn i {
  transform: rotate(180deg);
}
.mobile-products-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  list-style: none;
  min-width: 200px;
  padding: 8px 0;
  z-index: 1002;
}
.mobile-products-dropdown.active .mobile-products-menu {
  display: block;
}
.mobile-products-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: #1a1a1a;
  transition: var(--transition);
}
.mobile-products-menu li a:hover {
  background: #f5f5f5;
  color: var(--color-primary);
}
.mobile-products-divider {
  height: 1px;
  background: #eee;
  margin: 6px 12px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.hero-slider {
  position: absolute;
  top: 0; right: 0;
  width: 65%; height: 100%;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 15%, rgba(0,0,0,0.05) 20%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.8) 50%, black 65%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 15%, rgba(0,0,0,0.05) 20%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.8) 50%, black 65%);
}
.hero-slide {
  position: absolute;
  bottom: 0; right: 100px;
  width: auto; height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 2.5s ease-in-out, transform 7s ease-in-out;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 200px 0 100px;
  max-width: 520px;
  text-align: left;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: 62px;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.hero-headline .static-text {
  display: block;
  color: #1a1a1a;
}
.hero-headline .rotating-text {
  color: var(--color-accent);
  display: block;
  position: relative;
  min-height: 1.3em;
  overflow: hidden;
}
.hero-headline .rotating-text .word {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0; left: 0; width: 100%;
  will-change: opacity, transform;
}
.hero-headline .rotating-text .word.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-headline .rotating-text .word.exit {
  opacity: 0;
  transform: translateY(-100%);
}
.hero-description {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  margin: 20px 0 35px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(195, 150, 97, 0.3);
}
.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}
.btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-3px);
}

/* ===== COMPANY BAR ===== */
.company-bar {
  background: #ffffff;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.company-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.company-bar-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}
.company-bar-images {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.company-bar-images img {
  width: 240px;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}
.company-bar-images img:hover {
  transform: scale(1.05);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt {
  background-color: #f5f5f5;
}
.section-dark {
  background-color: #0D0D0D;
}
.section-label {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.section-title .accent {
  color: var(--color-accent);
}
.section-subtitle {
  font-size: 16px;
  color: var(--color-text);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: #ffffff;
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content .section-label {
  margin-bottom: 8px;
}
.about-content .section-title {
  margin-bottom: 25px;
}
.about-content .section-title .rotating-text-about {
  color: var(--color-accent);
  display: inline-block;
  position: relative;
  min-width: 300px;
}
.about-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 40px;
}
.counters {
  display: flex;
  gap: 40px;
}
.counter-item {
  text-align: center;
}
.counter-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}
.counter-suffix {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
}
.counter-label {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 8px;
  font-weight: 500;
}
.about-images {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.about-images .img-large {
  width: 58%;
  border-radius: 4px;
  max-width: 510px;
}
.about-images .img-small {
  width: 42%;
  border-radius: 4px;
  max-width: 360px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 80px 0;
  background: #f5f5f5;
}
.products-header {
  margin-bottom: 50px;
}
.product-group {
  padding: 60px 0;
}
.product-group-header {
  margin-bottom: 40px;
}
.product-group-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}
.product-group-title .animate-headline {
  color: var(--color-accent);
}
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(0,0,0,0.06);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.product-card-image {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 20px;
  aspect-ratio: auto;
}
.product-card-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 15px;
}

/* ===== PRODUCT DETAIL (GHDMR, Laminates, Veneers) ===== */
.product-detail-section {
  padding: 100px 0;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 60px;
  align-items: center;
}
.product-detail-grid.reverse {
  grid-template-columns: 35% 65%;
}
.product-detail-images {
  display: flex;
  gap: 15px;
}
.product-detail-images .img-large {
  width: 58%;
}
.product-detail-images .img-small {
  width: 42%;
}
.product-detail-content .section-label {
  margin-bottom: 8px;
}
.product-detail-content .section-title {
  font-size: 32px;
  margin-bottom: 25px;
  color: #1a1a1a;
}
.product-detail-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 25px;
}
.product-specs {
  margin-top: 30px;
}
.product-specs table {
  width: 100%;
  border-collapse: collapse;
}
.product-specs td {
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 14px;
  color: var(--color-text);
}
.product-specs td:first-child {
  font-weight: 600;
  color: #1a1a1a;
  width: 40%;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  position: relative;
  padding: 150px 0;
  background-image: url('../images/video-overlay1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.video-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.video-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.play-btn::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  animation: ripple 1.5s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.play-btn:hover {
  background: var(--color-accent-dark);
  transform: scale(1.1);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.video-modal.active {
  display: flex;
}
.video-modal-content {
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
  position: relative;
}
.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal-close {
  position: absolute;
  top: -40px; right: 0;
  color: var(--color-white);
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}

/* ===== WORKS SECTION ===== */
.works-section {
  padding: 100px 0;
  background: #0D0D0D;
}
.works-header {
  text-align: center;
  margin-bottom: 60px;
}
.works-header .section-label {
  color: var(--color-accent);
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.work-item {
  text-align: center;
  padding: 40px 30px;
}
.work-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 15px;
  line-height: 1;
}
.work-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

/* ===== USES OF PLYWOOD ===== */
.uses-section {
  padding: 100px 0;
  background: #ffffff;
}
.uses-header {
  text-align: center;
  margin-bottom: 60px;
}
.use-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}
.use-item:nth-child(even) {
  direction: rtl;
}
.use-item:nth-child(even) > * {
  direction: ltr;
}
.use-images {
  display: flex;
  gap: 15px;
}
.use-images img {
  width: 50%;
  object-fit: cover;
  border-radius: 4px;
}
.use-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 10px;
}
.use-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.use-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
}

/* ===== BRAND SECTION (Partners/Logos) ===== */
.brand-section {
  padding: 60px 0;
  background: var(--color-primary);
  position: relative;
}
.brand-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26, 26, 46, 0.7);
}
.brand-section .container {
  position: relative;
  z-index: 1;
}
.brand-animated-headline {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  padding: 30px 0;
}
.brand-description {
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.brand-logos img {
  height: 50px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
.brand-logos img:hover {
  opacity: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: #0D0D0D;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.footer-about p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}
.footer-links {
  list-style: none;
  margin-bottom: 25px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-links li a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 4px;
  min-width: 16px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus {
  border-color: var(--color-accent);
}
.newsletter-form button {
  padding: 12px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover {
  background: var(--color-accent-dark);
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a {
  color: var(--color-accent);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 45px; height: 45px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--color-accent-dark);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== PAGE HEADER (About/Contact) ===== */
.page-header {
  padding: 180px 0 80px;
  background: #0D0D0D;
  text-align: center;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.1);
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover {
  color: var(--color-accent);
}
.breadcrumb span {
  color: var(--color-accent);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #f9f9f9;
  border: 1px solid rgba(0,0,0,0.12);
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-info-card {
  background: #f5f5f5;
  padding: 40px;
  margin-bottom: 20px;
  border-left: 3px solid var(--color-accent);
}
.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .container { padding: 0 50px; }
  .nav-menu { gap: 18px; }
  .nav-menu li a { font-size: 11px; letter-spacing: 0.5px; }
  .hero-headline { font-size: 38px; }
  .section-title { font-size: 30px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .hero-content { padding: 200px 0 50px; padding-left: 32px; }
  .hero-headline { font-size: 28px; }
  .top-bar { display: none; }
  .header { top: 0; }
  .nav-menu { display: none; }
  .nav-cta.desktop-only { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-products-dropdown { display: block; }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: #fff;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 70px 20px 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }
  .nav-menu.active li a {
    font-size: 15px;
    color: #1a1a1a;
  }
  .dropdown .dropdown-menu {
    padding: 4px 0;
    box-shadow: none;
  }
  .dropdown-menu li a {
    padding: 5px 16px;
    font-size: 13px;
  }
  .dropdown-divider {
    margin: 4px 16px;
  }
  .dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    text-align: center;
    background: transparent;
    display: block;
  }
  .mobile-cta-item {
    display: list-item;
    margin-top: 10px;
  }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail-grid,
  .product-detail-grid.reverse { grid-template-columns: 1fr; }
  .product-cards { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .use-item { grid-template-columns: 1fr; }
  .use-item:nth-child(even) { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-animated-headline { font-size: 30px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 60px 0; }

  /* Header */
  .header .container { padding: 0 20px; }
  .logo img { height: 30px; }
  .header.scrolled .logo img { height: 30px; }

  /* Mobile menu */
  .nav-menu.active {
    gap: 8px;
    padding: 60px 20px 30px;
  }
  .nav-menu.active li a {
    font-size: 14px;
  }
  .nav-menu.active .dropdown-menu li a {
    font-size: 12px;
    padding: 4px 16px;
  }

  /* Mobile toggle X animation */
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-content { padding: 100px 0 30px; max-width: 100%; margin-left: 0; text-align: center; position: relative; z-index: 2; }
  .hero-headline { font-size: 28px; }
  .hero-headline .rotating-text { min-height: 1.4em; }
  .hero-description { font-size: 14px; max-width: 100%; margin-left: 0; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: stretch; justify-content: flex-start; position: relative; z-index: 2; gap: 10px; }
  .hero-buttons .btn { text-align: center; justify-content: center; padding: 14px 24px; font-size: 12px; }
  .hero-slider { width: 100%; height: 100%; top: 0; right: 0; opacity: 0.03; -webkit-mask-image: none; mask-image: none; }
  .hero-slide { width: 100%; height: 100%; object-fit: cover; object-position: center; }

  /* Section titles */
  .section-title { font-size: 24px; }
  .section-label { font-size: 13px; }
  .product-group-title { font-size: 20px; }

  /* Company Bar */
  .company-bar { padding: 25px 0; }
  .company-bar .container { flex-direction: column; gap: 15px; text-align: center; }
  .company-bar-title { font-size: 15px; }
  .company-bar-images { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .company-bar-images img { width: 70px; height: 50px; }

  /* About */
  .about-section { padding: 60px 0; }
  .about-grid { gap: 30px; }
  .about-text { font-size: 14px; margin-bottom: 30px; }
  .about-images { flex-direction: column; gap: 12px; }
  .about-images .img-large,
  .about-images .img-small { width: 100%; max-width: 100%; }
  .about-content .section-title .rotating-text-about { min-width: auto; }

  /* Counters */
  .counters { gap: 20px; justify-content: center; }
  .counter-number, .counter-suffix { font-size: 28px; }
  .counter-label { font-size: 12px; }

  /* Products */
  .products-section { padding: 50px 0; }
  .product-group { padding: 40px 0; }
  .product-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card { padding: 20px 12px; }
  .product-card-title { font-size: 14px; }
  .product-card-image { max-width: 200px; }

  /* Product Detail (GHDMR, Laminates, Veneers) */
  .product-detail-section { padding: 60px 0; }
  .product-detail-grid,
  .product-detail-grid.reverse { gap: 30px; }
  .product-detail-images { flex-direction: row; gap: 10px; }
  .product-detail-images .img-large { width: 55%; max-height: 280px; object-fit: cover; border-radius: 6px; }
  .product-detail-images .img-small { width: 45%; max-height: 280px; object-fit: cover; border-radius: 6px; }
  .product-detail-content .section-title { font-size: 24px; }
  .product-detail-text { font-size: 14px; }
  .product-specs td { padding: 12px 14px; font-size: 13px; }
  .product-specs table { display: block; overflow-x: auto; }

  /* Works */
  .works-grid { grid-template-columns: 1fr; gap: 20px; }
  .work-item { padding: 25px 20px; }
  .work-number { font-size: 28px; }
  .work-title { font-size: 17px; }

  /* Uses of Plywood */
  .use-item { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
  .use-item:nth-child(even) { direction: ltr; }
  .use-images img { border-radius: 6px; }
  .use-number { font-size: 36px; }
  .use-title { font-size: 20px; }
  .use-text { font-size: 14px; }

  /* Brand Section */
  .brand-section { padding: 40px 0; }
  .brand-animated-headline { font-size: 20px; padding: 20px 0; }
  .brand-description { font-size: 14px; margin-bottom: 25px; }
  .brand-logos img { height: 35px; }

  /* Footer */
  .footer { padding: 50px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
  .footer-col h4 { font-size: 17px; margin-bottom: 15px; }
  .footer-social { margin-top: 15px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .newsletter-form button { width: 100%; padding: 14px; text-align: center; }
  .footer-bottom p { font-size: 11px; line-height: 1.6; }

  /* Page Header (About / Contact) */
  .page-header { padding: 120px 0 50px; }
  .page-header h1 { font-size: 26px; }
  .breadcrumb { font-size: 12px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-card { padding: 25px; }
  .contact-info-card h4 { font-size: 16px; }

  /* Buttons general */
  .btn { padding: 14px 28px; font-size: 12px; letter-spacing: 1px; }

  /* Scroll to top */
  .scroll-top { width: 40px; height: 40px; font-size: 16px; bottom: 20px; right: 20px; }

  /* Quote modal */
  .quote-modal {
    grid-template-columns: 1fr;
    max-width: 90%;
    max-height: 85vh;
  }
  .quote-modal-left {
    padding: 25px 20px 15px;
  }
  .quote-modal-left h3 { font-size: 22px; }
  .quote-modal-left .quote-sticker {
    max-width: 160px;
  }
  .quote-modal-right {
    padding: 15px 20px 25px;
  }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header .container { padding: 0 16px; }

  /* Hero */
  .hero { min-height: 70vh; }
  .hero-content { padding: 120px 0 30px; }
  .hero-headline { font-size: 22px; }
  .hero-description { font-size: 12px; margin: 15px 0 25px; }

  /* Section titles */
  .section-title { font-size: 20px; }
  .section-label { font-size: 12px; letter-spacing: 1.5px; }
  .product-group-title { font-size: 17px; }
  .section-subtitle { font-size: 14px; }

  /* Company bar */
  .company-bar-images img { width: 55px; height: 40px; }

  /* Counters */
  .counters { flex-wrap: wrap; gap: 15px; }
  .counter-number, .counter-suffix { font-size: 24px; }
  .counter-label { font-size: 11px; }

  /* Product cards - single column */
  .product-cards { grid-template-columns: 1fr; gap: 16px; }
  .product-card { padding: 24px 16px; }
  .product-card-title { font-size: 15px; }

  /* Product detail */
  .product-detail-content .section-title { font-size: 20px; }
  .product-detail-text { font-size: 13px; }
  .product-specs td { padding: 10px 12px; font-size: 12px; }
  .product-detail-images .img-large,
  .product-detail-images .img-small { max-height: 220px; }

  /* Works */
  .work-number { font-size: 24px; }
  .work-title { font-size: 15px; }

  /* Uses */
  .use-images { flex-direction: column; }
  .use-images img { width: 100%; }
  .use-number { font-size: 30px; }
  .use-title { font-size: 18px; }
  .use-text { font-size: 13px; }

  /* Brand */
  .brand-animated-headline { font-size: 17px; }
  .brand-description { font-size: 13px; }

  /* Footer */
  .footer-bottom p { font-size: 10px; }
  .footer-contact-item { font-size: 13px; }

  /* Page header */
  .page-header { padding: 110px 0 40px; }
  .page-header h1 { font-size: 22px; }

  /* Contact */
  .contact-info-card { padding: 20px; }
  .contact-form input,
  .contact-form textarea { font-size: 14px; padding: 12px 14px; }

  /* Quote modal */
  .quote-modal { max-width: 95%; }
  .quote-modal-left h3 { font-size: 18px; }
  .quote-modal-left .quote-sticker { max-width: 130px; }
  .quote-modal-right input,
  .quote-modal-right textarea { font-size: 14px; }
}

/* ===== PRODUCT PAGE ===== */
.product-page-hero {
  padding: 120px 0 50px;
  background: #0D0D0D;
  text-align: center;
}
.product-page-hero h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.product-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}
.product-breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.product-breadcrumb a:hover { color: var(--color-accent); }
.product-breadcrumb span.sep { color: rgba(255,255,255,0.3); }
.product-breadcrumb .current { color: var(--color-accent); }

.product-page-content {
  padding: 80px 0;
  background: #ffffff;
}
.product-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-page-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.product-page-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,0.7);
  margin-bottom: 20px;
}
.product-page-subtitle {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.product-rotating-features {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
  min-height: 40px;
}
.product-rotating-features .word {
  display: none;
  color: var(--color-accent);
}
.product-rotating-features .word.active { display: inline; }
.product-page-info h4 {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(0,0,0,0.5);
  margin-bottom: 20px;
  font-weight: 400;
}
.product-spec-boxes {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.product-spec-box {
  flex: 1;
  background: #f9f9f9;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 24px;
}
.product-spec-box h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.product-spec-box p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  line-height: 1.6;
}
.product-page-image {
  position: relative;
}
.product-page-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Product Gallery */
.product-gallery-section {
  padding: 60px 0 80px;
  background: #f5f5f5;
}
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease, opacity 0.3s ease;
  opacity: 1;
}
.product-gallery-grid img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .product-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-page-hero h1 { font-size: 36px; }
  .product-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .product-page-hero { padding: 110px 0 40px; }
  .product-page-hero h1 { font-size: 24px; }
  .product-page-content { padding: 50px 0; }
  .product-page-grid { gap: 30px; }
  .product-spec-boxes { flex-direction: column; gap: 16px; }
  .product-gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-gallery-grid img { height: 180px; }
  .product-gallery-section { padding: 40px 0 50px; }
  .product-rotating-features { font-size: 18px; min-height: 50px; }
  .product-page-desc { font-size: 14px; }
  .product-page-subtitle { font-size: 18px; }
  .product-page-info h4 { font-size: 14px; }
  .product-breadcrumb { font-size: 11px; }
}
@media (max-width: 480px) {
  .product-page-hero { padding: 100px 0 30px; }
  .product-page-hero h1 { font-size: 20px; }
  .product-page-content { padding: 40px 0; }
  .product-gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .product-gallery-grid img { height: 200px; }
  .product-rotating-features { font-size: 16px; }
  .product-spec-box { padding: 18px; }
  .product-spec-box h5 { font-size: 11px; }
  .product-spec-box p { font-size: 13px; }
}

/* ===== FLOATING SIDEBAR ===== */
.floating-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.floating-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 8px 0 0 8px;
}
.floating-sidebar a:hover {
  width: 56px;
}
.floating-sidebar .fs-quote {
  background: #c0392b;
}
.floating-sidebar .fs-call {
  background: #d32f2f;
}
.floating-sidebar .fs-whatsapp {
  background: #25d366;
}
@media (max-width: 768px) {
  .floating-sidebar {
    top: auto;
    bottom: 100px;
    transform: none;
  }
  .floating-sidebar a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .floating-sidebar a:hover {
    width: 48px;
  }
}

/* ===== QUOTE MODAL ===== */
.quote-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.quote-modal-overlay.active {
  display: flex;
}
.quote-modal {
  background: #fff;
  border-radius: 10px;
  width: 420px;
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.quote-modal-close {
  position: absolute;
  top: -12px; right: -12px;
  width: 34px; height: 34px;
  background: #d32f2f;
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(211,47,47,0.3);
}
.quote-modal-close:hover {
  background: #b71c1c;
  transform: scale(1.1);
}
.quote-modal-left {
  display: none;
}
.quote-modal-right {
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
}
.quote-modal-right h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.quote-modal-right .form-group {
  margin-bottom: 12px;
}
.quote-modal-right .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.quote-modal-right input,
.quote-modal-right textarea,
.quote-modal-right select {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.quote-modal-right select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
  cursor: pointer;
}
.quote-modal-right input::placeholder,
.quote-modal-right textarea::placeholder,
.quote-modal-right select {
  color: #999;
}
.quote-modal-right input:focus,
.quote-modal-right textarea:focus,
.quote-modal-right select:focus {
  border-color: #d32f2f;
  box-shadow: 0 0 0 2px rgba(211,47,47,0.08);
}
.quote-modal-right textarea {
  min-height: 80px;
  resize: vertical;
  border-radius: 16px;
}
.quote-modal-right .quote-submit {
  display: block;
  width: 100%;
  padding: 15px 24px;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}
.quote-modal-right .quote-submit:hover {
  background: #b71c1c;
  box-shadow: 0 6px 16px rgba(211,47,47,0.25);
}
.quote-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.quote-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.quote-action-btn:hover {
  border-color: #d32f2f;
  background: rgba(211,47,47,0.03);
}
.quote-action-btn i {
  font-size: 16px;
}
.quote-action-btn .whatsapp-icon {
  color: #25D366;
}
.quote-action-btn .phone-text {
  color: #d32f2f;
  font-weight: 700;
}
@media (max-width: 768px) {
  .quote-modal {
    width: 92%;
    max-height: 88vh;
  }
  .quote-modal-overlay {
    align-items: center;
    justify-content: center;
  }
  .quote-modal-close {
    top: -10px;
    right: -8px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .quote-modal-right {
    padding: 20px 18px;
  }
  .quote-modal-right h2 { font-size: 18px; margin-bottom: 14px; }
  .quote-modal-right .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .quote-modal-actions {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .quote-modal { width: 96%; }
  .quote-modal-right input,
  .quote-modal-right textarea,
  .quote-modal-right select { padding: 10px 12px; font-size: 12px; }
  .quote-modal-right .quote-submit { padding: 12px 20px; font-size: 13px; }
}

/* ===== TRUST BADGES / CERTIFICATIONS ===== */
.trust-section {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
}
.trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 20px;
  flex-shrink: 0;
}
.trust-item h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
.trust-item p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ===== WHY CHOOSE US (Enhanced) ===== */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A2E 100%);
}
.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}
.why-choose-header .section-label {
  color: var(--color-accent);
}
.why-choose-header .section-title {
  color: #fff;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-choose-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-choose-card:hover::before {
  transform: scaleX(1);
}
.why-choose-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}
.why-choose-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: 50%;
  font-size: 24px;
  color: var(--color-accent);
}
.why-choose-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.why-choose-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: #fff;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: #f9f9f9;
  border-radius: var(--radius-md);
  padding: 35px 30px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F5A623;
  font-size: 14px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}
.testimonial-author h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ===== FAQ PAGE STYLES ===== */
.faq-section {
  padding: 80px 0;
  background: #fff;
}
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}
.faq-header .section-subtitle {
  margin: 0 auto;
}
.faq-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.faq-tab {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.faq-tab:hover,
.faq-tab.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(195,150,97,0.3);
}
.faq-item.active {
  border-color: var(--color-accent);
  box-shadow: 0 4px 15px rgba(195,150,97,0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: #fff;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover {
  background: #fafafa;
}
.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 14px;
  color: var(--color-accent);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-toggle {
  background: var(--color-accent);
  color: #fff;
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
}
.faq-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: #f9f9f9;
  border-radius: var(--radius-md);
}
.faq-cta h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.faq-cta p {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 20px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-white {
  background: #fff;
  color: var(--color-accent-dark);
  font-weight: 700;
}
.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ===== UTILITY CLASSES ===== */
.newsletter-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.contact-info-card h4 i {
  color: var(--color-accent);
  margin-right: 10px;
}
.ghdmr-title {
  margin-bottom: 15px;
}
.section-title-white {
  color: #fff;
}

/* ===== LAZY YOUTUBE ===== */
.youtube-facade {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #000;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.youtube-facade .play-icon {
  width: 68px;
  height: 48px;
  background: rgba(0,0,0,0.7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.youtube-facade:hover .play-icon {
  background: #ff0000;
}
.youtube-facade .play-icon::after {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .trust-grid { gap: 25px; }
  .trust-item { flex-direction: column; text-align: center; }
  .why-choose-section { padding: 60px 0; }
  .why-choose-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-choose-card { padding: 30px 24px; }
  .testimonials-section { padding: 60px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 50px 0; }
  .faq-question h3 { font-size: 14px; }
  .faq-answer-inner { font-size: 13px; }
  .faq-categories { gap: 8px; }
  .faq-tab { padding: 8px 18px; font-size: 12px; }
  .cta-banner { padding: 50px 0; }
  .cta-banner h2 { font-size: 24px; }
  .cta-banner p { font-size: 14px; }
}

@media (max-width: 480px) {
  .trust-grid { gap: 20px; }
  .trust-icon { width: 40px; height: 40px; font-size: 16px; }
  .trust-item h4 { font-size: 13px; }
  .why-choose-card { padding: 25px 20px; }
  .why-choose-card h3 { font-size: 16px; }
  .why-choose-card p { font-size: 13px; }
  .faq-question { padding: 16px 18px; }
  .faq-question h3 { font-size: 13px; }
  .faq-toggle { width: 28px; height: 28px; font-size: 12px; }
  .faq-cta { padding: 25px; }
  .faq-cta h3 { font-size: 18px; }
  .cta-banner h2 { font-size: 20px; }
}
