/* SHIV SHAKTI MARBLE ART — Elite Luxury Design System (Rolex × Aman Resorts Style Guide) */

:root {
  /* Premium Heritage Palette */
  --bg-cream: #FAF8F4;
  --bg-sand: #F3EFE9;
  --bg-obsidian: #090A0C;
  --bg-charcoal: #121316;
  
  --marble-pure: #FFFFFF;
  --gold-metallic: #D4AF37;
  --gold-champagne: #C8A96B;
  --gold-dark: #8F763D;
  --gold-light: #F4E8C1;
  --silver-silk: #E2E4E8;
  
  --text-dark: #090A0C;
  --text-muted: #4F5259;
  --text-light: #8E9199;
  --text-white: #FFFFFF;
  --text-ivory: #FAF8F4;

  /* Luxury Linear Gradients */
  --gold-gradient: linear-gradient(135deg, #F4E8C1 0%, #D4AF37 50%, #8F763D 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFFFFF 0%, #F4E8C1 40%, #D4AF37 100%);
  --dark-gradient: linear-gradient(180deg, #121316 0%, #090A0C 100%);
  --vignette-gradient: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.45) 100%);
  
  /* Elegant Drop Shadows */
  --shadow-museum: 0 30px 80px rgba(0, 0, 0, 0.03);
  --shadow-plinth: 0 20px 50px rgba(212, 175, 55, 0.05);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.15);
  
  /* Precision Transition Physics */
  --transition-luxury: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-hover: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  --nav-height: 100px;
  
  /* Fine Typography Rules */
  --font-serif: 'Cormorant Garamond', serif;
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

/* Base Reset & Fine Rendering */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans), -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-champagne);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-metallic);
}

/* Subtle gold-dust shimmer particles on white background */
#starscape {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

/* Scroll Progress Bar */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 10001;
  transition: width 0.1s linear;
}

/* Luxury Fullscreen Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #FAF8F4 0%, #F3EFE9 60%, #EDE8DF 100%);
  color: var(--text-dark);
  z-index: 99999;
  display: none !important;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo {
  color: var(--gold-champagne);
  animation: pulseLogo 3s ease-in-out infinite;
}

.loader-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.loader-bar-track {
  width: 240px;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  transition: width 0.15s ease-out;
}

.loader-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.loader-percentage {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--gold-champagne);
  font-weight: 500;
  margin-top: -0.25rem;
  text-transform: uppercase;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3)); }
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif), serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

p, span, li, a, label, button, input, select, textarea {
  font-family: var(--font-sans), sans-serif;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* Elite Layout Utility Classes */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.section-padding {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

/* Luxury Sections Alternating Colors */
.bg-warm {
  background-color: var(--bg-sand);
}

.bg-white {
  background-color: var(--marble-pure);
}

/* Asymmetric Section Header */
.section-header {
  max-width: 750px;
  margin: 0 auto 6rem auto;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-metallic);
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.section-title.text-left {
  text-align: left;
}

.body-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.body-text.text-center {
  text-align: center;
}

/* Luxury Ornament Line */
/* Luxury Ornament Line */
.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  position: relative;
}

.ornament-line.justify-start {
  justify-content: flex-start;
}

.ornament-line::before,
.ornament-line::after {
  content: "";
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  display: block;
}

.ornament-line.justify-start::before {
  display: none;
}

.ornament-line.justify-start::after {
  content: "";
  height: 1px;
  width: 150px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.35), transparent);
  display: block;
}

.ornament-diamond {
  width: 5px;
  height: 5px;
  background-color: var(--gold-metallic);
  transform: rotate(45deg);
  margin: 0 1.2rem;
  box-shadow: 0 0 10px var(--gold-metallic);
}

.ornament-line.justify-start .ornament-diamond {
  margin-left: 0;
  margin-right: 1.2rem;
}

/* About Narrative Drop Cap */
#about .body-text:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--gold-metallic);
  float: left;
  line-height: 0.8;
  margin-right: 0.8rem;
  margin-top: 0.25rem;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}


/* Custom Luxury Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dark);
  border: 1px solid var(--gold-metallic);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: var(--transition-hover);
  z-index: 1;
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  transition: var(--transition-hover);
  z-index: -1;
}

.btn-gold:hover {
  color: var(--text-dark);
  box-shadow: var(--shadow-glow);
  border-color: transparent;
}

.btn-gold:hover::before {
  left: 0;
}

.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dark);
  background: var(--gold-gradient);
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 1;
  transition: var(--transition-hover);
}

.btn-gold-solid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient-hover);
  opacity: 0;
  transition: var(--transition-hover);
  z-index: -1;
}

.btn-gold-solid:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-gold-solid:hover::after {
  opacity: 1;
}

/* Glassmorphism Sticky Navbar & Scroll-to-Pill Transition */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: rgba(10, 8, 5, 0.2); /* Blends beautifully with background hero video/canvas */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── MAIN NAV BAR: 3-column grid (Left Logo | Center Pill | Right Actions) ── */
.main-nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  padding: 0 4rem;
  width: 100%;
  box-sizing: border-box;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Left logo aligns left */
.logo-left {
  justify-self: start;
}

/* Center pill container */
.desktop-nav-center {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Right nav aligns right */
.desktop-nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

/* Header Contact Info */
.nav-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.nav-phone-link {
  color: rgba(250, 248, 244, 0.8);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap !important;
}

.nav-phone-link svg {
  color: var(--gold-metallic);
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.nav-phone-link:hover {
  color: var(--gold-metallic);
}

.nav-phone-link:hover svg {
  transform: scale(1.15);
}

/* ── SCROLLED STATE: collapses to compact pill ── */
.navbar-scrolled {
  background: rgba(10, 8, 5, 0.88); /* Sleek glassmorphism pill on scroll */
  border-bottom-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar-scrolled .main-nav-bar {
  height: 64px;
  padding: 0 3rem;
}

.navbar-scrolled .logo-img {
  width: 44px;
  height: 44px;
}

.navbar-scrolled .logo-title {
  font-size: 1.2rem;
}

.navbar-scrolled .logo-subtitle {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
}

.navbar-scrolled .nav-pill-container {
  padding: 0.45rem 1.8rem;
  gap: 1.8rem;
  background: rgba(10, 8, 5, 0.85);
  border-color: rgba(212, 175, 55, 0.25);
}

/* ── LOGO ── */
.logo-group {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: rgba(250, 248, 244, 0.95);
  gap: 1rem;
}

.logo-group svg {
  color: var(--gold-metallic);
  transition: var(--transition-hover);
}

.logo-group:hover svg {
  transform: rotate(180deg);
}

/* Real logo image */
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  /* Removed mix-blend-mode: screen since we are using high-quality transparent PNG */
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4)) drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.2));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.logo-group:hover .logo-img {
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0px 8px 20px rgba(0, 0, 0, 0.3));
  transform: scale(1.06);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1;
  color: rgba(250, 248, 244, 0.98);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-metallic);
  margin-top: 0.25rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── DESKTOP NAV PILL CONTAINER ── */
.nav-pill-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(10, 8, 5, 0.72);
  border: 1.5px solid rgba(212, 175, 55, 0.18);
  border-radius: 100px;
  padding: 0.55rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-pill-container:hover {
  background: rgba(15, 12, 8, 0.85);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.nav-pill-container a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.65);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-pill-container a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold-metallic);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(-50%);
}

.nav-pill-container a:hover {
  color: rgba(250, 248, 244, 1);
  text-shadow: 0 0 8px rgba(250, 248, 244, 0.3);
}

.nav-pill-container a:hover::after {
  width: 70%;
}

.nav-link-with-chevron {
  display: flex;
  align-items: center;
  gap: 5px;
}

.chevron-icon {
  transition: transform 0.3s ease;
}

.nav-link-with-chevron:hover .chevron-icon {
  transform: translateY(1.5px);
}

/* ── INQUIRE NOW BUTTON ── */
.btn-gold-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.45rem;
  background: var(--gold-gradient);
  color: #0a0805 !important;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-gold-nav::after { display: none !important; }

.btn-gold-nav:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  opacity: 0.95;
}

.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon-link {
  color: rgba(250, 248, 244, 0.5);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.nav-icon-link:hover {
  color: var(--gold-metallic);
  transform: translateY(-1.5px);
}

.nav-icon-link svg {
  width: 15px;
  height: 15px;
}

.mobile-menu-btn {
  background: transparent;
  border: none;
  color: rgba(250, 248, 244, 0.9);
  cursor: pointer;
  display: none;
  padding: 0.25rem;
}

@media (max-width: 1024px) {
  .navbar {
    top: 0;
    border-radius: 0;
    width: 100%;
  }
  .top-announce-bar {
    display: none !important;
  }
  .main-nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 0 1.2rem;
    height: 60px;
  }
  .desktop-nav, .desktop-btn {
    display: none;
  }
  .logo-center {
    justify-self: unset;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Mobile Fullscreen Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-cream);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
  transition: var(--transition-luxury);
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.mobile-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-links a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  text-decoration: none;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-hover);
}

.mobile-links a:hover {
  color: var(--gold-metallic);
  transform: translateY(-2px);
}

/* 3. HERO SCROLL ENGINE STYLING */
/* scroll container gives GSAP its scrubbing depth */
.hero-scroll-container {
  width: 100%;
  height: 100vh; /* Controlled by ScrollTrigger pin-spacer */
  position: relative;
  background-color: #0a0805;
}

.hero-sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #0a0805;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #0a0805;
}

.video-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0805;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: opacity 0.6s ease;
}

.video-skeleton.fade-out {
  opacity: 0;
  pointer-events: none;
}

