/* ═══════════════════════════════════════════════════════════
   WUDSENSE — PREMIUM WOOD SOLUTIONS
   Inspired by vikasplywood.com — Dark Luxury Aesthetic
═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ────────────────────────────────────── */
:root {
  --black:      #0a0908;
  --dark:       #111010;
  --warm-black: #1a1714;
  --gold:       #c8a96e;
  --gold-light: #e2c98a;
  --cream:      #f5efe6;
  --white:      #ffffff;
  --grey:       #6b6562;
  --light-grey: #b5b0aa;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Poppins', sans-serif;

  --ease-smooth: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out:    cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.6s var(--ease-smooth);
}

/* ─── Global Scrollbar Hide ─────────────── */
::-webkit-scrollbar {
  display: none; 
}
html, body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;    /* Firefox */
}

/* ─── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  height: auto;
}
.products-page, .about-page-body, .privacy-page-body {
  height: auto !important;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* ═══════════════════════════════════════════════════════════ 
   PREMIUM PRELOADER (New Brand Design)
═══════════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #2C1810;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), visibility 1s;
}

/* Subtle Wood Texture Overlay */
.preloader-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

/* Square Logo Container */
.preloader-logo-box {
  width: 100px;
  height: 100px;
  border: 2px solid #F5F1E8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  opacity: 0;
  transform: scale(0.8);
  animation: logoEntrance 1s ease-out forwards;
}

@media (min-width: 768px) {
  .preloader-logo-box { width: 130px; height: 130px; }
}

.preloader-logo-img {
  width: 70%;
  height: auto;
  opacity: 0;
  animation: fadeInGeneric 1s ease forwards 0.5s;
}

@media (min-width: 768px) {
  .preloader-logo-text { font-size: 4rem; }
}

/* Animated SVG Border Trace */
.preloader-border-svg {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}

.preloader-border-rect {
  fill: none;
  stroke: var(--gold); /* Matched with theme color */
  stroke-width: 2.5;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: borderTrace 2.5s ease-in-out infinite;
}

/* Branding Content */
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  animation: contentReveal 0.8s ease forwards 0.8s;
}

.preloader-brand-name {
  font-family: var(--font-serif);
  color: #F5F1E8;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.preloader-divider {
  width: 48px;
  height: 1.5px;
  background: var(--gold); /* Matched with theme color */
  margin-bottom: 8px;
}

.preloader-tagline-text {
  color: rgba(245, 241, 232, 0.6);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

/* Decorative Corners */
.preloader-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0;
  animation: fadeInGeneric 1.2s ease forwards 1s;
}

.preloader-corner-tl {
  top: 40px; left: 40px;
  border-top: 1px solid #F5F1E8;
  border-left: 1px solid #F5F1E8;
}

.preloader-corner-br {
  bottom: 40px; right: 40px;
  border-bottom: 1px solid #F5F1E8;
  border-right: 1px solid #F5F1E8;
}

/* Preloader Exit */

#preloader.hidden {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

/* Animations */
@keyframes logoEntrance {
  to { opacity: 1; transform: scale(1); }
}

@keyframes contentReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes borderTrace {
  0% { stroke-dashoffset: 400; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -400; }
}