.skeleton-logo {
  width: 60px;
  height: 60px;
  border: 2px solid var(--accent-gold);
  transform: rotate(45deg);
  margin-bottom: 20px;
  animation: pulse-gold 1.8s infinite ease-in-out;
  position: relative;
}

.skeleton-text {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
  animation: pulse-opacity 1.8s infinite ease-in-out;
}

@keyframes pulse-gold {
  0% { transform: rotate(45deg) scale(0.9); opacity: 0.5; }
  50% { transform: rotate(45deg) scale(1.1); opacity: 1; border-color: #ffffff; }
  100% { transform: rotate(45deg) scale(0.9); opacity: 0.5; }
}

@keyframes pulse-opacity {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; color: #ffffff; }
}

.hero-desktop-content {
  display: block;
}

.hero-mobile-content {
  display: none;
}

/* Force hardware acceleration on video & canvas fallbacks */
.hero-video,
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  display: block;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Luxury white-vignette: preserves video luminance & feels elevated */
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(255, 255, 255, 0) 35%,
    rgba(250, 248, 244, 0.25) 70%,
    rgba(243, 239, 233, 0.55) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Annotation Cards Layout & Glassmorphism */
.annotations-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.annotation-card {
  position: absolute;
  bottom: 8vh;
  left: 5vw;
  max-width: 380px;
  /* Light glassmorphism — matches the white luxury palette */
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 20px;
  padding: 28px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), var(--shadow-plinth);
}

.annotation-card.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.card-number {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-metallic);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.card-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-stat {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 14px;
}

.card-stat-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold-champagne);
  line-height: 1;
  margin-bottom: 4px;
}

.card-stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* Animated Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-dark);
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.scroll-indicator-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--gold-light);
}

.scroll-indicator-line {
  height: 50px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-metallic) 0%, rgba(212, 175, 55, 0) 100%);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--text-white);
  animation: scrollDownDot 2.2s infinite cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes scrollDownDot {
  0% { transform: translateY(-20px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(50px); opacity: 0; }
}

/* Post Hero Content Layer wrapper */
.post-hero-sections {
  position: relative;
  z-index: 5;
  background-color: var(--bg-cream);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.05);
}

/* SECTION 1: ABOUT SHIV SHAKTI & USPs */
.luxury-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .luxury-grid-2 {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.usp-row {
  display: flex;
  margin-top: 3.5rem;
  gap: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 2.5rem;
}

.usp-col {
  flex: 1;
}

.usp-col h4 {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.usp-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.usp-divider {
  width: 1px;
  background-color: rgba(212, 175, 55, 0.2);
}

@media (max-width: 640px) {
  .usp-row {
    flex-direction: column;
    gap: 2rem;
  }
  .usp-divider {
    height: 1px;
    width: 100%;
  }
}

/* Museum Plinth Frame Styling */
.parallax-img-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: var(--transition-luxury);
}

.parallax-img-container.shadow-frame {
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0.8rem;
  background-color: var(--marble-pure);
  box-shadow: var(--shadow-museum);
}

.parallax-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.parallax-img-container:hover .parallax-img {
  transform: scale(1.04);
}

/* Luxury Asymmetric Image Offset Frame (Rolex / Aman Resorts Style) */
.luxury-grid-2 .parallax-img-container.shadow-frame {
  overflow: visible;
  margin: 1.5rem;
  width: calc(100% - 3rem);
}

.luxury-grid-2 .parallax-img-container.shadow-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  z-index: -1;
  pointer-events: none;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-grid-2 .parallax-img-container.shadow-frame:hover::before {
  transform: translate(6px, 6px);
}

.luxury-grid-2 .parallax-img {
  clip-path: inset(0px);
}

@media (max-width: 768px) {
  .luxury-grid-2 .parallax-img-container.shadow-frame {
    margin: 1rem;
    width: calc(100% - 2rem);
  }
  .luxury-grid-2 .parallax-img-container.shadow-frame::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }
  .parallax-img {
    height: 380px;
  }
}

.img-caption {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-metallic);
  margin-top: 1.5rem;
  display: block;
}

/* SECTION 2: WHY MAKRANA MARBLE */
.luxury-grid-2.dir-rtl {
  grid-template-columns: 0.9fr 1.1fr;
}

@media (max-width: 1024px) {
  .luxury-grid-2.dir-rtl {
    grid-template-columns: 1fr;
  }
}

.dir-rtl {
  direction: rtl;
}
.dir-ltr {
  direction: ltr;
}

.qualities-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.quality-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.quality-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-metallic);
  line-height: 1;
}

.quality-item h4 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.quality-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* SECTION 3: CRAFTSMANSHIP TIMELINE */
.timeline-container {
  position: relative;
  margin-top: 6rem;
}

.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: rgba(212, 175, 55, 0.2);
  transform: translateX(-50%);
}

.craft-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  margin-bottom: 10rem;
  position: relative;
  align-items: center;
}

.craft-row:last-child {
  margin-bottom: 0;
}

.craft-row.dir-rev {
  direction: rtl;
}

.craft-row.dir-rev > div {
  direction: ltr;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.frame-tag-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.gold-dash {
  width: 30px;
  height: 1px;
  background-color: var(--gold-metallic);
}

.frame-tag-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-metallic);
}

@media (max-width: 1024px) {
  .timeline-container::before {
    left: 2rem;
  }
  .craft-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    padding-left: 5rem;
  }
  .craft-row.dir-rev {
    direction: ltr;
  }
}

/* SECTION 4: FEATURED COLLECTION (Museum Plinth Cards) */
.luxury-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 1024px) {
  .luxury-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .luxury-grid-3 {
    grid-template-columns: 1fr;
  }
}

.collection-card {
  background-color: var(--marble-pure);
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  transition: var(--transition-hover);
  box-shadow: var(--shadow-museum);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-plinth);
  border-color: rgba(212, 175, 55, 0.3);
}

.parallax-img-container.relative-card {
  overflow: hidden;
  aspect-ratio: 4/5;
}

.collection-card .parallax-img {
  height: 100%;
  width: 100%;
}

.shimmer-hover {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: var(--transition-luxury);
  pointer-events: none;
}

.collection-card:hover .shimmer-hover {
  animation: shineSweep 1.2s ease-in-out;
}

@keyframes shineSweep {
  100% { left: 150%; }
}

.card-details {
  padding: 2.2rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 1rem;
}

.meta-finish {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-metallic);
}

.meta-height {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-light);
}

.card-details h3 {
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.card-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.card-footer-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gold-dash-short {
  width: 15px;
  height: 1px;
  background-color: var(--gold-metallic);
}

/* SECTION 5: CUSTOM SANCTUARY STEPS */
.custom-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 3.5rem;
}

/* Center connector rail */
.custom-steps::before {
  content: "";
  position: absolute;
  left: 25px; /* exactly center of the 50px circle or bullet */
  top: 15px;
  bottom: 15px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-champagne) 0%, rgba(200, 169, 107, 0.15) 100%);
  z-index: 0;
}

.custom-step-item {
  position: relative;
  display: flex;
  gap: 2.2rem;
  align-items: flex-start;
  z-index: 1;
}

.custom-step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-cream);
  border: 1px solid var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold-metallic);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#export .custom-step-circle {
  background-color: var(--marble-pure);
}

.custom-step-item:hover .custom-step-circle {
  transform: scale(1.1);
  border-color: var(--gold-metallic);
  background-color: var(--marble-pure);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.custom-step-item h4 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.custom-step-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.gold-bullet {
  width: 50px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-metallic);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  background: var(--marble-pure);
  z-index: 1;
}

/* SECTION 7: PATRON TESTIMONIALS SLIDER */
.testimonial-slider-container {
  max-width: 950px;
  margin: 5rem auto 0 auto;
  position: relative;
  text-align: center;
  padding: 5rem 4rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-museum);
  border-radius: 4px;
}

/* Inset border corner frame */
.testimonial-slider-container::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  pointer-events: none;
}

.testimonial-slides {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: var(--transition-hover);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-icon {
  color: var(--gold-metallic);
  opacity: 0.25;
  margin-bottom: 2rem;
}

.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.2vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.testimonial-slide cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
}

.cite-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-metallic);
}

.cite-role {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  background: transparent;
  color: var(--gold-metallic);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.slider-btn:hover {
  background-color: var(--gold-metallic);
  color: var(--text-white);
  border-color: var(--gold-metallic);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .testimonial-slider-container {
    padding: 3rem 1.5rem;
    margin: 3rem 1rem 0 1rem;
  }
  .testimonial-slider-container::before {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .testimonial-slides {
    min-height: 320px;
  }
}

/* SECTION 8: GLOBAL PRESENCE VECTOR MAP */
.world-map-container {
  max-width: 1000px;
  margin: 5rem auto 0 auto;
  position: relative;
  background-color: var(--marble-pure);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 3rem;
  box-shadow: var(--shadow-museum);
}

.world-map-svg {
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.02));
}

.route-path {
  stroke-dasharray: 6 4;
  animation: routeTravel 30s infinite linear;
}

@keyframes routeTravel {
  to { stroke-dashoffset: -100; }
}

.presence-card {
  background-color: var(--marble-pure);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-museum);
  transition: var(--transition-hover);
}

.presence-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-plinth);
}

.presence-card h4 {
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.presence-country {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-metallic);
  margin-bottom: 0.8rem;
}

.presence-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* SECTION 9: CLIENT REGISTRATION ENQUIRY FORM */
.coordinates-column {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 3.5rem;
}

.coord-item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
}

.coord-icon {
  color: var(--gold-metallic);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.coord-item h4 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.coord-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.coord-item a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  transition: var(--transition-fast);
}

.coord-item a:hover {
  color: var(--gold-metallic);
  border-color: var(--gold-metallic);
}

.whatsapp-alert {
  font-size: 0.75rem;
  color: var(--gold-metallic) !important;
  font-weight: 500;
  margin-top: 0.3rem;
}

/* Luxury Form Card styling */
.glass-card {
  background: var(--marble-pure);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 4.5rem 3.5rem;
  box-shadow: var(--shadow-museum);
  position: relative;
}

/* Inset border corner frame for the form card */
.glass-card::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  pointer-events: none;
}

.form-card-title {
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 2;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-metallic);
  display: block;
  margin-bottom: 0.8rem;
}

.form-input {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
  font-size: 1rem;
  outline: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0;
}

.form-input:focus {
  border-color: var(--gold-metallic);
  padding-left: 0.5rem;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.03);
}

.form-input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

/* Custom styling for select dropdowns to get rid of browser appearance */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  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='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 35px;
  cursor: pointer;
}

select.form-input option {
  background-color: var(--marble-pure);
  color: var(--text-dark);
  padding: 1rem;
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .glass-card {
    padding: 3rem 1.5rem;
  }
  .glass-card::before {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .form-card-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .form-row-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.pointer-select {
  cursor: pointer;
  border-radius: 0;
}

.textarea-resize {
  resize: vertical;
}

.width-full {
  width: 100%;
}

.display-none {
  display: none !important;
}

/* Success Form screen styling */
.form-success-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.success-icon {
  color: var(--gold-metallic);
  margin-bottom: 2rem;
}

.form-success-box h3 {
  font-size: 2.2rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.form-success-box p {
  color: var(--text-muted);
  max-width: 450px;
  line-height: 1.8;
  font-size: 1rem;
}

/* 4. LUXURY FOOTER STYLING — Warm Pearl White */
.footer {
  background: linear-gradient(180deg, #F3EFE9 0%, #EDE8DF 100%);
  color: var(--text-dark);
  padding: 8rem 0 3rem 0;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-border-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.25) 50%, rgba(212, 175, 55, 0) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 6rem;
  margin-bottom: 5rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.white-text {
  color: var(--text-dark);
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 450px;
}

.footer-header {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-metallic);
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-metallic);
  transform: translateX(3px);
  display: inline-block;
}

.footer-hours {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.social-row {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  font-size: 0.85rem;
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.social-link:hover {
  color: var(--gold-metallic);
  border-color: var(--gold-metallic);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-tagline {
  letter-spacing: 0.2em;
  color: var(--gold-metallic);
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.fade-reveal {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
  transition: opacity 0.7s ease, transform 0.7s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.scroll-reveal-left {
  transform: translateY(50px);
}

.scroll-reveal-right {
  transform: translateY(50px);
}

.scroll-reveal-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* SPECS SECTION STYLE GUIDE — Pearl White Luxury */
.spec-section-dark {
  background: linear-gradient(135deg, #F3EFE9 0%, #FAF8F4 50%, #EDE8DF 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  z-index: 10;
  position: relative;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  transition: all 0.4s ease;
  position: relative;
}

.spec-item:hover {
  background-color: rgba(212, 175, 55, 0.02);
}

.spec-item:not(:last-child) {
  border-right: 1px solid rgba(212, 175, 55, 0.15);
}

.spec-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--gold-metallic);
  line-height: 1;
  margin-bottom: 10px;
  transition: text-shadow 0.3s ease;
}

.spec-number.counting {
  color: var(--gold-light);
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.65);
}

.spec-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
    border-bottom: none;
  }

  .spec-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3rem 1rem;
  }

  .spec-item:nth-child(2n) {
    border-right: none;
  }

  /* Mobile hero scroll: compact card at bottom of screen */
  .annotation-card {
    bottom: 3vh;
    left: 3vw;
    right: 3vw;
    max-width: none;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(10, 8, 5, 0.82);
    border-color: rgba(212, 175, 55, 0.25);
  }

  .annotation-card .card-number {
    margin-bottom: 4px;
    font-size: 0.7rem;
    color: var(--gold-metallic);
  }

  .annotation-card .card-title {
    margin-bottom: 6px;
    font-size: 1rem;
    color: rgba(250, 248, 244, 0.95);
  }

  .annotation-card .card-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(250, 248, 244, 0.6);
    margin-bottom: 0;
    line-height: 1.5;
  }

  .annotation-card .card-stat {
    display: none;
  }
}

.scroll-locked {
  overflow: hidden !important;
}

/* GPU Warning and Instructions Styles */
.amber-text {
  color: var(--gold-metallic);
}

.gold-text {
  color: var(--gold-champagne);
}

.gpu-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 400px;
  width: calc(100% - 48px);
  /* Light luxury glassmorphism */
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 0 30px rgba(212, 175, 55, 0.05);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

.gpu-toast.hidden {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}

.gpu-toast-content {
  display: flex;
  padding: 18px;
  gap: 16px;
  align-items: flex-start;
}

.gpu-toast-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  animation: gpuPulse 2s infinite ease-in-out;
}

@keyframes gpuPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.gpu-toast-body {
  flex-grow: 1;
}

.gpu-toast-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.gpu-toast-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.gpu-toast-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}

.btn-gpu-action {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  background: transparent;
  color: var(--gold-champagne);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn-gpu-action:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn-gpu-dismiss {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.btn-gpu-dismiss:hover {
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.06);
}

.btn-gpu-dismiss svg {
  width: 14px;
  height: 14px;
}

/* GPU Modal Styles */
.gpu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.gpu-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.gpu-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 236, 229, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gpu-modal-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  padding: 16px;
}

.gpu-modal-card {
  background: linear-gradient(145deg, #FAF8F4 0%, #F3EFE9 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12), 0 0 50px rgba(212, 175, 55, 0.06);
  position: relative;
  overflow: hidden;
}

.gpu-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.gpu-modal-close:hover {
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.06);
}

.gpu-modal-close svg {
  width: 18px;
  height: 18px;
}

.gpu-modal-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.gpu-modal-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

.gpu-tab-nav {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gpu-tab-nav::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.gpu-tab-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 16px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.gpu-tab-btn:hover {
  color: var(--text-dark);
}

.gpu-tab-btn.active {
  color: var(--gold-metallic);
}

.gpu-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

.gpu-tab-content {
  min-height: 160px;
}

.gpu-tab-pane {
  display: none;
  animation: gpuFadeIn 0.3s ease;
}

.gpu-tab-pane.active {
  display: block;
}

@keyframes gpuFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.gpu-steps {
  padding-left: 20px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-dark);
}

.gpu-steps li {
  margin-bottom: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.gpu-steps li strong,
.gpu-steps li em {
  color: var(--text-dark);
}

.gpu-modal-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.gpu-note {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.4;
}

.gpu-note code {
  background: rgba(0, 0, 0, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

@media (max-width: 768px) {
  .gpu-toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }
  
  .gpu-toast-content {
    padding: 12px;
    gap: 12px;
  }
  
  .gpu-toast-title {
    font-size: 1rem;
  }
  
  .gpu-toast-desc {
    font-size: 0.78rem;
  }
  
  .gpu-modal-card {
    padding: 24px 20px;
  }
  
  .gpu-modal-title {
    font-size: 1.4rem;
    padding-right: 24px;
  }
  
  .gpu-modal-subtitle {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }
  
  .gpu-tab-nav {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .gpu-steps {
    font-size: 0.82rem;
  }
}


/* =====================================================
   GAP FIX: Hero → Content Seamless Bridge
   ===================================================== */
.hero-content-bridge {
  /* Overlaps the last pixel of the hero scroll zone so the
     cream background blends directly into the first section */
  width: 100%;
  height: 0;
  margin-top: 0;
  position: relative;
  z-index: 5;
}

/* The hero sticky container — dark bg so no white flash before video loads */
.hero-scroll-container {
  background-color: #0a0805 !important;
}


/* =====================================================
   HERO OVERLAY TITLE (fades out on scroll)
   ===================================================== */
.hero-title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  pointer-events: none;
  width: 90%;
  max-width: 900px;
  will-change: opacity, transform;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-metallic);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-main-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-sub-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  pointer-events: auto;
  transition: var(--transition-hover);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.45);
}

/* Scroll indicator text needs gold on white bg too */
.scroll-indicator-text {
  color: var(--gold-metallic);
}


/* =====================================================
   MARQUEE TRUST STRIP
   ===================================================== */
.marquee-strip {
  overflow: hidden;
  background: rgba(18, 19, 22, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.1rem 0;
  position: relative;
  z-index: 6;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  padding: 0 3rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.3s ease;
}

.marquee-strip:hover .marquee-item {
  color: var(--gold-light);
}

.marquee-dot {
  color: var(--gold-metallic);
  font-size: 0.6rem;
  opacity: 0.8;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* =====================================================
   5-STEP JOURNEY RAIL (Tilak-style)
   ===================================================== */
.journey-steps-section {
  padding: 8rem 0;
  background-color: var(--marble-pure);
  position: relative;
  overflow: hidden;
}

.journey-header {
  text-align: center;
  margin-bottom: 6rem;
}

.journey-rail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.journey-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.journey-step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.journey-step:hover .journey-step-num {
  color: rgba(212, 175, 55, 0.4);
}

.journey-step-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.journey-step-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.journey-step-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.journey-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold-metallic), rgba(212, 175, 55, 0.2));
  margin-top: 5rem;
  align-self: flex-start;
}

.journey-cta {
  text-align: center;
  margin-top: 5rem;
}

@media (max-width: 1024px) {
  .journey-rail {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .journey-connector {
    width: 1px;
    height: 40px;
    margin: 0;
    background: linear-gradient(to bottom, var(--gold-metallic), rgba(212, 175, 55, 0.2));
  }
  .journey-step {
    max-width: 400px;
  }
}


/* =====================================================
   MURTI CATEGORY TILES
   ===================================================== */
.murti-categories-section {
  padding: 8rem 0;
}

.murti-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .murti-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .murti-grid {
    grid-template-columns: 1fr;
  }
}