@keyframes fadeInGeneric {
  to { opacity: 1; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  mix-blend-mode: normal;
  transition: padding var(--transition), background var(--transition);
}
.navbar.scrolled {
  padding: 16px 48px;
  background: rgba(10,9,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: height var(--transition), transform 0.4s var(--ease-smooth);
}
.navbar.scrolled .nav-logo-img {
  height: 32px;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.4s var(--ease-smooth), opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(2) { width: 18px; }
.hamburger:hover span:nth-child(2) { width: 28px; }

/* ═══════════════════════════════════════════════════════════
   MENU OVERLAY
═══════════════════════════════════════════════════════════ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--warm-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 60px) 52px);
  transition: clip-path 0.8s var(--ease-smooth);
  pointer-events: none;
}
.menu-overlay.open {
  clip-path: circle(150% at calc(100% - 60px) 52px);
  pointer-events: all;
}
.menu-close {
  position: absolute;
  top: 28px; right: 52px;
  font-size: 1.2rem;
  color: var(--cream);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}
.menu-close:hover { opacity: 1; color: var(--gold); }
.menu-nav ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.menu-link {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 16px;
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}
.menu-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.menu-link:hover { opacity: 1; color: var(--gold); }
.menu-link:hover::after { transform: scaleX(1); }
.menu-link[data-num]::before {
  content: attr(data-num);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.7;
}
.menu-footer {
  position: absolute;
  bottom: 36px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--grey);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION — SLIDESHOW
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 48px;
  overflow: hidden;
}

/* Slideshow container */
.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 8s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slide.prev {
  opacity: 0;
  transform: scale(1.04);
  z-index: 0;
}

/* Dark gradient overlay on top of slideshow */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(10,9,8,0.92) 0%,
    rgba(10,9,8,0.5) 45%,
    rgba(10,9,8,0.3) 100%
  );
  pointer-events: none;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.hero-logo-box {
  width: 140px;
  height: 140px;
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-logo-w {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
}

.hero-brand {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 8vw, 8rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
}

/* Animate hero text on load */
.hero-logo-box.animate { animation: fadeUp 0.8s var(--ease-smooth) 1.2s forwards; }
.hero-brand.animate    { animation: fadeUp 1.0s var(--ease-smooth) 1.4s forwards; }
.hero-tagline.animate  { animation: fadeUp 1.2s var(--ease-smooth) 1.6s forwards; }
.hero-actions.animate  { animation: fadeUp 1.4s var(--ease-smooth) 1.8s forwards; }

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: center;
}
.indicator {
  width: 28px;
  height: 2px;
  background: rgba(245,239,230,0.3);
  border: none;
  cursor: pointer;
  transition: width 0.5s var(--ease-smooth), background 0.4s ease;
  padding: 0;
}
.indicator.active {
  width: 52px;
  background: var(--gold);
}
.indicator:hover:not(.active) {
  background: rgba(245,239,230,0.6);
}



/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,239,230,0.35);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,239,230,0.35);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  gap: 10px;
}
.btn-whatsapp:hover {
  background: #1fb359;
  border-color: #1fb359;
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-track span {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════════════════ */
.section-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 32px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-title.light { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════ */
.about {
  padding: 120px 48px;
  background: var(--dark);
}
.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.6s ease;
}
.about-image-wrap:hover .about-img { filter: brightness(1); }
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gold);
  color: var(--black);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.badge-num sup { font-size: 1rem; }
.badge-label {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
}
.about-content { padding-left: 20px; }
.about-text {
  color: var(--light-grey);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════════════════════ */
.products {
  padding: 100px 48px;
  background: var(--black);
}
.products-header {
  max-width: 1300px;
  margin: 0 auto 60px;
}
.products-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth), filter 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}
.product-card:hover .product-img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transform: rotate(-45deg);
  transition: transform 0.4s ease, background 0.3s ease;
}
.product-card:hover .product-arrow {
  transform: rotate(0deg);
  background: var(--gold);
  color: var(--black);
}
.product-info {
  padding: 24px 20px 28px;
  border-top: 1px solid rgba(200,169,110,0.12);
  background: var(--warm-black);
  transition: background 0.4s ease;
}
.product-card:hover .product-info { background: var(--dark); }
.product-num {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.1;
}
.product-desc {
  font-size: 0.78rem;
  color: var(--light-grey);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════════════════ */
.stats {
  background: var(--gold);
  padding: 70px 48px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--black);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--black);
  vertical-align: super;
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,9,8,0.65);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(10,9,8,0.18);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   CATALOGUE SECTION
═══════════════════════════════════════════════════════════ */
.catalogue {
  padding: 130px 48px;
  background: var(--warm-black);
}
.catalogue-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}
.catalogue-text {
  color: var(--light-grey);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}