.murti-tile {
  background: var(--marble-pure);
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  transition: var(--transition-hover);
  box-shadow: var(--shadow-museum);
}

.murti-tile:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-plinth);
}

.murti-tile-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.murti-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.murti-tile:hover .murti-tile-img img {
  transform: scale(1.07);
}

.murti-tile-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(212, 175, 55, 0.75) 0%,
    rgba(212, 175, 55, 0) 60%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.murti-tile:hover .murti-tile-hover {
  opacity: 1;
}

.murti-tile-cta {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 1.4rem;
  backdrop-filter: blur(10px);
}

.murti-tile-body {
  padding: 1.8rem 1.8rem 2.2rem;
}

.murti-tile-category {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-metallic);
  display: block;
  margin-bottom: 0.6rem;
}

.murti-tile-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.murti-tile-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}


/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
  overflow: visible;
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: wpPulse 2.5s ease-out infinite;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wpPulse 2.5s ease-out infinite 0.8s;
}

@keyframes wpPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
}

/* Tooltip label */
.whatsapp-float-label {
  position: absolute;
  right: 72px;
  background: var(--text-dark);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--text-dark);
}

.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   FLOATING CALL BUTTON
   ===================================================== */
.call-float {
  position: fixed;
  bottom: 100px; /* Positioned directly above WhatsApp button (28px bottom + 60px height + 12px gap = 100px) */
  right: 28px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
  overflow: visible;
}

/* Pulse ring animation */
.call-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.35);
  animation: goldPulse 2.5s ease-out infinite;
}

.call-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  animation: goldPulse 2.5s ease-out infinite 0.8s;
}

@keyframes goldPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.call-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
  background: var(--gold-gradient-hover);
}

.call-float svg {
  position: relative;
  z-index: 1;
}

/* Tooltip label */
.call-float-label {
  position: absolute;
  right: 72px;
  background: var(--text-dark);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.call-float-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--text-dark);
}

.call-float:hover .call-float-label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float-label {
    display: none;
  }
  .call-float {
    bottom: 82px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .call-float-label {
    display: none;
  }
}

/* =====================================================
   LUXURY CATALOG LAYOUT & ROUTING STYLING
   ===================================================== */
.hidden {
  display: none !important;
}

.btn-outline-gold {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-metallic);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn-outline-gold:hover {
  border-color: var(--gold-metallic);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.page-container {
  min-height: 80vh;
  padding-top: 120px; /* Accounts for fixed navbar */
  background-color: var(--bg-cream);
  position: relative;
  z-index: 10;
  color: var(--text-dark);
  animation: pageFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- MEGA MENU SYSTEM --- */
.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(250, 248, 244, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.4s;
  z-index: 999;
  padding: 3rem 0;
}

.navbar:hover .mega-menu-panel,
.nav-item-has-mega:hover ~ .mega-menu-panel,
.mega-menu-panel:hover {
  /* Controlled dynamically via JS classes for precision, but defaults supported */
}

.mega-menu-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-container {
  width: calc(100% - 8rem);
  max-width: 1440px;
  margin: 0 auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
}

.mega-column-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 300;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 0.5rem;
}

.mega-subcat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 2rem;
  list-style: none;
  padding: 0;
}

.mega-subcat-list li a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(9, 10, 12, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.2rem 0;
  border-left: 2px solid transparent;
  padding-left: 0;
}

.mega-subcat-list li a:hover {
  color: var(--gold-metallic);
  padding-left: 0.8rem;
  border-left: 2px solid var(--gold-metallic);
}

.mega-preview-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 1.2rem;
  border-radius: 12px;
  align-items: center;
}

.mega-preview-img-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0;
}

.mega-preview-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mega-preview-card:hover img {
  transform: scale(1.08);
}

.mega-preview-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  color: var(--text-dark);
}

.mega-preview-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(9, 10, 12, 0.6);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.btn-gold-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-metallic);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
.btn-gold-link:hover {
  color: var(--text-dark);
}

/* --- MOBILE ACCORDION STYLES --- */
.mobile-menu-header {
  padding: 2rem 2.5rem 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-accordion-wrapper {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.mobile-accordion-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.mobile-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  cursor: pointer;
  text-align: left;
}

.mobile-accordion-trigger i {
  transition: transform 0.3s ease;
  width: 18px;
  height: 18px;
  color: var(--gold-metallic);
}

.mobile-accordion-item.active .mobile-accordion-trigger i {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
  margin-bottom: 0;
}

.mobile-accordion-item.active .mobile-accordion-content {
  margin-bottom: 1rem;
}

.mobile-accordion-content a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(9, 10, 12, 0.65) !important;
  padding: 0.3rem 0;
  text-decoration: none;
}

.mobile-accordion-content .view-all-link {
  font-weight: 600;
  color: var(--gold-metallic) !important;
}

/* --- BREADCRUMBS --- */
.breadcrumb-wrapper {
  background: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-container {
  width: calc(100% - 8rem);
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.breadcrumb-container a {
  color: rgba(9, 10, 12, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-container a:hover {
  color: var(--gold-metallic);
}

.breadcrumb-separator {
  color: rgba(9, 10, 12, 0.3);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--text-dark);
  font-weight: 500;
}

/* --- CATALOG LAYOUTS: CATEGORY & SUBCATEGORY --- */
.catalog-container {
  width: calc(100% - 8rem);
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.category-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.category-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(9, 10, 12, 0.6);
}

/* Subcategory list horizontal rail or grid */
.subcategory-grid-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 2rem;
  border-left: 3px solid var(--gold-metallic);
  padding-left: 1rem;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.subcategory-card {
  background: var(--text-white);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.subcategory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.3);
}

.subcat-img-wrapper {
  aspect-ratio: 1.2;
  overflow: hidden;
  background: #f7f6f2;
  position: relative;
}

.subcat-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.subcategory-card:hover img {
  transform: scale(1.08);
}

.subcat-card-content {
  padding: 1.2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subcat-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

/* Filtering & Product Grid layouts */
.catalog-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding-bottom: 1.2rem;
}

.gallery-section-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
}

.catalog-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-input-wrapper {
  position: relative;
  width: 280px;
}

.search-input-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(9, 10, 12, 0.4);
  width: 16px;
  height: 16px;
}

.search-field {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  transition: all 0.3s ease;
}

.search-field:focus {
  border-color: var(--gold-metallic);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.08);
}

.filter-select {
  padding: 0.6rem 2rem 0.6rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A96B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.8rem;
  min-width: 180px;
  transition: all 0.3s ease;
}

.filter-select:focus {
  border-color: var(--gold-metallic);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.no-products-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px dashed rgba(212, 175, 55, 0.2);
  border-radius: 12px;
}

.no-products-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.no-products-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(9, 10, 12, 0.5);
}

/* --- PRODUCT CARD STYLING --- */
.product-card {
  background: var(--text-white);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
}

.product-img-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f7f6f2;
  position: relative;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.custom-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--gold-metallic);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-card-title:hover {
  color: var(--gold-metallic);
}

.product-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(9, 10, 12, 0.55);
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-label {
  font-weight: 600;
  color: rgba(9, 10, 12, 0.75);
}

.product-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  display: flex;
  gap: 0.6rem;
}

.btn-view-details {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.product-card:hover .btn-view-details {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--text-dark);
  box-shadow: var(--shadow-plinth);
}

.btn-quick-inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #20a050;
  border: 1px solid rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.03);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.btn-quick-inquiry:hover {
  background: #25d366;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

/* --- PRODUCT DETAIL PAGE STYLING --- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  margin-bottom: 6rem;
}

@media (max-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- LUXURY EMPTY STATE --- */
.luxury-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(247, 246, 242, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
  max-width: 680px;
  margin: 3rem auto;
}
.empty-state-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  color: var(--gold-metallic);
  animation: floatIcon 3.5s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.empty-state-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.empty-state-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* --- PREMIUM AVAILABILITY BADGES --- */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.status-in-stock {
  background: rgba(37, 211, 102, 0.08);
  color: #20a050;
  border: 1px solid rgba(37, 211, 102, 0.2);
}
.status-custom-order {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-dark);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

/* --- STICKY DETAILS SIDEBAR --- */
.product-info-panel {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px; /* Aligns below navbar */
  height: fit-content;
}

/* --- MOBILE STICKY BOTTOM BAR --- */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.sticky-bottom-bar.visible {
  transform: translateY(0);
}
.sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.sticky-bar-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.1);
}
.sticky-bar-text h5 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
}
.sticky-bar-text p {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}
.sticky-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}