/* 3D catalogue visual */
.catalogue-visual { display: flex; justify-content: center; align-items: center; }
.catalogue-card {
  perspective: 800px;
}
.catalogue-pages {
  position: relative;
  width: 260px;
  height: 360px;
  transform-style: preserve-3d;
  transform: rotateY(-12deg) rotateX(5deg);
  transition: transform 0.6s var(--ease-smooth);
}
.catalogue-card:hover .catalogue-pages {
  transform: rotateY(-4deg) rotateX(2deg);
}
.page {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.page-back {
  background: var(--dark);
  transform: translateZ(-12px) translateX(-10px) translateY(8px);
  border: 1px solid rgba(200,169,110,0.1);
}
.page-mid {
  background: var(--black);
  transform: translateZ(-4px) translateX(-5px) translateY(4px);
  border: 1px solid rgba(200,169,110,0.15);
}
.page-front {
  background: linear-gradient(135deg, var(--warm-black) 0%, #2a2119 100%);
  border: 1px solid rgba(200,169,110,0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transform: translateZ(0);
}
.page-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.page-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}
.page-title {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════ */
.contact {
  padding: 140px 48px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: 'WUDSENSE';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,169,110,0.04);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.contact-text {
  color: var(--light-grey);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 48px;
}
.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--warm-black);
  border-top: 1px solid rgba(200,169,110,0.1);
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cream);
  display: block;
  margin-bottom: 20px;
}
.footer-about {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.8;
  max-width: 280px;
}
.footer-links h4,
.footer-products h4,
.footer-contact h4 {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links ul li,
.footer-products ul li {
  margin-bottom: 12px;
}
.footer-links a,
.footer-products a {
  font-size: 0.82rem;
  color: var(--grey);
  transition: color 0.3s;
}
.footer-links a:hover,
.footer-products a:hover { color: var(--cream); }
.footer-contact p {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 48px;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--grey);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner   { gap: 60px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .navbar { padding: 24px 28px; }
  .navbar.scrolled { padding: 14px 28px; }
  .hero  { padding: 0 28px 60px; }
  .about { padding: 80px 28px; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-content { padding-left: 0; }
  .about-badge { right: 0; }
  .about-img { height: 420px; }
  .products { padding: 80px 28px; }
  .catalogue { padding: 90px 28px; }
  .catalogue-inner { grid-template-columns: 1fr; gap: 60px; }
  .stats { padding: 50px 28px; }
  .stats-inner { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 40%; }
  .contact { padding: 100px 28px; }
  .footer-inner { padding: 60px 28px 40px; grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { padding: 20px 28px; }
  .hero-scroll-hint { display: none; }

  /* Responsive Fixes */
  .products-grid { grid-template-columns: 1fr; }

}

@media (max-width: 560px) {
  .products-grid  { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; }
  .hero-actions   { flex-direction: column; }
  .contact-actions{ flex-direction: column; align-items: center; }
  .btn { text-align: center; justify-content: center; }
  .menu-link { font-size: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC STYLES
   Snap-scroll layout and full-screen sections
   ═══════════════════════════════════════════ */

.about-page-body {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  height: 100vh;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — VIKAS INSPIRED (REDESIGN)
   ═══════════════════════════════════════════ */


.about-page-body {
  background: var(--black);
  color: var(--black);
  scroll-behavior: smooth;
  overflow-y: scroll !important;
  height: auto !important;
}

/* Hero Section Styling */
.about-hero {
  position: relative;
  background: #000;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: contrast(1.2);
}

.about-content-wrap {
  position: relative;
  z-index: 2;
  padding: 0 28px;
  width: 100%;
  max-width: 1200px;
}


.about-section-split {
  display: flex;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.about-left-panel {
  flex: 0 0 60%;
  max-width: 60%;
  background: var(--cream);
  padding: 140px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden; /* Prevent text overflow from pushing the sibling */
  box-sizing: border-box;
}

.about-right-panel {
  flex: 0 0 40%;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px; /* Give the image visual space */
}

.about-right-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  opacity: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5); /* Premium shadow */
}

.year-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 8rem);
  font-weight: 400;
  color: #111;
  line-height: 0.85;
  margin-bottom: 40px;
  white-space: normal;
  opacity: 0;
  transform: translateY(40px);
}

.about-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  max-width: 620px;
  opacity: 0;
  transform: translateY(30px);
}

.about-desc p {
  margin-bottom: 24px;
}

.about-desc strong {
  font-weight: 500;
  color: #000;
}

.founder-section {
  background: var(--cream);
  padding: 140px 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 991px) {
  .founder-section { padding: 100px 48px; gap: 60px; grid-template-columns: 1fr; position: relative !important; top: auto !important; }
  .founder-img-wrap { max-width: 500px; margin: 0 auto; order: 1; }
  .founder-info { order: 2; text-align: center; }
  .founder-title { font-size: 2.5rem !important; }
}

@media (max-width: 768px) {
  .founder-section { padding: 80px 28px; }
  .founder-title { font-size: 2.2rem !important; margin-bottom: 20px; }
  .founder-info p { font-size: 1rem; }
}


.founder-img-wrap {
  position: relative;
}

.founder-img {
  width: 100%;
  aspect-ratio: 1/1.2;
  object-fit: cover;
}

.founder-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  margin-bottom: 24px;
  color: #111;
}

.founder-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.scroll-circle {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(181, 176, 170, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: translateY(-50%);
  animation: floatCircle 4s ease-in-out infinite;
}

.scroll-circle span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--black);
}

.icon-scroll-arrow {
  width: 14px;
  height: 14px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  margin-bottom: 8px;
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0, -50%); }
  50% { transform: translate(0, -60%); }
}

.about-section-split.active .year-heading { animation: fadeUp 1s forwards 0.2s; }
.about-section-split.active .about-desc   { animation: fadeUp 1s forwards 0.4s; }

/* --- About Responsive Overrides (CRITICAL: Placed After Base Styles) --- */
@media (max-width: 991px) {
  .about-section-split { flex-direction: column !important; height: auto !important; min-height: auto !important; }
  .about-left-panel { flex: 0 0 100% !important; max-width: 100% !important; padding: 100px 48px !important; min-height: 50vh !important; }
  .about-right-panel { flex: 0 0 100% !important; max-width: 100% !important; min-height: 50vh !important; padding: 60px 48px !important; }
  .year-heading { font-size: 5rem !important; margin-bottom: 30px !important; }
}

@media (max-width: 768px) {
  .about-left-panel { padding: 80px 28px !important; }
  .about-right-panel { padding: 40px 28px !important; }
  .year-heading { font-size: 3.5rem !important; text-align: center !important; }
  .about-desc { text-align: center !important; font-size: 0.9rem !important; }
  .scroll-circle { display: none !important; }
}


/* ═══════════════════════════════════════════════════════════
   TEAM SECTION
   ═══════════════════════════════════════════ */