/* --- LIGHTBOX MODAL STYLING --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 8, 5, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  position: relative;
  text-align: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.lightbox-close:hover {
  opacity: 1;
  color: var(--gold-metallic);
}
.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-serif);
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.product-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image-viewport {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 20px;
  background: #f7f6f2;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  cursor: zoom-in;
}

.main-image-viewport::after {
  content: "🔍 Click to Zoom";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(10, 8, 5, 0.6);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.main-image-viewport:hover::after {
  opacity: 1;
}

.main-image-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.thumbnail-strip {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}

.thumb-item {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #f7f6f2;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.thumb-item.active {
  border-color: var(--gold-metallic);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-panel {
  display: flex;
  flex-direction: column;
}

.product-header-section {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-subcat-badge {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-metallic);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.product-name-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.product-details-summary {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(9, 10, 12, 0.65);
  margin-bottom: 1.5rem;
}

.detail-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-family: var(--font-sans);
}

.detail-specs-table tr {
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.detail-specs-table td {
  padding: 0.8rem 0;
  font-size: 0.85rem;
}

.spec-name {
  font-weight: 600;
  color: rgba(9, 10, 12, 0.75);
  width: 160px;
}

.spec-val {
  color: var(--text-dark);
}

.pill-list {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pill-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  font-size: 0.8rem;
}

.size-select-strip {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.size-option-btn {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.size-option-btn:hover {
  border-color: var(--gold-metallic);
  background: rgba(212, 175, 55, 0.02);
}

.size-option-btn.active {
  background: var(--text-dark);
  color: var(--text-white);
  border-color: var(--text-dark);
}

.product-actions-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (max-width: 480px) {
  .product-actions-strip {
    grid-template-columns: 1fr;
  }
}

.btn-whatsapp-inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-whatsapp-inquiry:hover {
  background: #128c7e;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-inquiry svg {
  width: 20px;
  height: 20px;
}

.product-process-highlights {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 4rem;
}

.process-highlight-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.process-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .process-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.highlight-item {
  text-align: center;
}

.highlight-icon-wrapper {
  margin: 0 auto 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-metallic);
}

.highlight-icon-wrapper i {
  width: 22px;
  height: 22px;
}

.highlight-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.highlight-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(9, 10, 12, 0.55);
  line-height: 1.4;
}

/* --- FAQ ACCORDION --- */
.faq-section {
  max-width: 800px;
  margin: 0 auto 5rem;
}

.faq-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.1);
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}

.faq-trigger i {
  color: var(--gold-metallic);
  transition: transform 0.3s ease;
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(9, 10, 12, 0.6);
}

.faq-item.active .faq-content {
  padding-bottom: 1.5rem;
}

/* --- ADMIN PANEL VIEWS --- */
.admin-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.admin-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
}

.admin-actions {
  display: flex;
  gap: 0.8rem;
}

.btn-admin-nav {
  padding: 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-admin-nav.active {
  background: var(--text-dark);
  color: var(--text-white);
  border-color: var(--text-dark);
}

.admin-tabs-nav {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  margin-bottom: 2rem;
}

.admin-tab-btn {
  padding: 0.8rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(9, 10, 12, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-tab-btn.active {
  color: var(--text-dark);
  font-weight: 600;
  border-bottom-color: var(--gold-metallic);
}

.admin-table-container {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
  margin-bottom: 3rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.admin-table th {
  background: rgba(247, 246, 242, 0.8);
  padding: 1rem 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  color: rgba(9, 10, 12, 0.7);
}

.admin-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  vertical-align: middle;
}

.admin-table-img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  background: #f7f6f2;
}

.badge-featured {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-metallic);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.btn-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  color: rgba(9, 10, 12, 0.5);
  transition: color 0.2s ease;
}

.btn-icon:hover {
  color: var(--gold-metallic);
}

.btn-icon.delete:hover {
  color: #dc3545;
}

/* Form layouts */
.admin-form-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  max-width: 800px;
  margin: 0 auto 4rem;
}

.admin-form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 0.8rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.form-actions-row {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1.5rem;
}

.btn-cancel {
  padding: 0.7rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid rgba(9, 10, 12, 0.15);
  background: transparent;
  color: rgba(9, 10, 12, 0.6);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel:hover {
  background: rgba(0, 0, 0, 0.02);
  color: var(--text-dark);
}

.multi-image-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.image-input-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-remove-input {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #dc3545;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-remove-input:hover {
  background: #dc3545;
  color: #ffffff;
}

.btn-add-input {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed rgba(212, 175, 55, 0.4);
  color: var(--gold-metallic);
  padding: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-add-input:hover {
  background: rgba(212, 175, 55, 0.15);
  border-style: solid;
}

.size-checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 1rem;
  border-radius: 6px;
  background: rgba(247, 246, 242, 0.3);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  cursor: pointer;
}

.checkbox-input {
  accent-color: var(--gold-metallic);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Success Alerts */
.admin-alert {
  padding: 1rem 1.5rem;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #155724;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-alert-close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: #155724;
}

/* --- ADVANCED ADMIN PANEL SPLIT-SCREEN & TREE BROWSER --- */
.admin-split-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.admin-tree-sidebar {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  position: sticky;
  top: 100px;
}

.admin-tree-sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 0.5rem;
}

.admin-search-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.admin-search-wrapper i {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(9, 10, 12, 0.35);
  font-size: 0.9rem;
  pointer-events: none;
}

.admin-search-input {
  width: 100%;
  padding: 0.6rem 0.6rem 0.6rem 2.2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  background: rgba(247, 246, 242, 0.3);
  outline: none;
  transition: all 0.3s ease;
}

.admin-search-input:focus {
  border-color: var(--gold-metallic);
  background: #ffffff;
}

/* Tree Structure styling */
.admin-tree {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-tree-node {
  margin-bottom: 0.4rem;
}

.admin-tree-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.admin-tree-row:hover {
  background: rgba(247, 246, 242, 0.7);
}

.admin-tree-row.active {
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--gold-metallic);
}

.admin-node-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.admin-node-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(9, 10, 12, 0.4);
  transition: transform 0.2s ease;
}

.admin-node-toggle.expanded {
  transform: rotate(90deg);
}

.admin-node-thumb {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
  background: #f7f6f2;
  flex-shrink: 0;
}

.admin-node-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-node-count {
  font-size: 0.75rem;
  color: rgba(9, 10, 12, 0.4);
  margin-left: 0.25rem;
}

.admin-node-actions {
  display: flex;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.admin-tree-row:hover .admin-node-actions,
.admin-tree-row.active .admin-node-actions {
  opacity: 1;
}

.btn-tree-action {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
  color: rgba(9, 10, 12, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-tree-action:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-metallic);
}

.btn-tree-action.delete:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.admin-tree-children {
  list-style: none;
  padding-left: 1.2rem;
  margin-top: 0.2rem;
  border-left: 1px dashed rgba(212, 175, 55, 0.15);
}

.admin-tree-children.hidden {
  display: none;
}

/* Detail & form container */
.admin-form-pane {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
  min-height: 450px;
}

.admin-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
  text-align: center;
  color: rgba(9, 10, 12, 0.4);
  padding: 2rem;
}

.admin-empty-state i {
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.3);
  margin-bottom: 1.5rem;
}

.admin-empty-state h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.admin-empty-state p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  max-width: 320px;
}

/* Image input preview styling */
.admin-image-preview-wrapper {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-live-preview-box {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  background: #f7f6f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-live-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-live-preview-box .no-img-text {
  font-size: 0.65rem;
  color: rgba(9, 10, 12, 0.3);
  text-transform: uppercase;
  font-weight: 600;
}

/* Product Gallery Grid styling */
.admin-gallery-editor {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 6px;
  padding: 1rem;
  background: rgba(247, 246, 242, 0.2);
}

.admin-gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: #f7f6f2;
}

.admin-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-gallery-item-delete {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(220, 53, 69, 0.85);
  color: #ffffff;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.admin-gallery-item:hover .admin-gallery-item-delete {
  opacity: 1;
}

/* Public edit shortcut button */
.admin-quick-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-metallic);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.08);
  transition: all 0.3s ease;
  margin-top: 1rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  z-index: 100;
}

.admin-quick-edit-btn:hover {
  background: var(--gold-metallic);
  color: #ffffff !important;
  border-color: var(--gold-metallic);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.admin-quick-edit-btn i {
  width: 12px;
  height: 12px;
}

/* Tree matches highlight */
.admin-tree-match-highlight {
  background: rgba(212, 175, 55, 0.25);
  font-weight: 600;
  border-radius: 2px;
  padding: 0 2px;
}

@media (max-width: 992px) {
  .admin-split-layout {
    grid-template-columns: 1fr;
  }
  
  .admin-tree-sidebar {
    position: static;
    max-height: 400px;
  }
}

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 768px) {
  .page-container {
    padding-top: 100px;
  }
  .catalog-container {
    width: calc(100% - 3rem);
  }
  .category-title {
    font-size: 2.2rem;
  }
  .breadcrumb-container {
    width: calc(100% - 3rem);
  }
  .desktop-nav {
    display: none !important;
  }
}

/* --- CATEGORIES EXPLORER SYSTEM --- */
.categories-explorer-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.categories-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-right: 1px solid rgba(212, 175, 55, 0.12);
  padding-right: 2rem;
}

.category-tab-btn {
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: #2B2B2B; /* Rich charcoal */
  line-height: 1.7;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 8px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  white-space: normal;
}

.category-tab-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #C9A35A;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.category-tab-btn:hover {
  background: rgba(201, 163, 90, 0.05);
  color: #C9A35A;
  font-weight: 700;
}

.category-tab-btn.active {
  background: rgba(201, 163, 90, 0.08);
  color: #C9A35A;
  font-weight: 700;
}

.category-tab-btn.active::before {
  transform: scaleY(1);
}

.category-explorer-panel {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  animation: tabFadeIn 0.5s ease forwards;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateX(15px); }
  to { opacity: 1; transform: translateX(0); }
}

.category-explorer-preview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.category-explorer-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-explorer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.category-explorer-preview:hover img {
  transform: scale(1.06);
}

.category-explorer-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.category-explorer-info p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(9, 10, 12, 0.6);
  line-height: 1.6;
}

.category-explorer-subcats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.category-subcats-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 300;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding-bottom: 0.5rem;
}

.category-subcats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.5rem; /* 24px vertical, 40px horizontal spacing */
}

.category-subcat-link {
  font-family: var(--font-serif);
  font-size: 1.125rem; /* 18px on desktop */
  font-weight: 600; /* Bold */
  color: #2B2B2B; /* Rich charcoal */
  line-height: 1.75;
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 0.5rem 0;
  width: fit-content;
  white-space: normal;
  word-wrap: break-word;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 44px; /* 44px touch target */
}

.category-subcat-link:hover {
  color: #C9A35A; /* Luxury gold */
  font-weight: 700;
}