.team-section {
  background: #f5f5f5;
  padding: 160px 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.team-member {
  opacity: 0;
  transform: translateY(30px);
}

.team-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 24px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-member:hover .team-img { transform: scale(1.05); }

.team-member h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.team-member p {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════
   REDIESGNED FOOTER (VIKAS STYLE)
   ═══════════════════════════════════════════ */
.footer-vikas {
  background-image: url('footer-texture.png');
  background-size: cover;
  background-position: center;
  color: var(--cream);
  padding: 120px 80px 40px;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.footer-brand-msg h2 {
  font-family: var(--font-sans);
  font-size: 4.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--cream);
}

.footer-showroom h3 {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-showroom p {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-cols {
  display: flex;
  gap: 120px;
}

.footer-col h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 24px;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
  color: var(--cream);
}

.footer-col ul li:hover { opacity: 1; color: var(--gold); }

.footer-huge-text {
  text-align: center;
  margin-top: 80px;
  position: relative;
}

.footer-huge-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(8rem, 18vw, 15rem);
  line-height: 0.8;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.02em;
  opacity: 0.08; /* Very subtle against the wood */
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  opacity: 0.5;
  color: var(--cream);
}

/* Animations Trigger */
.team-member.active { animation: fadeUp 1s forwards; }

/* ═══════════════════════════════════════════════════════════
   BRAND MARQUEE (TRUSTED BY)
   ═══════════════════════════════════════════ */
.brand-strip {
  background: var(--cream);
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-brand-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: blur(10px);
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  gap: 80px;
  animation: scrollMarquee 35s linear infinite;
  align-items: center;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: #1a1714;
  transition: all 0.4s var(--ease-smooth);
}

.brand-logo-img {
  height: 24px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1); /* Makes the logo white/cream to fit the dark aesthetic if needed, or just let it be if it's already themed */
  transition: all 0.4s var(--ease-smooth);
}

.brand-item span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.9;
}

.brand-item:hover {
  transform: translateY(-1px);
}

.brand-item:hover .brand-logo-img {
  opacity: 1;
  transform: scale(1.08);
}

.brand-divider {
  width: 1px;
  height: 25px;
  background: rgba(0,0,0,0.1);
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGE STYLES
   ═══════════════════════════════════════════ */
/* Navbar on products page should follow global styling now */

.products-page {
  background: var(--cream);
  min-height: 100vh;
  padding-top: 100px;
  color: #333;
  overflow-y: scroll !important;
  height: auto !important;
}

.products-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 40px;
}

.product-pill {
  padding: 12px 28px;
  background: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1a1714;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-smooth);
  white-space: nowrap;
}

.product-pill:hover { 
  background: transparent;
  color: #1a1714;
  border-color: #1a1714;
}

.product-pill.active { 
  background: transparent; 
  color: var(--gold); 
  border-color: var(--gold);
}

.product-pill.active:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.product-showcase {
  display: flex;
  align-items: flex-start; 
  max-width: 1300px;
  margin: 0 auto;
  gap: 80px;
  padding: 80px 60px 120px; /* Added top padding, balanced bottom */
  opacity: 1;
  transition: opacity 0.4s;
}

.product-showcase.fade-out { opacity: 0; }

.product-visual {
  flex: 0 0 45%;
  position: relative;
  z-index: 1;
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: -20px; /* Balanced larger frame */
  transform: translate(-10px, -10px); /* Sophisticated offset */
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 40px;
  z-index: -1;
  pointer-events: none;
}

.product-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
  display: block;
}

.product-details {
  flex: 1;
}

.category-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  margin-bottom: 30px;
  line-height: 1;
}

.product-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 50px;
  max-width: 600px;
}

.detail-section {
  margin-bottom: 40px;
}

.detail-section h4 {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
}

.feature-item::before {
  content: "✔";
  color: var(--gold);
  font-size: 0.8rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.specs-table td {
  padding: 15px 0;
  font-size: 0.9rem;
}

.spec-label {
  text-transform: uppercase;
  font-weight: 500;
  color: #888;
  width: 40%;
}

.view-collection-btn {
  background: #2a1b12;
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  transition: transform 0.3s;
}

.view-collection-btn:hover { transform: translateX(10px); }

@media (max-width: 1024px) {
  .product-showcase { flex-direction: column; padding: 40px 32px 100px; gap: 40px; }
  .product-visual { flex: 0 0 auto; width: 100%; max-width: 500px; margin: 0 auto; }
  .product-title { font-size: 3rem; }
  .products-nav { margin: 20px auto 40px; gap: 10px; padding: 0 20px; }
}

@media (max-width: 768px) {
  .products-page { padding-top: 80px; }
  .products-nav { 
    margin-bottom: 30px; 
    padding: 0 10px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .product-pill { 
    padding: 8px 14px; 
    font-size: 0.7rem; 
    flex: 0 0 auto;
  }
  .product-showcase { padding: 40px 20px 80px; }
  .product-visual::before {
    inset: -10px;
    transform: translate(-5px, -5px);
    border-radius: 24px;
  }
  .product-visual img {
    border-radius: 24px;
  }
  .product-title { font-size: 2.2rem; }
  .product-desc { font-size: 1rem; margin-bottom: 30px; }
  .features-grid { grid-template-columns: 1fr; }
  .view-collection-btn { padding: 16px 32px; width: 100%; justify-content: center; }
}


/* ==========================================================
   NEW PRODUCT DETAILS LAYOUT
   ========================================================== */

#details-view { background: var(--cream); color: var(--text-dark); }

.details-hero-new {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    z-index: 1;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    /* Restored original dark gradient for depth and focus */
    background: linear-gradient(to bottom, rgba(0,0,0,0.24) 0%, rgba(245,239,230,0.36) 80%, var(--cream) 100%);
    z-index: 2;
}

.details-hero-new .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 40px;
    margin-top: 80px; /* Offset for navbar */
}

.back-link {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--warm-black); /* Darker color for contrast */
    margin-bottom: 20px;
    opacity: 0.7; /* Subtle blend */
    transition: opacity 0.3s;
    text-decoration: none;
}