/* Subtle gold arrow on hover */
.category-subcat-link::after {
  content: '→';
  font-family: var(--font-sans);
  margin-left: 10px;
  font-size: 1.2rem;
  color: #C9A35A;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.25s ease;
  font-weight: 400;
}

.category-subcat-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Active State */
.category-subcat-link.active {
  color: #C9A35A;
  font-weight: 700;
}

.category-subcat-link.active::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 2px;
  background-color: #C9A35A;
}

/* Responsive adjustment for explorer */
@media (max-width: 1024px) {
  .categories-explorer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  .categories-tabs-list {
    flex-direction: row;
    overflow-x: auto;
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    -webkit-overflow-scrolling: touch;
  }
  .category-tab-btn {
    white-space: nowrap;
    padding: 0.8rem 1.2rem;
    flex-shrink: 0;
  }
  .category-tab-btn::before {
    left: 0;
    top: auto;
    bottom: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
  }
  .category-tab-btn.active::before {
    transform: scaleX(1);
  }
  .category-explorer-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .category-subcat-link {
    font-size: 1rem; /* 16px tablet */
  }
}

@media (max-width: 768px) {
  .category-subcats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem; /* 20px vertical */
  }
  .category-subcat-link {
    font-size: 0.95rem; /* ~15px mobile */
    width: 100%;
  }
}

@media (max-width: 480px) {
  .category-subcats-grid {
    grid-template-columns: 1fr;
  }
}

/* --- BESPOKE INQUIRY FORM CARD --- */
.inquiry-form-card {
  background: rgba(250, 248, 244, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 900px;
  margin: 4rem auto 0 auto;
}

.inquiry-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.inquiry-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-metallic);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.inquiry-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 350;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.inquiry-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(9, 10, 12, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.btn-whatsapp-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #25d366; /* WhatsApp Green */
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-submit:hover {
  background: #128c7e; /* Darker WhatsApp Green */
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp-submit svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .inquiry-form-card {
    padding: 2rem 1.5rem;
  }
  .inquiry-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --- SILVER LUXURY ACCENTS & BUTTONS --- */
:root {
  --silver-gradient: linear-gradient(135deg, #FAFBFD 0%, #D8DBE0 50%, #B0B5BC 100%);
  --silver-gradient-hover: linear-gradient(135deg, #FFFFFF 0%, #FAFBFD 40%, #D8DBE0 100%);
  --silver-metallic: #B0B5BC;
  --silver-light: #E2E4E8;
  --silver-dark: #6C727D;
}

.btn-outline-silver {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--silver-dark);
  border: 1px solid rgba(176, 181, 188, 0.4);
  background: transparent;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-outline-silver:hover {
  border-color: var(--silver-metallic);
  background: rgba(176, 181, 188, 0.05);
  color: var(--text-dark);
  box-shadow: 0 0 15px rgba(176, 181, 188, 0.1);
}

.btn-silver-solid {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  background: var(--silver-gradient);
  border: 1px solid rgba(176, 181, 188, 0.2);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-silver-solid:hover {
  background: var(--silver-gradient-hover);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(176, 181, 188, 0.25);
}

.nav-phone-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-hover);
}

.nav-phone-link svg {
  color: var(--gold-metallic);
}

.nav-phone-link:hover {
  color: var(--gold-metallic);
}

.navbar-scrolled .nav-phone-link {
  color: var(--gold-metallic);
}

.navbar-scrolled .nav-phone-link:hover {
  color: #ffffff;
}

/* --- DUAL-GRID MEGA MENU PANELS --- */
.mega-menu-dual-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.mega-menu-cat-list-column {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding-right: 2rem;
}

.mega-cat-select-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
}

.mega-cat-item-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0.8rem 1.2rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-cat-item-btn:hover,
.mega-cat-item-btn.active {
  color: var(--text-dark);
  background: rgba(212, 175, 55, 0.04);
  padding-left: 1.6rem;
}

.mega-cat-item-btn svg {
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--gold-metallic);
}

.mega-cat-item-btn:hover svg,
.mega-cat-item-btn.active svg {
  opacity: 1;
}

.mega-menu-subcat-grid-column {
  display: flex;
  flex-direction: column;
}

.mega-subcat-header {
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-active-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.mega-active-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  margin-bottom: 0;
}

.mega-subcat-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2rem;
  margin-bottom: 2rem;
  padding: 0;
  margin: 0 0 2rem 0;
}

.mega-subcat-grid li {
  padding: 0;
  margin: 0;
}

.mega-subcat-grid li a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-hover);
  display: inline-block;
  padding: 0.2rem 0;
}

.mega-subcat-grid li a:hover {
  color: var(--gold-metallic);
  transform: translateX(4px);
}

.mega-view-all-wrapper {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- OPTIMIZED MOBILE NARRATIVE CARD OVERLAY --- */
@media (max-width: 768px) {
  /* Extra small phones: even more compact card */
  .annotation-card {
    bottom: 4vh !important;
    left: 5vw !important;
    right: 5vw !important;
    max-width: none !important;
    padding: 20px !important;
    display: block !important;
    border-radius: 16px !important;
  }

  .annotation-card .card-body {
    display: block !important;
  }

  .annotation-card .card-desc {
    display: block !important;
    font-size: 0.8rem !important;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
  }

  .annotation-card .card-stat {
    display: none !important;
  }

  .annotation-card .card-title {
    font-size: 1.15rem !important;
    margin-bottom: 0 !important;
  }
}

/* --- WORLD-CLASS ONE-PAGE MOBILE & GALLERY OPTIMIZATIONS --- */

#app-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Mobile & Laptop Vh Fixes */
@media (max-width: 768px) {
  .hero-sticky-viewport {
    height: 100dvh !important;
    width: 100vw !important;
    overflow: hidden;
  }
}

@media (min-width: 769px) {
  .hero-sticky-viewport {
    height: 100vh !important;
    width: 100vw !important;
  }
}

/* Responsive 5-Column Grid for Showcase */
.luxury-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 1200px) {
  .luxury-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
}

@media (max-width: 768px) {
  .luxury-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  .luxury-grid-5 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Lag-Free Hover Gallery Slideshow Styling */
.hover-gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #f7f5f0;
}

.hover-gallery-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: none !important;
  will-change: opacity;
}

.hover-gallery-container img.active {
  opacity: 1;
  z-index: 2;
}
/* Best Seller Carousel Styling */
.best-seller-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 4rem;
  padding: 1rem 0.5rem;
}

.best-seller-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.2rem;
  width: 100%;
  will-change: transform;
}

.best-seller-carousel .carousel-item {
  width: calc(50% - 1.1rem); /* Displays exactly 2 products side by side on desktop */
  flex-shrink: 0;
  box-sizing: border-box;
}

.best-seller-carousel .carousel-item .parallax-img-container {
  aspect-ratio: 4/5;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .best-seller-carousel {
    gap: 1.5rem;
  }
  .best-seller-carousel .carousel-item {
    width: 100%; /* Displays 1 product at a time on mobile screens */
  }
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: center;
}