.back-link:hover { opacity: 1; }

.hero-title-new {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 300;
    margin-bottom: 5px;
    line-height: 1;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold); /* Matched with feature headings */
}

/* --- MAIN CONTENT GRID --- */
.details-main-content {
    background: var(--cream);
    padding: 60px 80px 100px;
    position: relative;
    z-index: 4;
}

.details-main-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column */
.crafted-section {
    margin-bottom: 60px;
}

.crafted-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 400;
}

.crafted-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.small-caps-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    color: #888;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature-item-detailed {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-circle span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
}

.feature-icon-circle svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.feature-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold); /* From layout */
    font-weight: 400;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
}

.apps-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.app-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.app-icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon-box span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold); /* Matched with theme color */
}

.app-icon-box svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.app-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #1a1714;
}

/* Right Column — Specs Card (matches premium reference design) */
.specs-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

.specs-card-title {
    font-family: var(--font-sans, 'Poppins', sans-serif);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 500;
    color: #1a1714;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(0,0,0,0.09);
}

.specs-table-new {
    width: 100%;
    border-collapse: collapse;
}

.specs-table-new tr {
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

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

.specs-table-new td {
    padding: 18px 0;
    vertical-align: middle;
}

.spec-label-col {
    color: #9e8878;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
    font-weight: 500;
    width: 38%;
}

.spec-val-col {
    color: #1a1714;
    font-weight: 400;
    text-align: right;
    font-size: 0.92rem;
    line-height: 1.5;
}

.brands-dark-card {
    background: #1e1914; /* Darker brown */
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.brands-dark-card .small-caps-heading {
    border-bottom: none;
    color: rgba(255,255,255,0.4);
    margin-bottom: 30px;
}

.brands-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.brands-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ddd;
}

.check-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #009b8a; /* Cyan rim */
    position: relative;
    flex-shrink: 0;
}

.check-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #009b8a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.action-buttons-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-cyan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #009b8a;
    color: #fff;
    padding: 20px 30px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cyan:hover {
    background: #007a6c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 155, 138, 0.2);
}

.btn-outline-cream {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.8);
    background: transparent;
    color: #1a1714;
    padding: 20px 30px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-cream:hover {
    background: #1a1714;
    color: #fff;
}

/* --- VISUAL SHOWCASE MODULE --- */
.visual-showcase-section {
    max-width: 1400px;
    margin: 100px auto 0;
}

.section-divider-title {
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    color: #1a1714;
    margin-bottom: 60px;
}

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

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.showcase-item:nth-child(1) { grid-column: span 2; height: 500px; }
.showcase-item:nth-child(2) { grid-column: span 1; height: 500px; }
.showcase-item:nth-child(3) { grid-column: span 1; height: 350px; margin-top: -170px; }
.showcase-item:nth-child(4) { grid-column: span 2; height: 350px; }

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.19,1,0.22,1);
}

.showcase-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================
   PREMIUM GLOBAL FOOTER (Matching Image Redesign)
   ========================================================== */

.footer-new {
    padding: 120px 80px 40px;
    background: #2C1810 url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Subtle overlay to enhance wood grain contrast */
.footer-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.75);
    z-index: 1;
}

.footer-new-container {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.5fr 1.8fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 100px;
    position: relative;
    z-index: 2;
}

.footer-huge-heading {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 44px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-social-circles {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    .footer-col-hero { width: 100% !important; display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; }
    .footer-huge-heading { font-size: 3.2rem !important; margin-bottom: 24px !important; text-align: center !important; }
    .footer-social-circles { display: flex !important; justify-content: center !important; gap: 15px !important; width: 100% !important; margin-top: 10px !important; }
}


.footer-social-circles a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s var(--ease-smooth);
}

.footer-social-circles a:hover {
    background: #fff;
    color: #1e1a16;
    border-color: #fff;
    transform: translateY(-3px);
}

.footer-small-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold, #c8a96e);
    margin-bottom: 28px;
    font-weight: 500;
}

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

.footer-nav-list li {
    margin-bottom: 16px;
}

.footer-nav-list a {
    color: #e5dfd9;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b5b0aa;
    margin-bottom: 12px;
}

.get-directions-link {
    display: inline-block;
    color: var(--gold); /* Matched with theme color */
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--gold); /* Permanent gold underline */
    transition: all 0.3s;
}

.get-directions-link:hover {
    opacity: 0.7;
    transform: translateX(5px);
}

.footer-col-contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.contact-sub-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-col-contacts p {
    font-size: 0.95rem;
    color: #e5dfd9;
    margin-bottom: 6px;
    line-height: 1.6;
}
.footer-col-contacts a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.footer-col-contacts a:hover {
    color: var(--gold);
}