.carousel-nav-btn {
  background: rgba(10, 8, 5, 0.03);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  color: var(--text-dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.carousel-nav-btn:hover {
  background: var(--gold-metallic);
  color: var(--text-white);
  border-color: var(--gold-metallic);
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.carousel-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background-color: var(--marble-pure);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-item:hover .carousel-img {
  transform: scale(1.05);
}

/* Categories Search Bar Styling */
.categories-search-wrapper {
  max-width: 550px;
  margin: 0 auto 3.5rem auto;
  position: relative;
  z-index: 20;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-group input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.5rem;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.search-input-group input:focus {
  border-color: var(--gold-metallic);
  background: #ffffff;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.12);
}

.search-input-group svg {
  position: absolute;
  left: 1.35rem;
  color: var(--gold-metallic);
  pointer-events: none;
  transition: transform 0.3s ease;
}

.search-input-group input:focus + svg {
  transform: scale(1.1);
}

.search-results-panel {
  display: none;
  position: absolute;
  top: 115%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(10, 8, 5, 0.15);
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
}

.search-results-section {
  padding: 0.5rem 0;
}

.search-results-section-title {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-metallic);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  margin-bottom: 0.3rem;
  background: rgba(247, 245, 240, 0.5);
}

.search-result-item {
  display: block;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.25s ease;
}

.search-result-item:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-metallic);
  padding-left: 1.5rem;
}

.search-result-item .item-desc {
  display: block;
  font-size: 0.75rem;
  color: rgba(9, 10, 12, 0.5);
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-no-results {
  padding: 2rem 1.2rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(9, 10, 12, 0.5);
}

/* ==========================================================================
   ANTIGRAVITY 2.0 MASTER RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 1279px) {
  /* GLOBAL RESPONSIVE SYSTEM & SPACING */
  .container {
    width: min(92%, 1400px) !important;
    max-width: none !important;
    padding: 0 !important;
  }
  
  section, .post-hero-sections {
    overflow: hidden !important;
  }
  
  .parallax-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  video:not(#hero-video) {
    max-width: 100% !important;
    height: auto !important;
  }
  
  .section-padding {
    padding: clamp(4rem, 8vw, 8rem) 0 !important;
  }
  
  /* TYPOGRAPHY */
  h1 { font-size: clamp(2.2rem, 5vw, 3.8rem) !important; }
  h2 { font-size: clamp(1.8rem, 4.5vw, 3rem) !important; }
  h3 { font-size: clamp(1.4rem, 3.8vw, 2.2rem) !important; }
  .section-title { font-size: clamp(1.8rem, 5vw, 3rem) !important; }
  .hero-main-title { font-size: clamp(2.2rem, 6vw, 4.5rem) !important; }
  
  /* TABLET HEADER & NAVIGATION */
  .main-nav-bar {
    grid-template-columns: auto 1fr auto !important;
    padding: 0 1.5rem !important;
    gap: 1rem !important;
    height: 70px !important;
  }
  .logo-img {
    width: 38px !important;
    height: 38px !important;
  }
  .logo-title {
    font-size: 1.05rem !important;
  }
  .logo-subtitle {
    font-size: 0.48rem !important;
    letter-spacing: 0.2em !important;
  }
  .nav-pill-container {
    padding: 0.4rem 1.2rem !important;
    gap: 0.8rem !important;
  }
  .nav-pill-container a {
    font-size: 0.65rem !important;
    letter-spacing: 0.08em !important;
  }
  .desktop-nav-right {
    gap: 0.8rem !important;
  }
  .nav-phone-link {
    font-size: 0.7rem !important;
  }
  .btn-gold-nav {
    padding: 0.45rem 1rem !important;
    font-size: 0.65rem !important;
  }
  
  /* Hide desktop menu elements under 1200px */
  @media (max-width: 1200px) {
    .desktop-nav-center,
    .desktop-nav-right {
      display: none !important;
    }
    .mobile-menu-btn {
      display: block !important;
      color: var(--gold-metallic) !important;
    }
    .main-nav-bar {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
    }
  }

  /* RESPONSIVE GRIDS */
  .luxury-grid-5 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
  .luxury-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.8rem !important;
  }
  .luxury-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  .specs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  /* MOBILE HEADER & NAVIGATION */
  .desktop-nav-center,
  .desktop-nav-right {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block !important;
    color: var(--gold-metallic) !important;
  }
  .main-nav-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 60px !important;
    padding: 0 1.2rem !important;
  }
  .logo-img {
    width: 34px !important;
    height: 34px !important;
  }
  .logo-title {
    font-size: 1.05rem !important;
  }
  .logo-subtitle {
    font-size: 0.45rem !important;
    letter-spacing: 0.2em !important;
  }
  
  /* MOBILE HERO SECTION — keep full sticky layout, just scale the depth */
  .hero-desktop-content {
    display: none !important;
  }

  /* Hero scroll container: controlled by ScrollTrigger pin-spacer on mobile */
  .hero-scroll-container {
    height: 100vh !important;
    background-color: var(--bg-cream) !important;
  }

  /* Keep sticky viewport as full-screen flex column — critical for clean vertical flow */
  .hero-sticky-viewport {
    position: sticky !important;
    top: 0 !important;
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
    background-color: var(--bg-cream) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 95px 16px 20px 16px !important; /* Spaced below navbar, with side margins */
    box-sizing: border-box !important;
  }

  /* Video card layout: rounded card at the top of the viewport */
  .hero-video-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 38vh !important; /* Video occupying top 38% of screen */
    border-radius: 20px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
    margin: 0 0 15px 0 !important;
    background-color: #000000 !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }

  .hero-video-container .hero-video,
  .hero-video-container .hero-canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: translate3d(0,0,0) !important;
    border-radius: 20px !important;
    aspect-ratio: unset !important;
  }

  /* Vignette stays on mobile inside the video card */
  .vignette-overlay {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    border-radius: 20px !important;
    z-index: 2 !important;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.3) 0%,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0) 60%,
      rgba(0,0,0,0.3) 100%
    ) !important;
  }

  /* Annotation cards wrapper */
  .annotations-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 3 !important;
    margin-top: 0 !important;
  }

  /* Annotation cards placed cleanly below the video on the cream background */
  .annotation-card {
    position: absolute !important;
    top: calc(38vh + 125px) !important;
    bottom: auto !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    transform: translateY(12px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
    pointer-events: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .annotation-card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  /* Card content typography - dark colors for readability */
  .annotation-card .card-number {
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 6px !important;
    color: var(--gold-metallic) !important;
    display: block !important;
  }

  .annotation-card .card-title {
    font-family: var(--font-serif) !important;
    font-size: 1.65rem !important;
    margin-bottom: 6px !important;
    color: var(--text-dark) !important;
    font-weight: 300 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.02em !important;
  }

  .annotation-card .card-desc {
    font-family: var(--font-sans) !important;
    font-size: 0.82rem !important;
    margin-bottom: 12px !important;
    line-height: 1.55 !important;
    color: rgba(9, 10, 12, 0.65) !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .annotation-card .card-stat {
    margin-top: 10px !important;
    border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding-top: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .annotation-card .card-stat-number {
    font-size: 1.35rem !important;
    color: var(--gold-metallic) !important;
    font-weight: 500 !important;
  }

  .annotation-card .card-stat-label {
    font-size: 0.68rem !important;
    color: rgba(9, 10, 12, 0.45) !important;
  }

  /* Hide the scroll indicator on mobile to prevent overlapping */
  .scroll-indicator {
    display: none !important;
  }

  /* Initial hero text overlays structured below the video on mobile */
  .hero-title-overlay {
    position: absolute !important;
    top: calc(38vh + 125px) !important;
    bottom: auto !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    text-align: center !important;
    transform: translateY(0) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
  }

  .hero-mobile-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    opacity: 1 !important;
    width: 100% !important;
  }

  /* Premium gold label and dark header text */
  .hero-mobile-label {
    display: block !important;
    font-family: var(--font-sans) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--gold-metallic) !important;
    margin-bottom: 6px !important;
  }

  .hero-mobile-title {
    font-family: var(--font-serif) !important;
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    line-height: 1.25 !important;
    color: var(--text-dark) !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.02em !important;
    text-shadow: none !important;
  }

  .hero-mobile-desc {
    font-family: var(--font-sans) !important;
    font-size: 0.82rem !important;
    font-weight: 300 !important;
    line-height: 1.55 !important;
    color: rgba(9, 10, 12, 0.65) !important;
    margin-bottom: 20px !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-mobile-ctas {
    display: flex !important;
    gap: 0.8rem !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .btn-primary-mobile {
    background: var(--gold-gradient) !important;
    color: #050505 !important;
    font-family: var(--font-sans) !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 0.8rem 1.6rem !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  .btn-secondary-mobile {
    background: transparent !important;
    color: var(--text-dark) !important;
    border: 1px solid rgba(26, 26, 26, 0.3) !important;
    font-family: var(--font-sans) !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 0.8rem 1.6rem !important;
    border-radius: 50px !important;
    transition: transform 0.2s ease, border-color 0.2s ease !important;
    backdrop-filter: none !important;
  }

  .btn-primary-mobile:active,
  .btn-secondary-mobile:active {
    transform: scale(0.96) !important;
  }
  
  /* MOBILE GRIDS */
  .luxury-grid-5 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .luxury-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .specs-grid {
    grid-template-columns: 1fr !important;
  }
  .usp-row {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  /* BUTTONS TOUCH TARGETS */
  .btn-gold,
  .btn-gold-nav,
  .btn-gold-solid,
  .btn-outline-gold,
  .btn-outline-silver,
  .btn-silver-solid,
  .btn-whatsapp-submit,
  .btn-whatsapp-inquiry,
  .carousel-nav-btn {
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* DESKTOP/LAPTOP HERO VIDEO — full viewport cover, GPU-accelerated */
@media (min-width: 768px) {
  .hero-video,
  .hero-canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    will-change: transform !important;
    transform: translate3d(0, 0, 0) !important;
    aspect-ratio: unset !important;
  }
}
@keyframes fadeUpMobile {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   HEADER PREMIUM LOGO SVG & SCROLL STYLING
   ===================================================== */
.logo-img-new {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, height 0.4s ease;
  /* Transparent 3D depth gold drop shadow */
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.2)) drop-shadow(0px 6px 16px rgba(212, 175, 55, 0.35));
}

.logo-group:hover .logo-img-new {
  transform: scale(1.06) translateY(-2px);
  filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.25)) drop-shadow(0px 10px 24px rgba(212, 175, 55, 0.5));
}

.navbar-scrolled .logo-img-new {
  height: 44px;
}

/* =====================================================
   HEADER SEARCH BAR & RESULTS PANEL
   ===================================================== */
.header-search-wrapper {
  position: relative;
  z-index: 10000;
}

.header-search-group {
  display: flex;
  align-items: center;
  background: rgba(10, 8, 5, 0.72);
  border: 1.5px solid rgba(212, 175, 55, 0.18);
  border-radius: 100px;
  padding: 0.45rem 1rem 0.45rem 1.2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 155px;
}

.header-search-group:focus-within {
  width: 210px;
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1), 0 0 15px rgba(212, 175, 55, 0.08);
}

.header-search-group input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  width: 100%;
  padding: 0;
  margin-right: 0.5rem;
}

.header-search-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.header-search-group .search-icon {
  color: var(--gold-metallic);
  opacity: 0.8;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.header-search-group:hover .search-icon {
  transform: scale(1.1);
}

.header-search-results-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  max-height: 380px;
  overflow-y: auto;
  background: rgba(15, 12, 8, 0.95);
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.05);
  z-index: 10001;
  padding: 0.5rem 0;
  scrollbar-width: thin;
}

.header-search-results-panel .search-results-section-title {
  background: rgba(255, 255, 255, 0.04) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
  color: var(--gold-metallic) !important;
}

.header-search-results-panel .search-result-item {
  color: rgba(255, 255, 255, 0.9) !important;
}

.header-search-results-panel .search-result-item:hover {
  background: rgba(212, 175, 55, 0.12) !important;
  color: var(--gold-metallic) !important;
}

.header-search-results-panel .search-result-item .item-desc {
  color: rgba(255, 255, 255, 0.45) !important;
}

.header-search-results-panel .search-no-results {
  color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: italic;
}
/* Pure CSS Intersection Observer Scroll Animation System */
.reveal-item {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
  transition: opacity 0.7s ease, transform 0.7s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.reveal-item.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Our Process Grid & Cards Styles */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.process-card {
  background: var(--marble-pure);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
}

.process-card .card-number {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-metallic);
  margin-bottom: 1rem;
  display: block;
}