/* Bottom Bar */
.footer-divider {
    position: relative;
    z-index: 2;
    height: 1px;
    background: rgba(255,255,255,0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom-row {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.footer-bottom-left {
    display: flex;
    gap: 40px;
}

.footer-copyright {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.policy-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s;
}

.policy-link:hover {
    opacity: 0.7;
}

.policy-link:hover { color: #fff; }

.footer-watermark {
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: clamp(6rem, 15vw, 18rem);
    color: rgba(255,255,255,0.025); /* Faint watermark */
    pointer-events: none;
    letter-spacing: 0.1em;
    white-space: nowrap;
    line-height: 1;
    z-index: 1;
}

.back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    z-index: 3;
}

.back-to-top:hover {
    background: #fff;
    color: #1e1a16;
    border-color: #fff;
    transform: translateY(-5px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1100px) {
    .footer-new-container { grid-template-columns: 1fr 1fr; gap: 60px 40px; }
}

@media (max-width: 768px) {
    .footer-new { padding: 80px 30px 40px; text-align: center; }
    .footer-new-container { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-huge-heading { font-size: 3rem; margin-bottom: 30px; text-align: center; }
    .footer-social-circles { justify-content: center; }
    .contact-sub-row { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-row { flex-direction: column; gap: 20px; align-items: center; text-align: center; padding-top: 30px; }
    .footer-bottom-left { flex-direction: row; gap: 20px; align-items: center; justify-content: center; flex-wrap: wrap; }
    .footer-watermark { font-size: 15vw; bottom: 40px; opacity: 0.05; }
    .footer-address { text-align: center; }
    .footer-nav-list { align-items: center; display: flex; flex-direction: column; }
    .footer-col-nav { display: none; }
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */

.contact-page-body { background: var(--cream); }

.contact-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero-slide-3.png') center/cover no-repeat;
  text-align: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(26,23,20,0.85) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  margin-top: 60px;
}

.contact-hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}

/* Contact Grid Centered */
.contact-grid-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px 100px;
}

.contact-grid-centered {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 380px;
  width: 100%;
}

.contact-form-wrapper {
  flex: 1;
  max-width: 640px;
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.06);
}

.contact-form-iframe {
  width: 100%;
  border: none;
  border-radius: 12px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #1a1714;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-card-body p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 4px;
}

.contact-card-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold); /* Matched theme color */
  text-decoration: none;
  border-bottom: 1px solid var(--gold); /* Matched footer style */
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.contact-card-link:hover { 
  transform: translateX(5px);
  opacity: 0.8;
}

@media (max-width: 1100px) {
  .contact-grid-centered { 
    flex-direction: column; 
    align-items: center; 
    gap: 60px;
  }
  .contact-form-wrapper { 
    max-width: 100%; 
  }
}

@media (max-width: 768px) {
  .contact-info-wrapper { 
    grid-template-columns: 1fr; 
    max-width: 100%; 
  }
}


/* Map */
.contact-map-section {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.3) contrast(1.05);
}

@media (max-width: 1024px) {
  .contact-info-wrapper { grid-template-columns: 1fr; max-width: 600px; }
  .contact-grid-section { padding: 60px 30px 80px; }
}


/* ==========================================================
   CATALOGUE PAGE
   ========================================================== */

.catalogue-page-body { background: var(--cream); }

.catalogue-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero-slide-5.png') center/cover no-repeat;
  text-align: center;
}

.catalogue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(26,23,20,0.8) 100%);
}

.catalogue-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  margin-top: 60px;
}

.catalogue-hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.catalogue-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.catalogue-hero-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Catalogue Grid */
.catalogue-grid-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px 60px;
}

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

.catalogue-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.4s, box-shadow 0.4s;
}

.catalogue-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.catalogue-item-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.catalogue-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalogue-item:hover .catalogue-item-img img {
  transform: scale(1.08);
}

.catalogue-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.catalogue-item:hover .catalogue-item-overlay {
  opacity: 1;
}

.catalogue-view-btn {
  padding: 12px 28px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.catalogue-view-btn:hover {
  background: #fff;
  color: #1a1714;
}

.catalogue-item-info {
  padding: 24px 26px;
}

.catalogue-item-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #1a1714;
  margin-bottom: 6px;
  font-weight: 500;
}

.catalogue-item-info p {
  font-size: 0.82rem;
  color: #999;
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-download-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  background: #1a1714;
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s;
}

.card-download-btn:hover {
  background: var(--gold);
  color: #1a1714;
}


@media (max-width: 1024px) {
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-grid-section { padding: 60px 30px 40px; }
}