.process-card .card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

.process-card .card-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.process-card .card-stat {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}

.process-card .card-stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-metallic);
  font-weight: 400;
  margin-bottom: 2px;
}

.process-card .card-stat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.8;
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.scroll-canvas-section {
  height: 100vh;
}
#scrollCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Footer Search Bar */
.footer-mobile-search {
  display: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-search-group {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.footer-search-group input {
  width: 100%;
  background: rgba(250, 248, 244, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
}
.footer-search-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-search-group .search-icon {
  position: absolute;
  left: 0.8rem;
  color: var(--gold-metallic);
}
@media (max-width: 767px) {
  .footer-mobile-search {
    display: block;
  }
}

/* ==========================================================================
   OUR ACHIEVEMENTS SECTION (LUXURY STYLING)
   ========================================================================== */

.achievements-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-white, #faf8f4); /* Using standard bg if var not set */
}

/* Achievement Statistics */
.achievements-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.stat-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
}

.stat-number-wrapper {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-metallic, #D4AF37);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-text {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark, #1a1a1a);
  opacity: 0.8;
}

/* Trust Badges Marquee */
.trust-badges-strip {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dark-bg, #0a0b0d);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 5rem;
}

.trust-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: trustScroll 30s linear infinite;
  width: fit-content;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.1rem;
  color: var(--gold-light, #F4E8C1);
  padding: 0 2rem;
  letter-spacing: 0.05em;
}

@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Featured Projects Showcase */
.featured-projects-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 5rem;
}

.feat-proj-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (min-width: 992px) {
  .feat-proj-card {
    flex-direction: row;
    height: 500px;
  }
  .feat-proj-card:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.feat-proj-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feat-proj-img-wrap {
  flex: 1.2;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.feat-proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.feat-proj-card:hover .feat-proj-img {
  transform: scale(1.05);
}

.feat-proj-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fp-meta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-metallic, #D4AF37);
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}

.fp-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--text-dark, #1a1a1a);
}

.fp-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark, #1a1a1a);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.fp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.fpg-item span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark, #1a1a1a);
  opacity: 0.5;
  margin-bottom: 0.3rem;
}

.fpg-item strong {
  font-size: 0.9rem;
  color: var(--text-dark, #1a1a1a);
}

/* Project Masonry Gallery */
.project-gallery-masonry {
  column-count: 1;
  column-gap: 1.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 600px) {
  .project-gallery-masonry { column-count: 2; }
}

@media (min-width: 992px) {
  .project-gallery-masonry { column-count: 3; }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img {
  transform: scale(1.08);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-title {
  color: #fff;
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.masonry-cat {
  color: var(--gold-light, #F4E8C1);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.1s;
}

.masonry-item:hover .masonry-title,
.masonry-item:hover .masonry-cat {
  transform: translateY(0);
}

/* Timeline */
.milestones-timeline-wrapper {
  padding: 2rem 0;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: rgba(212, 175, 55, 0.3);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: #fff;
  border: 3px solid var(--gold-metallic, #D4AF37);
  top: 30px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 30px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid var(--border, rgba(212,175,55,0.15));
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(0,0,0,0.05);
}

.timeline-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 30px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid var(--border, rgba(212,175,55,0.15));
  border-width: 10px 10px 10px 0;
  border-color: transparent rgba(0,0,0,0.05) transparent transparent;
}

.timeline-right::after {
  left: -8px;
}

.timeline-content {
  padding: 2rem;
  background-color: #fff;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.2);
}

.timeline-year {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 2.5rem;
  color: var(--gold-metallic, #D4AF37);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark, #1a1a1a);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-dark, #1a1a1a);
  opacity: 0.75;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
  }
  .timeline-item::before {
    left: 60px;
    border: medium solid rgba(0,0,0,0.05);
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(0,0,0,0.05) transparent transparent;
  }
  .timeline-left::after, .timeline-right::after {
    left: 23px;
  }
  .timeline-right {
    left: 0%;
  }
}



/* ==========================================================================
   RECOGNITION & DISTINGUISHED VISITS — Luxury Section
   ========================================================================== */

/* ── Section Shell ── */
#recognition {
  background-color: #F8F5EF;
  position: relative;
  overflow: visible;
}

/* Subtle marble texture overlay */
#recognition::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Two-column layout ── */
.recognition-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 5rem;
  align-items: start;
}

/* ── Left Panel ── */
.recognition-left {
  position: sticky;
  top: 120px;
}

.recognition-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-metallic);
  display: block;
  margin-bottom: 1.4rem;
}

.recognition-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.recognition-gold-bar {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-metallic), var(--gold-light));
  margin-bottom: 2rem;
}

.recognition-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.recognition-trust-statement {
  background: #FFFFFF;
  border-left: 3px solid var(--gold-metallic);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  margin-bottom: 2.5rem;
}

.recognition-trust-statement h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.recognition-trust-statement p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.recognition-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.recognition-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-dark);
}

.recognition-badge-check {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--gold-metallic), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.recognition-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.recognition-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold-metallic) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}

.recognition-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,175,55,0.4);
}

.recognition-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: #FFFFFF;
  color: var(--gold-dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: 1.5px solid var(--gold-metallic);
  cursor: pointer;
  transition: all 0.3s ease;
}

.recognition-btn-secondary:hover {
  background: rgba(212,175,55,0.05);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.15);
}

/* ── Right Panel: Card Grid ── */
.recognition-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Card 1 spans both rows on the left */
.recognition-card--featured {
  grid-row: span 2;
}

/* ── Visit Card ── */
.recognition-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.recognition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(212,175,55,0.2);
}

.recognition-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.recognition-card--featured .recognition-card-img-wrap {
  height: 320px;
}

.recognition-card:not(.recognition-card--featured) .recognition-card-img-wrap {
  height: 200px;
}

.recognition-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.recognition-card:hover .recognition-card-img-wrap img {
  transform: scale(1.05);
}

/* Gold overlay on bottom of image */
.recognition-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(248,245,239,0.15), transparent);
  pointer-events: none;
}

.recognition-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.recognition-card--featured .recognition-card-body {
  padding: 1.75rem 2rem 2rem;
}

.recognition-card-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.9rem;
}

.recognition-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.recognition-card--featured .recognition-card-title {
  font-size: 1.4rem;
}

.recognition-card-desc {
  font-family: var(--font-sans);
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Bottom Trust Panel ── */
.recognition-bottom-trust {
  background: #FFFFFF;
  border-left: 4px solid var(--gold-metallic);
  border-radius: 0 16px 16px 0;
  padding: 2rem 2.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05), 0 0 0 1px rgba(212,175,55,0.08);
  margin-top: 4rem;
}

.recognition-bottom-trust h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
}

.recognition-bottom-trust p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.recognition-bottom-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.recognition-bottom-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #F8F5EF;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  letter-spacing: 0.02em;
}

.recognition-bottom-badge span {
  color: var(--gold-metallic);
  font-size: 0.9rem;
}

/* ── Disclaimer ── */
.recognition-disclaimer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.recognition-disclaimer p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .recognition-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .recognition-left {
    position: static;
  }

  .recognition-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recognition-card--featured {
    grid-row: auto;
  }

  .recognition-card--featured .recognition-card-img-wrap,
  .recognition-card:not(.recognition-card--featured) .recognition-card-img-wrap {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .recognition-cards-grid {
    grid-template-columns: 1fr;
  }

  .recognition-card--featured .recognition-card-img-wrap {
    height: 260px;
  }

  .recognition-card:not(.recognition-card--featured) .recognition-card-img-wrap {
    height: 220px;
  }

  .recognition-cta {
    flex-direction: column;
  }

  .recognition-btn-primary,
  .recognition-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .recognition-bottom-badges {
    flex-direction: column;
  }

  .recognition-bottom-trust {
    padding: 1.5rem;
  }

  .recognition-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }
}


/* ==========================================================================
   DISTINGUISHED VISITS CARDS (OUR ACHIEVEMENTS)
   ========================================================================== */

.distinguished-visits-wrapper {
  padding: 2rem 0;
}

.distinguished-visits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.visit-card {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
  height: 100%;
  will-change: transform, box-shadow;
}

.visit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
}

.visit-card-img-wrapper {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
}

.visit-card-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}

.visit-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.visit-card:hover .visit-card-img-wrapper img {
  transform: scale(1.08);
}

.visit-card-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.visit-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-metallic);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  align-self: center;
  position: relative;
}

.visit-badge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background-color: var(--gold-metallic);
  transition: width 0.3s ease;
}

.visit-card:hover .visit-badge::after {
  width: 48px;
}

.visit-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
  transition: color 0.3s ease;
}

.visit-card:hover .visit-title {
  color: var(--gold-metallic);
}

.visit-desc {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.7;
  flex: 1;
}

.visit-bottom-statement {
  max-width: 850px;
  margin: 0 auto;
}

.visit-statement-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-metallic);
  margin-bottom: 1.5rem;
}

.visit-statement-text {
  font-size: 1.05rem;
  color: rgba(9, 10, 12, 0.8);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.visit-disclaimer {
  font-size: 0.8rem;
  color: rgba(9, 10, 12, 0.4); /* Muted gray text */
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 2rem;
}

/* Tablet Layout */
@media (max-width: 1024px) {
  .distinguished-visits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Center the 3rd card on tablet */
  .visit-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  .distinguished-visits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .visit-card:nth-child(3) {
    max-width: 100%;
  }
  
  .visit-card-img-wrapper {
    height: 300px;
  }
  
  .visit-statement-title {
    font-size: 1.8rem;
  }
}