@media (max-width: 768px) {
  .catalogue-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   DOWNLOAD LEAD CAPTURE MODAL — Premium Dark Edition
   ========================================================== */

.download-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 6, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.download-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.download-modal {
  background: linear-gradient(145deg, #1e1a16 0%, #14110e 100%);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 20px;
  padding: 56px 60px 50px;
  max-width: 740px;
  width: 100%;
  position: relative;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(200, 169, 110, 0.1);
}

.download-modal-overlay.active .download-modal {
  transform: translateY(0) scale(1);
}

/* Decorative gold line at top */
.download-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold, #c8a96e), transparent);
  border-radius: 0 0 2px 2px;
}

.download-modal-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.download-modal-close:hover {
  background: rgba(200, 169, 110, 0.15);
  border-color: rgba(200, 169, 110, 0.4);
  color: var(--gold, #c8a96e);
}

/* Gold label eyebrow */
.download-modal::after {
  content: 'WUDSENSE';
  position: absolute;
  top: 30px;
  left: 60px;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold, #c8a96e);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  opacity: 0.7;
}

.download-modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 38px;
  margin-top: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Modal Form */
.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.modal-form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold, #c8a96e);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-form-group input,
.modal-form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.modal-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.modal-form-group input:focus,
.modal-form-group select:focus {
  outline: none;
  border-color: var(--gold, #c8a96e);
  background: rgba(200, 169, 110, 0.07);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.modal-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c8a96e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Select dropdown options (system-styled, but background hint) */
.modal-form-group select option {
  background: #1e1a16;
  color: #fff;
}

/* Divider before consent */
.modal-consent-row {
  margin: 26px 0 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  transition: color 0.3s;
}

.consent-label:hover {
  color: rgba(255, 255, 255, 0.65);
}

.consent-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold, #c8a96e);
  cursor: pointer;
  border-radius: 3px;
}

/* Submit Button — Premium Gold */
.modal-submit-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #c8a96e 0%, #a88b52 100%);
  color: #1a1714;
  border: none;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.modal-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 169, 110, 0.35);
}

.modal-submit-btn:hover::before {
  opacity: 1;
}

.modal-submit-btn:active {
  transform: translateY(0);
}

/* Card download button styling */
button.card-download-btn {
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .download-modal {
    padding: 50px 28px 36px;
  }

  .download-modal::after {
    left: 28px;
  }

  .download-modal::before {
    left: 28px;
    right: 28px;
  }

  .modal-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .download-modal-title {
    font-size: 1.4rem;
    margin-bottom: 28px;
  }
}
/* ==========================================================
   PRIVACY POLICY PAGE
   ========================================================== */

.privacy-page-body { background: var(--cream); }

.privacy-hero {
  position: relative;
  height: 40vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero-slide-1.png') center/cover no-repeat;
  text-align: center;
}

.privacy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(26,23,20,0.9) 100%);
}

.privacy-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  margin-top: 40px;
}

.privacy-hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.privacy-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}

.privacy-content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.privacy-text {
  background: #fff;
  padding: 80px 100px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.privacy-text h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #1a1714;
  margin: 40px 0 20px;
  font-weight: 400;
}

.privacy-text h2:first-child { margin-top: 0; }

.privacy-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.privacy-text ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.privacy-text li {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
  list-style: disc;
}

@media (max-width: 768px) {
  .privacy-text { padding: 40px 30px; }
  .privacy-content-section { padding: 60px 20px 80px; }
  .privacy-hero { height: 35vh; min-height: 280px; }
}

/* ═══════════════════════════════════════════════════════════
   BACK TO PRODUCTS LINKS (HERO & BOTTOM)
═══════════════════════════════════════════════════════════ */
.back-link {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
  z-index: 10;
  position: relative;
}

/* Dark Hero Top Navigation */
.hero-content .back-link {
  color: rgba(245, 239, 230, 0.75); /* var(--cream) approx */
  margin-bottom: 24px;
}
.hero-content .back-link:hover {
  color: var(--gold);
}

/* Light Bottom Navigation Block */
.bottom-back-section {
  background: var(--cream);
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.back-line-divider {
  width: 100%;
  max-width: 1300px;
  height: 1px;
  background: rgba(10, 9, 8, 0.08); /* Faint dark line */
  margin-bottom: 40px;
}
.bottom-back-section .back-link {
  color: var(--black);
}
.bottom-back-section .back-link:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .bottom-back-section { padding: 60px 28px; }
}

.projects-page-body {
  background: var(--black);
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════════════
   PROJECTS SHOWCASE PAGE
═══════════════════════════════════════════════════════════ */

/* Header */
.projects-hero {
  position: relative;
  width: 100vw;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}
.projects-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,8,0.7) 0%, rgba(10,9,8,0.95) 100%);
}
.projects-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 48px;
}
.projects-hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 24px;
}
.projects-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}
.projects-hero-sub {
  color: var(--light-grey);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Stacked Showcase Sections */
.project-showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 140px 48px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.project-showcase.reversed {
  grid-template-columns: 1.2fr 0.8fr;
  direction: rtl; 
}
.project-showcase.reversed > * {
  direction: ltr; /* Reset text direction */
}

/* Typography & Info */
.project-info {
  display: flex;
  flex-direction: column;
}
.project-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  padding-bottom: 12px;
}
.project-meta.light {
  border-bottom-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.project-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}
.project-title.light { color: var(--white); }
.project-desc {
  color: var(--light-grey);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.project-desc.light-desc { color: rgba(255,255,255,0.85); }
.project-materials {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.project-materials.light { border-left-color: var(--white); }

/* Mixed Media Grid */
.project-media-mixed {
  display: grid;
  gap: 16px;
}
.layout-left {
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 250px 250px;
}
.layout-right {
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: 250px 250px;
}
.project-media-mixed img, .project-media-mixed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.project-media-mixed img:hover, .project-media-mixed video:hover {
  filter: brightness(1.05);
}

.layout-left .media-large { grid-column: 1 / 2; grid-row: 1 / 3; height: 100%; }
.layout-left .media-video { grid-column: 2 / 3; grid-row: 1 / 2; height: 100%; }
.layout-left .media-small { grid-column: 2 / 3; grid-row: 2 / 3; height: 100%; }

.layout-right .media-video { grid-column: 1 / 2; grid-row: 1 / 2; height: 100%; }
.layout-right .media-small { grid-column: 1 / 2; grid-row: 2 / 3; height: 100%; }
.layout-right .media-large { grid-column: 2 / 3; grid-row: 1 / 3; height: 100%; }

/* Full Cinematic Section */
.project-cinematic {
  position: relative;
  width: 100vw;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
  overflow: hidden;
}
.cinematic-video-wrap {
  position: absolute;
  inset: 0;
}
.cinematic-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.7);
}
.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(10,9,8,0.85) 100%);
}
.cinematic-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .project-showcase { padding: 100px 48px; gap: 40px; }
  .project-showcase, .project-showcase.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}
@media (max-width: 768px) {
  .project-showcase { padding: 80px 28px; }
  .layout-left, .layout-right {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .layout-left .media-large, .layout-left .media-video, .layout-left .media-small,
  .layout-right .media-large, .layout-right .media-video, .layout-right .media-small {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 300px;
  }
}

/* ==========================================================
   GLOBAL RESPONSIVENESS FIXES
   ========================================================== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  .navbar {
    padding: 16px 20px;
  }
  .navbar.scrolled {
    padding: 12px 20px;
  }
  .footer-new-container {
    padding: 40px 20px;
  }
  .footer-huge-heading {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  /* Layout Fixes for Product Details Page */
  .details-main-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
  }
  .apps-flex {
    justify-content: center !important;
  }
  .showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .showcase-item {
    grid-column: span 1 !important;
    height: 300px !important;
    margin-top: 0 !important;
  }
  .details-hero-new {
    min-height: 400px;
  }
  .hero-title-new {
    font-size: 3.5rem !important;
  }
  .details-main-content {
    padding: 60px 20px 80px !important;
  }
  .visual-showcase-section {
    padding: 0 20px !important;
    margin-top: 40px !important;
  }
}

/* ==========================================================
   BLOG PAGE
   ========================================================== */

.blog-page-body { background: var(--cream); }

.blog-hero {
  position: relative;
  height: 45vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero-slide-4.png') center/cover no-repeat;
  text-align: center;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(26,23,20,0.85) 100%);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  margin-top: 60px;
}

.blog-hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.blog-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.blog-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* Blog Grid */
.blog-list-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px 120px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.02);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.blog-card-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #1a1714;
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 400;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.blog-card-read-more {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1714;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.blog-card:hover .blog-card-read-more {
  color: var(--gold);
}

.blog-card-read-more span {
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-read-more span {
  transform: translateX(4px);
}

/* ==========================================================
   BLOG DETAILS PAGE
   ========================================================== */

.blog-details-body { background: var(--cream); }

.blog-details-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero-slide-2.png') center/cover no-repeat;
  text-align: center;
  margin-bottom: -150px;
}

.blog-details-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(26,23,20,0.9) 100%);
}

.blog-details-header-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-details-category {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

.blog-details-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.blog-details-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

.blog-article {
  background: #fff;
  border-radius: 20px;
  padding: 80px 100px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  margin-bottom: 100px;
}

.blog-article p {
  font-size: 1.1rem;
  color: #4a4540;
  line-height: 1.9;
  margin-bottom: 30px;
}

.blog-article h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #1a1714;
  margin: 60px 0 24px;
  font-weight: 400;
}

.blog-article h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #1a1714;
  margin: 40px 0 20px;
  font-weight: 500;
}

.blog-article img {
  width: 100%;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-article blockquote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
  margin: 60px auto;
  padding: 0 40px;
  position: relative;
}

.blog-article blockquote::before,
.blog-article blockquote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
  opacity: 0.5;
}

.blog-share {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-share-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1714;
}

.blog-share-icons {
  display: flex;
  gap: 16px;
}

.blog-share-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1714;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-share-icons a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.recent-posts {
  padding: 0 40px 100px;
  max-width: 1300px;
  margin: 0 auto;
}

.recent-posts-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1714;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .blog-article { padding: 60px 50px; }
  .blog-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

@media (max-width: 768px) {
  .blog-list-section { padding: 60px 20px 80px; }
  .blog-hero { height: 35vh; min-height: 300px; }
  .blog-hero-title { font-size: 2.5rem; }
  
  .blog-details-hero { height: 50vh; min-height: 400px; margin-bottom: -100px; }
  .blog-article { padding: 40px 24px; margin-bottom: 60px; }
  .blog-article h2 { font-size: 1.8rem; }
  .blog-article blockquote { font-size: 1.4rem; padding: 0 10px; }
  .blog-share { flex-direction: column; gap: 20px; align-items: flex-start; }
}

