:root {
  /* Brand Colors luxury gold theme */
  --color-primary-red: #D4AF37; /* Rich Gold */
  --color-primary-orange: #F3E5AB; /* Soft Gold */
  --color-primary-blue: #C5A059; /* Darker Gold */
  --color-light-blue: #E5E4E2; /* Platinum */
  --color-teal: #A9A9A9; /* Dark Gray */
  --color-lime: #8C7320; /* Bronze */

  /* Modern Palette for the Bento Design */
  --color-bg-gradient-start: #0a0a0a;
  --color-bg-gradient-end: #141414;
  --color-card-bg: #121212;
  
  /* Accent stat box colors */
  --color-stat-purple: var(--color-primary-blue);
  --color-stat-orange: var(--color-primary-orange);
  --color-stat-blue: var(--color-light-blue);
  --color-stat-yellow: var(--color-lime);

  /* Text Colors */
  --color-text-dark: #F5F5F5;
  --color-text-gray: #B0B0B0;
  --color-text-light: #FFFFFF;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 48px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Shadows - Dark Mode Glows */
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.8);
  --shadow-floating: 0 30px 60px rgba(212, 175, 55, 0.08);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

html, body {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.app-wrapper {
  overflow-x: clip;
  width: 100%;
  touch-action: pan-y;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: #050505;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding: 0;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: -10;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(10, 10, 10, 0.8) 25%, #050505 50%, rgba(229, 228, 226, 0.02) 75%, rgba(212, 175, 55, 0.03) 100%);
  transform: translateZ(0); /* Cache the underlying huge gradient texture */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  color: var(--color-text-gray);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

/* App Wrapper styling */
.app-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: transparent;
  width: 100%;
  position: relative;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  padding: 24px var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  top: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: none; /* Prevent lenis inherited offsets */
  width: calc(100% - 32px);
  max-width: 1400px; /* Increased to house all 7 links safely */
  padding: 12px 24px;
  background: rgba(18, 18, 18, 0.90);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3); /* Dark pill sticky shadow */
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-full);
}

.logo-container {
  display: flex;
  align-items: center;
  background: transparent;
}

.header-nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  background: transparent;
  padding: 8px 16px;
  white-space: nowrap;
}

.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-primary-orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}

.btn-primary {
  background: var(--color-primary-red);
  color: #000;
}

.btn-primary:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2), 0 0 15px rgba(212, 175, 55, 0.3); /* Lift + Glow */
}

.btn-secondary {
  background: var(--color-primary-blue);
  color: var(--color-text-light);
}

.btn-secondary:hover {
  background: #1f2770;
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 10px 20px rgba(46, 49, 146, 0.3), 0 0 15px rgba(46, 49, 146, 0.5); /* Glow */
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-text-dark);
}

.btn-outline:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Fix CSS Containing Block bug on mobile menu */
.site-header.reveal.active {
  transform: none !important;
}

/* Utility Layout */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Dynamic Hero Section */
.hero {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
  display: flex;
  align-items: center;
  padding: var(--space-3xl);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
  z-index: -1;
}

.hero-content {
  width: 100%;
  max-width: 60%;
  z-index: 10;
  color: var(--color-text-light);
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.1;
}

.hero-title span {
  color: var(--color-primary-orange);
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-lg);
}

/* Floating Donate Widget Overlay */
.floating-widget {
  position: absolute;
  right: var(--space-sm);
  bottom: -220px;
  left: auto;
  background: var(--color-card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-xl) var(--space-xl) 56px;
  width: 440px;
  max-width: 100%;
  box-shadow: var(--shadow-floating);
  z-index: 50;
}

.widget-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid #eee;
  padding-bottom: var(--space-xs);
}

.widget-tab {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-gray);
  cursor: pointer;
}

.widget-tab.active {
  color: var(--color-text-dark);
  border-bottom: 2px solid var(--color-primary-orange);
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.amt-btn {
  background: #1A1A1A;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-weight: 600;
  color: var(--color-primary-red);
  cursor: pointer;
  transition: all 0.2s;
}

.amt-btn.active, .amt-btn:hover {
  background: var(--color-primary-orange);
  color: var(--color-text-dark);
}

/* Support Inline Title */
.support-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: var(--space-xl);
}

.support-inline h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  max-width: 600px;
  line-height: 1.15;
}

.drawn-arrow {
  width: 100px;
  height: auto;
  color: var(--color-primary-orange);
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: var(--space-md);
  margin-bottom: 0;
}

.get-involved-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
  transform: translateY(-4px) perspective(1000px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15); /* Lift + Shadow */
}

.card-span-2 { grid-column: span 2; }
.card-span-3 { grid-column: span 3; }
.card-span-4 { grid-column: span 4; }
.row-span-2 { grid-row: span 2; }

.card-image-full {
  padding: 0;
}

.card-image-full img, .bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-image-full .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Stat Cards */
.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.stat-card.purple { background: var(--color-stat-purple); }
.stat-card.orange { background: var(--color-stat-orange); }
.stat-card.blue { background: var(--color-stat-blue); }
.stat-card.yellow { background: var(--color-stat-yellow); color: var(--color-text-dark); }

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-weight: 500;
  opacity: 0.9;
}

/* Special Impact Card Layout */
.impact-hero-card {
  background: var(--color-primary-blue);
  color: white;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-0); /* Use image on one side */
}

.ih-content {
  padding: var(--space-xl);
  flex: 1;
}

.ih-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ih-image {
  flex: 1;
  height: 100%;
}
.ih-image img {
  height: 100%;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

/* Programs section inside Bento framework */
.program-pill {
  display: inline-flex;
  background: var(--color-bg-gradient-start);
  color: var(--color-primary-orange);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.bento-card h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
}

.bento-card p {
  font-size: 0.95rem;
}

/* Footer modern look */
.footer-bento {
  background: #000;
  color: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-top: 0;
}

.footer-bento h4 {
  color: white;
  margin-bottom: var(--space-md);
}

.footer-bento p, .footer-bento a {
  color: #fff;
  font-size: 0.95rem;
}

.footer-bento a:hover {
  color: var(--color-primary-orange);
}

/* Decorative Shapes */
@keyframes ambient-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -60px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -3;
  transform: translateZ(0); /* Hardware composite layer to isolate blur repaint cost */
}

@media (max-width: 1024px) {
  .blob, body::before { display: none !important; }
}
.blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.05);
  top: 10%;
  left: -100px;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(229, 228, 226, 0.03);
  bottom: 20%;
  right: -200px;
  animation-delay: -10s;
  animation-duration: 25s;
}

/* Icon Frame Animations */
.icon-frame {
  width: 56px;
  height: 56px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
}

@keyframes blob-morph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67% { border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%; }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

@keyframes pulse-soft {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.pulse-anim {
  animation: blob-morph 6s ease-in-out infinite, pulse-soft 3s infinite ease-in-out;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .blob { display: none !important; }
    body::before { display: none !important; }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .get-involved-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-span-3, .card-span-4 {
    grid-column: span 2;
  }
  .floating-widget {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: var(--space-lg);
  }
  .hero {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0;
  }
  #about {
    padding-top: var(--space-3xl) !important;
  }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: 4px;
}

/* Transform Navigation into a Mobile Drawer/Modal at 1200px and below */
@media (max-width: 1200px) {
  .mobile-toggle {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001; /* Stay above the menu */
    align-items: center;
    justify-content: center;
  }
  .header-nav {
    display: flex !important; /* Enable layout for transition */
    position: fixed;
    top: 0; left: 0;
    width: 100%; /* Use 100% instead of 100vw to avoid scrollbar overflow */
    height: 100vh;
    background: rgba(255, 255, 255, 0.98); /* Full screen frosted or solid */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-2xl) 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .header-nav.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .header-nav .nav-link {
    font-size: 1.7rem;
    padding: 16px 0;
    border-bottom: none;
    text-align: center;
    width: auto;
  }
}


@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .get-involved-grid {
    grid-template-columns: 1fr;
  }
  .card-span-2, .card-span-3, .card-span-4 {
    grid-column: 1 / -1;
  }
  .row-span-2 {
    grid-row: auto;
  }
  .footer-bento {
    grid-template-columns: 1fr;
    padding: var(--space-xl);
  }
  .ih-image {
    display: none; /* Hide image on mobile for layout */
  }
  .container {
    padding: 0 var(--space-sm);
  }
  .section {
    padding: var(--space-xl) 0;
  }
  .hero, .hero-slide {
    padding: var(--space-xl) var(--space-md);
    min-height: 75vh;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .bento-card {
    padding: var(--space-lg) !important;
  }
  .bento-card[style*="padding: 0"] {
    padding: 0 !important;
  }
  .bento-card > div[style*="padding: var(--space-xl)"] {
    padding: var(--space-lg) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .floating-widget {
    padding: var(--space-lg) !important;
  }
  .support-inline {
    flex-direction: column;
    text-align: center;
  }
  .support-inline h2 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }
  .drawn-arrow {
    display: none;
  }
  .site-header {
    padding: 16px var(--space-md);
  }
  .site-header.scrolled {
    padding: 12px 20px;
    width: calc(100% - 24px);
  }
  .site-header .logo-container img {
    height: 40px !important;
  }
  .ih-content {
    padding: var(--space-lg) !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .bento-card h3 {
    font-size: 1.35rem !important;
  }
  .bento-card h2 {
    font-size: 1.8rem !important;
  }
  .donation-amounts {
    grid-template-columns: 1fr;
  }
  .bento-card > div[style*="padding: var(--space-xl)"] {
    padding: var(--space-md) !important;
  }
  .support-inline h2 {
    font-size: 1.8rem !important;
  }
  .btn {
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}

/* Input Focus States */
input, textarea, select {
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(46, 49, 146, 0.5); /* Primary Blue */
  box-shadow: 0 0 10px rgba(46, 49, 146, 0.3); /* Soft Glow */
  border-color: var(--color-primary-blue) !important;
  transform: scale(1.01);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Premium Master Footer */
.premium-footer {
    background: #000;
    color: #fff;
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    position: relative;
    overflow: hidden;
    /* Soft top glow for dark theme integration */
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

.footer-mega-cta {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
}

.footer-mega-cta h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
}

.footer-brand p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 350px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1.25rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-socials a:hover {
    background: var(--color-primary-orange);
    color: #fff;
    transform: translateY(-4px);
    border-color: var(--color-primary-orange);
}

.footer-links h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
}

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

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    margin-left: -16px;
    color: var(--color-primary-orange);
    transition: all 0.3s ease;
    display: inline-block;
    padding-right: 8px;
    transform: translateX(-10px);
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(12px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a.active {
    color: var(--color-primary-orange);
}

/* Newsletter */
.nl-form {
    position: relative;
    margin-top: 16px;
}

.nl-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    border-radius: var(--radius-full);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nl-input:focus {
    outline: none;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
}

.nl-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.nl-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nl-submit:hover {
    background: var(--color-primary-orange);
    color: #fff;
}

.footer-bottom {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: #fff;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-primary-orange);
}

@media (max-width: 1024px) {
    .blob { display: none !important; }
    body::before { display: none !important; }
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .premium-footer {
        border-radius: var(--radius-2xl);
        padding: var(--space-xl) var(--space-lg);
    }
    .footer-mega-cta {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: var(--space-lg);
    }
    .footer-mega-cta h2 {
        font-size: 1.5rem; /* Ensures the text fits perfectly into exactly 2 lines on small screens */
        line-height: 1.3;
    }
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl) var(--space-md);
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-brand p {
        margin-bottom: 16px;
        font-size: 1.15rem; /* Increased size to not look small */
        max-width: 100%;
        line-height: 1.6;
    }
    .footer-links h4 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    .footer-links a {
        font-size: 1.1rem;
        padding: 4px 0;
    }
    .footer-main-grid > div:last-child {
        grid-column: span 2;
    }
    .footer-main-grid > div:last-child p {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
    }
    .nl-input {
        padding: 18px 24px;
        font-size: 1.1rem;
    }
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        font-size: 1.05rem;
        gap: 24px;
        margin-top: var(--space-2xl);
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* Preloader System */
#fvf-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000; /* Use black to match the dark luxury vibe */
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    pointer-events: none;
}

#fvf-preloader .preloader-logo {
    height: 120px;
    width: auto;
    animation: fvf-pulse 1.5s infinite ease-in-out;
}

@keyframes fvf-pulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.6; }
}

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

/* Services Section User Spec */
.services-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.services-header.active {
    opacity: 1;
    transform: translateY(0);
}

.services-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #EEECE8;
    margin-bottom: 24px;
}

.gold-divider {
    width: 80px;
    height: 2px;
    background: #C9A84C;
    margin: 0 auto 24px auto;
}

.services-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #A0A0A0;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: var(--space-3xl);
    padding: 32px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.service-card {
    background: #141414;
    border-left: 3px solid #C9A84C;
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
    opacity: 0;
    transform: translateX(-20px);
}

.service-card.active {
    opacity: 1;
    transform: translateX(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.05), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-left-color: #FFD700;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #141414 0%, #1a1710 100%);
}

.service-card:hover::before {
    left: 200%;
}

.service-watermark {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.05); /* Faded gold */
    position: absolute;
    top: -20px;
    right: 10px;
    line-height: 1;
    z-index: 0;
    user-select: none;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #EEECE8;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #A0A0A0;
    position: relative;
    z-index: 1;
}

.services-cta {
    text-align: center;
}

.services-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #EEECE8;
    margin-bottom: 32px;
}

.btn-gold-solid {
    display: inline-block;
    background: #C9A84C;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 48px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-gold-solid::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 30%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.btn-gold-solid:hover {
    background: #B3953C;
    transform: scale(1.02);
}

.btn-gold-solid:hover::after {
    left: 200%;
}

@media (max-width: 1024px) {
    .blob { display: none !important; }
    body::before { display: none !important; }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .btn-gold-solid {
        display: block;
        width: 100%;
    }
}


/* Gold Types Editorial Section */
.gold-types-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    position: relative;
}

.gold-types-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #C9A84C;
    display: block;
    margin-bottom: 12px;
}

.gold-types-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: #EEECE8;
    margin-bottom: 16px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.gold-types-subtext {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #A0A0A0;
    max-width: 600px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
}

.gold-types-divider {
    width: 80px;
    height: 2px;
    background: #C9A84C;
    margin: 0 auto;
}

.gold-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.gold-type-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    cursor: pointer;
}

.hero-card {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 420px;
}

.card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease, filter 0.4s ease;
    background: #000;
}

.card-gradient {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.gold-type-card::after {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(201, 168, 76, 0.0);
    z-index: 2;
    transition: background 0.4s ease;
    pointer-events: none;
}

.gold-type-card:hover .card-bg {
    transform: scale(1.05);
}

.gold-type-card:hover .card-gradient {
    height: 75%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
}

.gold-type-card:hover::after {
    background: rgba(201, 168, 76, 0.15); /* warm gold tint overlay */
}

.card-label {
    position: absolute;
    top: 32px; left: 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C9A84C;
    z-index: 3;
}

.card-content {
    position: relative;
    z-index: 3;
    padding-right: 32px;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.card-desc {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #A0A0A0;
    line-height: 1.7;
    margin: 0;
}

.card-arrow {
    position: absolute;
    bottom: 32px; right: 32px;
    color: #C9A84C;
    font-size: 24px;
    z-index: 3;
    transition: transform 0.4s ease;
}

.gold-type-card:hover .card-arrow {
    transform: translateX(6px);
    color: #FFD700;
}

.gold-types-cta {
    text-align: center;
    margin-top: var(--space-4xl);
    padding: 64px 24px;
    background: #0d0d0d;
}

.gold-types-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #EEECE8;
    margin-bottom: 16px;
}

.gold-types-cta p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #A0A0A0;
    margin-bottom: 32px;
}

.btn-gold-enquire {
    display: inline-block;
    background: #C9A84C;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 48px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-gold-enquire::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 30%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.btn-gold-enquire:hover {
    background: #FFD700;
}

.btn-gold-enquire:hover::after {
    left: 200%;
}

@media (max-width: 1024px) {
    .blob { display: none !important; }
    body::before { display: none !important; }
    .gold-types-title { font-size: 28px; }
    .gold-types-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-card { grid-column: span 2; grid-row: auto; min-height: 400px; }
}

@media (max-width: 768px) {
    .gold-types-title { font-size: 28px; }
    .gold-types-grid { grid-template-columns: 1fr; }
    .hero-card { grid-column: span 1; }
    .gold-type-card { min-height: 280px; }
}

/* Remove generic scrollbar globally */
::-webkit-scrollbar {
    display: none;
}
body, html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Cinematic System */
.cinematic-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    transition: all 0.4s ease;
    background: transparent;
}

.cinematic-header.scrolled {
    background: #0a0a0a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
    padding: 16px 5%;
}

.cine-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #C9A84C;
    text-decoration: none;
    letter-spacing: 1px;
}

.cine-nav {
    display: flex;
    gap: 20px;
}

.cine-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.cine-nav .nav-link:hover {
    color: #C9A84C;
}

.cine-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0%; height: 2px;
    background: #C9A84C;
    transition: width 0.3s ease;
}
.cine-nav .nav-link:hover::after { width: 100%; }

.btn-cine-outline {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C9A84C;
    border: 1px solid #C9A84C;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-cine-outline:hover {
    background: #C9A84C;
    color: #000;
}

@media (max-width: 1024px) {
    .blob { display: none !important; }
    body::before { display: none !important; }
    .cine-nav { display: none; }
}

/* Cinematic Hero Container */
.cine-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0a0a0a;
}

.cine-slides {
    position: absolute;
    inset: 0;
}

.cine-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s;
}

.cine-slide.active {
    opacity: 1;
    visibility: visible;
}

.cine-slide .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s linear; /* Ken Burns matching slideDuration */
}

.cine-slide.active .bg-img {
    transform: scale(1.05); /* Slide 1.05 over 6s */
}

/* Gradient Overlay */
.cine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 40%, transparent 100%);
}
@media (max-width: 768px) {
    .cine-overlay {
        background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 60%, transparent 100%);
    }
}

/* Content */
.cine-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 800px;
    z-index: 2;
}

@media (max-width: 768px) {
    .cine-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
        text-align: center;
        top: 60%;
    }
}

.eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #C9A84C;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(10px);
}

.gold-sep-line {
    width: 0px;
    height: 2px;
    background: #C9A84C;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .gold-sep-line { margin: 0 auto 24px auto; }
}

.main-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
}
@media (max-width: 768px) {
    .main-heading { font-size: 32px; margin-bottom: 16px; }
}

.cine-desc {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #EEECE8;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}
@media (max-width: 768px) {
    .cine-desc { max-width: 100%; margin: 0 auto 32px auto; }
}

.cine-ctas {
    display: flex;
    gap: 24px;
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .cine-ctas {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
}

.btn-cine-solid {
    display: inline-block;
    background: #FFD700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-cine-solid:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.btn-cine-ghost {
    display: inline-block;
    background: transparent;
    color: #C9A84C;
    border: 2px solid #C9A84C;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-cine-ghost:hover {
    background: rgba(201, 168, 76, 0.1);
}

/* Staggered Animations */
.cine-slide.active .eyebrow {
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
    opacity: 1; transform: translateY(0);
}
.cine-slide.active .gold-sep-line {
    transition: width 0.5s ease 0.4s;
    width: 80px;
}
.cine-slide.active .main-heading {
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
    opacity: 1; transform: translateY(0);
}
.cine-slide.active .cine-desc {
    transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
    opacity: 1; transform: translateY(0);
}
.cine-slide.active .cine-ctas {
    transition: opacity 0.6s ease 1.0s, transform 0.6s ease 1.0s;
    opacity: 1; transform: translateY(0);
}

/* Floating Vertical Line */
.floating-vert-line {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 300px;
    background: linear-gradient(to bottom, transparent, #C9A84C, transparent);
    opacity: 0.5;
    z-index: 10;
}
@media (max-width: 768px) {
    .floating-vert-line { display: none; }
}

/* Controls */
.cine-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.cine-hero:hover .cine-arrows {
    opacity: 1;
}
@media (max-width: 768px) {
    .cine-arrows { display: none; } /* relies on swipe */
}

.cine-arrow {
    background: transparent;
    border: none;
    color: #C9A84C;
    font-size: 40px;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.3s, color 0.3s;
}
.cine-arrow:hover {
    color: #FFD700;
    transform: scale(1.1);
}

.cine-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.cine-dot {
    width: 8px; height: 8px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.cine-dot.active {
    background: #C9A84C;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

/* Progress bar */
.cine-progress-bar {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}

.cine-progress-fill {
    height: 100%;
    width: 0%;
    background: #C9A84C;
    /* transition is managed via JS */
}


/* Testimonials Section */
.testim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    align-items: center;
}

@media (max-width: 1024px) {
    .blob { display: none !important; }
    body::before { display: none !important; }
    .testim-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}

/* Glassmorphism Classes */
.gradient-glass, .mini-glass {
    position: relative;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 48px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mini-glass {
    padding: 32px;
    margin-bottom: 24px;
}

.gradient-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(201,168,76,0.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gradient-glass:hover, .mini-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201,168,76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
}

.testim-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testim-stars {
    color: #C9A84C;
    font-size: 16px;
    display: flex;
    gap: 4px;
}

.kyc-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, 0.15);
    color: #C9A84C;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testim-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.featured-quote {
    font-size: 36px;
    line-height: 1.3;
}

.testim-author-box {
    position: relative;
    z-index: 1;
}

.testim-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C9A84C;
    margin-bottom: 4px;
}

.testim-context {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
}

.watermark-quote {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 160px;
    color: rgba(201, 168, 76, 0.05);
    z-index: 0;
    transform: rotate(10deg);
}

/* Vertical Scrolling Marquee */
.testim-marquee {
    height: 500px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    animation: vertical-marquee 30s linear infinite;
    display: flex;
    flex-direction: column;
}

.testim-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes vertical-marquee {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@media (max-width: 768px) {
    .testim-marquee {
        height: 600px; /* Allow a bit more room on mobile */
    }
    .featured-quote {
        font-size: 28px;
    }
}

/* FAQ Accordion Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.faq-header {
    text-align: left;
}

@media (max-width: 768px) {
    .faq-header {
        text-align: center;
    }
    .faq-header p {
        margin: 0 auto 48px auto;
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.faq-item {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.faq-item.active {
    background: #111; /* faint metallic block */
    border-left: 3px solid #C9A84C;
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: text-shadow 0.3s ease;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    text-shadow: 0 0 10px rgba(201,168,76,0.3);
    color: #F5F5F5;
}

.faq-icon {
    font-size: 20px;
    color: #C9A84C;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0.5, 1);
}

.faq-answer-inner {
    padding: 0 32px 32px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #A0A0A0;
    line-height: 1.8;
}

.faq-footer {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(212,175,55,0.1);
}

.faq-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #888;
}

.faq-footer a {
    color: #C9A84C;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-footer a:hover {
    border-bottom-color: #C9A84C;
}

/* Responsive Horizontal Enquriy Form */
.horizontal-form {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 48px;
    backdrop-filter: blur(20px);
}

.form-progress-wrapper {
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    margin-bottom: 32px;
    border-radius: 2px;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    width: 0%;
    background: #C9A84C;
    box-shadow: 0 0 10px #C9A84C;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    position: relative;
    flex: 1 1 250px; /* Base width */
    display: flex;
    flex-direction: column;
}

.form-input {
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    border: none;
    border-bottom: 2px solid #333;
    padding: 24px 16px 12px 16px;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #111 inset;
    -webkit-text-fill-color: #F5F5F5;
    transition: background-color 5000s ease-in-out 0s;
}

select.form-input {
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #C9A84C 50%), linear-gradient(135deg, #C9A84C 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 6px), calc(100% - 15px) calc(1em + 6px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-label {
    position: absolute;
    left: 16px;
    top: 20px;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-input:focus, .form-input:not(:placeholder-shown) {
    border-bottom-color: #C9A84C;
    background: rgba(15, 15, 15, 0.95);
}

.form-input:focus {
    box-shadow: 0 10px 20px rgba(201,168,76, 0.05);
}

.form-input:focus ~ .form-label, 
.form-input:not(:placeholder-shown) ~ .form-label {
    top: 6px;
    font-size: 10px;
    color: #C9A84C;
    letter-spacing: 1px;
}

.valid-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    color: #4CAF50;
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

/* For inputs that are valid */
.form-input:valid ~ .valid-icon {
    transform: translateY(-50%) scale(1);
}
select.form-input:valid ~ .valid-icon {
    transform: translateY(-50%) scale(1);
    right: 40px; /* Avoid custom arrow overlap */
}

/* Overrides for valid but empty logic */
.form-input:placeholder-shown ~ .valid-icon {
    transform: translateY(-50%) scale(0) !important;
}

.phone-wrapper {
    display: flex;
    position: relative;
    width: 100%;
}
.phone-wrapper .valid-icon { right: 16px; }

/* Conditional Row Animations */
.conditional-row {
    margin-bottom: 0;
}
.conditional-field {
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: 24px;
}

/* Submit Row */
.form-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 24px;
}

.pep-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex: 1 1 300px;
}

.pep-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-box {
    height: 20px;
    width: 20px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pep-checkbox input:checked ~ .checkbox-box {
    background-color: #C9A84C;
    border-color: #C9A84C;
}

.pep-checkbox input:checked ~ .checkbox-box:after {
    content: '';
    display: block;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pep-checkbox:hover input ~ .checkbox-box {
    border-color: #C9A84C;
}

/* Diagonal Cut / Skewed Button */
.btn-skewed-gold {
    position: relative;
    background: linear-gradient(135deg, #FFD700 0%, #C9A84C 100%);
    color: #000;
    border: none;
    padding: 20px 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-skewed-gold span {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.btn-skewed-gold::before {
    content: '';
    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.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: none;
    z-index: 1;
}

.btn-skewed-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(201,168,76, 0.3);
}

.btn-skewed-gold:hover::before {
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.trust-badges .badge i {
    color: #C9A84C;
    font-size: 16px;
}

@media (max-width: 768px) {
    .horizontal-form {
        padding: 24px;
    }
    .form-submit-row {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-skewed-gold {
        width: 100%;
    }
}

/* Dropdown Nav Styles */
.cine-dropdown {
    display: inline-block;
    position: relative;
}

.cine-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 30px;
}

.cine-dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -20px;
    background: #0a0a0a;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    padding: 12px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
}

.cine-dropdown:hover .cine-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cine-dropdown-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A0A0A0;
    padding: 12px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cine-dropdown-menu a:hover {
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.05);
    padding-left: 36px;
}

.nav-link i {
    font-size: 11px;
    margin-left: 4px;
    position: relative;
    top: 1px;
}

/* ========================================================================= */
/* ABOUT US PAGE EDITORIAL STYLES
/* ========================================================================= */

.about-page-wrapper {
    background: #0a0a0a;
    color: #A0A0A0;
    overflow-x: hidden;
}

/* Typography Overrides for About Us */
.about-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #C9A84C;
    margin-bottom: 16px;
    display: block;
}

.about-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 36px;
    }
}

.about-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #EEECE8;
    margin-bottom: 12px;
}

.about-body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #A0A0A0;
    max-width: 680px;
}

.gold-divider-80 {
    width: 80px;
    height: 1px;
    background: #C9A84C;
    margin: 24px 0;
}

.gold-divider-80.center {
    margin: 24px auto;
}

/* Section 1: Hero */
.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 900px;
}

.about-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.about-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #A0A0A0;
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 44px;
    }
    .about-hero-overlay {
        background: linear-gradient(to bottom, rgba(10,10,10,0.8), rgba(10,10,10,0.9));
    }
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.animated-gold-line {
    width: 0;
    height: 1px;
    background: #C9A84C;
    margin: 20px 0;
    transition: width 1s ease-out 0.3s;
}

.about-hero .animated-gold-line.active {
    width: 120px;
}

/* Alternating Layout Base */
.about-alt-section {
    padding: var(--space-4xl) 5%;
    background: #0a0a0a;
}
.about-alt-section.charcoal {
    background: #111111;
}

.about-alt-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.about-img-parallax {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.about-text-content {
    position: relative;
    padding-left: 24px;
    border-left: 1px solid #C9A84C;
}

.about-text-content.no-border {
    border-left: none;
    padding-left: 0;
}

@media (max-width: 992px) {
    .about-alt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-alt-grid.reverse .about-img-wrap {
        order: -1; /* Image always on top on mobile */
    }
    .about-img-wrap {
        height: 400px;
    }
    .about-img-parallax {
        top: 0;
        height: 100%; /* Disable parallax on mobile implicitly by removing the extra size */
        transition: none !important;
        transform: none !important;
    }
}

/* Section 3: Pull Quote */
.about-quote-sec {
    position: relative;
    padding: var(--space-4xl) 5%;
    text-align: center;
    background: #0a0a0a;
    overflow: hidden;
}

.about-quote-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.about-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-style: italic;
    color: #EEECE8;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 32px;
}

.about-quote-text::before,
.about-quote-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201, 168, 76, 0.4);
}

@media (max-width: 768px) {
    .about-quote-text {
        font-size: 26px;
        flex-direction: column;
        gap: 16px;
    }
    .about-quote-text::before,
    .about-quote-text::after {
        width: 60px;
        flex: none;
    }
}

/* Section 5: Numbers */
.about-numbers-sec {
    padding: var(--space-4xl) 5%;
    background: #0a0a0a url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(201,168,76,0.05)'/%3E%3C/svg%3E");
    text-align: center;
}

.about-numbers-grid {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 64px auto 0;
}

.about-stat {
    position: relative;
}

.about-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(201, 168, 76, 0.3);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 700;
    color: #C9A84C;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #A0A0A0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .about-numbers-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .about-stat:not(:last-child)::after {
        display: none;
    }
}
@media (max-width: 500px) {
    .about-numbers-grid {
        grid-template-columns: 1fr;
    }
}

/* Section 6: Values */
.about-values-sec {
    padding: var(--space-4xl) 5%;
    background: #0a0a0a;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 64px auto 0;
}

.about-value-block {
    position: relative;
    padding-left: 20px;
    border-left: 1px solid rgba(201, 168, 76, 0.4);
}

.about-value-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #C9A84C;
    letter-spacing: 4px;
    margin-bottom: 12px;
    display: block;
}

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

/* Section 7: Why Choose Us */
.about-why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.why-point {
    display: flex;
    gap: 20px;
}

.why-point-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #C9A84C;
    font-weight: 700;
    line-height: 1;
}

/* Section 8: Banner */
.about-banner-sec {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-banner-sec .about-img-parallax {
    z-index: 0;
    top: -20%;
    height: 140%;
}

.about-banner-sec .about-hero-overlay {
    background: rgba(10, 10, 10, 0.7);
    z-index: 1;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 5%;
}

/* CTA Buttons */
.about-cta-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.btn-about-primary {
    background: #FFD700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-about-primary:hover {
    background: #FFF;
    transform: translateY(-2px);
}

.btn-about-sec {
    background: transparent;
    border: 1px solid #FFD700;
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-about-sec:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.about-trust-line {
    margin-top: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #A0A0A0;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-cta-wrapper {
        flex-direction: column;
    }
    .btn-about-primary, .btn-about-sec {
        width: 100%;
        text-align: center;
    }
}

/* ========================================================================= */
/* CONTACT US PAGE STYLES
/* ========================================================================= */

.contact-page-wrapper {
    background: #0a0a0a;
    color: #A0A0A0;
    overflow-x: hidden;
}

/* Contact Hero (Section 1) */
.contact-hero {
    position: relative;
    width: 100%;
    min-height: 55vh;
    height: auto;
    padding-top: 160px; /* Prevent header overlap */
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 40%, rgba(10, 10, 10, 0.2) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 900px;
}

.contact-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.contact-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #A0A0A0;
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 44px;
    }
}

/* Section 2: Contact Split */
.contact-split-sec {
    padding: var(--space-4xl) 5%;
    background: #111111;
    border-top: 1px solid #C9A84C;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #C9A84C;
    margin-bottom: 16px;
    display: block;
}

.contact-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 12px;
}

.contact-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #A0A0A0;
    margin-bottom: 60px;
}

.contact-form-line {
    width: 60px;
    height: 1px;
    background: #C9A84C;
    margin: -30px 0 60px 0;
}

@media (max-width: 992px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Floating Label Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.c-form-group {
    position: relative;
    width: 100%;
}

.c-form-input {
    width: 100%;
    background: #1a1a1a;
    border: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    padding: 24px 16px 12px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

select.c-form-input {
    appearance: none;
    cursor: pointer;
}

textarea.c-form-input {
    min-height: 120px;
    resize: vertical;
}

.c-form-label {
    position: absolute;
    left: 16px;
    top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #A0A0A0;
    text-transform: uppercase;
    letter-spacing: 3px;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Active floating state */
.c-form-input:focus ~ .c-form-label,
.c-form-input:not(:placeholder-shown) ~ .c-form-label {
    top: 8px;
    font-size: 10px;
    color: #C9A84C;
}

.c-form-input:focus {
    border-bottom: 1px solid #FFD700;
    background: #222;
}

/* Error State */
.c-form-group.error .c-form-input {
    border-bottom: 1px solid #E74C3C;
}

.c-form-error {
    color: #E74C3C;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    margin-top: 8px;
    position: absolute;
    bottom: -20px;
    left: 0;
    display: none;
}

.c-form-group.error .c-form-error {
    display: block;
}

/* Validation Tick */
.c-valid-icon {
    position: absolute;
    right: 16px;
    top: 24px;
    color: #C9A84C;
    opacity: 0;
    transition: 0.3s;
    font-size: 16px;
}
.c-form-group.valid .c-valid-icon {
    opacity: 1;
}

.c-form-submit {
    background: #FFD700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 24px;
    border: none;
    cursor: pointer;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    width: 100%;
}

.c-form-submit:hover {
    background: #FFF;
}

.c-form-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.c-form-submit:hover::after {
    left: 150%;
    transition: 0.7s;
}

/* Success Message */
.c-form-success {
    position: absolute;
    inset: 0;
    background: #111111;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}
.c-form-success.active {
    opacity: 1;
    pointer-events: all;
}

.c-form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #C9A84C;
    margin-bottom: 16px;
}

.c-form-success p {
    font-family: 'Inter', sans-serif;
    color: #A0A0A0;
    max-width: 400px;
    line-height: 1.6;
}

/* Spinner */
.c-spinner {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: cspin 1s linear infinite;
    margin: 0 auto;
}
@keyframes cspin { 0% {transform: rotate(0deg);} 100% {transform: rotate(360deg);} }
.c-form-submit.loading .btn-text { display: none; }
.c-form-submit.loading .c-spinner { display: block; }
.c-form-submit.loading { pointer-events: none; opacity: 0.8; }

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
}

.contact-block {
    padding: 24px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.contact-block-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #C9A84C;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.contact-block-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.contact-block-sub {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
}

.contact-trust-box {
    margin-top: 40px;
    background: #1a1a1a;
    border-left: 3px solid #C9A84C;
    padding: 32px;
}

.contact-trust-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-trust-box li {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #A0A0A0;
    margin-bottom: 16px;
    line-height: 1.6;
    display: flex;
    gap: 8px;
}
.contact-trust-box li:last-child {
    margin-bottom: 0;
}
.contact-trust-box li::before {
    content: '—';
    color: #C9A84C;
}

/* WhatsApp Banner (Section 3) */
.contact-whatsapp-banner {
    background: #111111;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    padding: 60px 5%;
}

.contact-wa-flex {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.wa-btn {
    background: #25D366;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 24px 48px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    text-align: center;
}

.wa-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.wa-sub {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    margin-top: 12px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-wa-flex {
        flex-direction: column;
        text-align: center;
    }
    .wa-btn {
        width: 100%;
    }
}

/* Map Section (Section 4) */
.contact-map-sec {
    padding-top: var(--space-4xl);
    background: #0a0a0a;
}
.contact-map-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 5%;
}

.contact-map-wrapper {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
    filter: invert(100%) hue-rotate(180deg) brightness(85%) contrast(110%);
}

@media (max-width: 768px) {
    .contact-map-wrapper {
        height: 320px;
    }
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Final Trust Strip (Section 5) */
.contact-trust-strip {
    background: #000000;
    padding: 40px 5%;
}

.c-trust-flex {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-trust-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #A0A0A0;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    text-align: center;
}

.c-trust-item i {
    color: #C9A84C;
    margin-right: 8px;
    font-size: 16px;
    font-style: normal; /* To act as standard icon bullet natively */
}

.c-trust-div {
    width: 1px;
    height: 16px;
    background: rgba(201, 168, 76, 0.3);
}

@media (max-width: 992px) {
    .c-trust-flex {
        flex-direction: column;
        gap: 24px;
    }
    .c-trust-div {
        display: none;
    }
}

/* Global FAQ Overrides for Contact (Section 6) */
.contact-faq-sec {
    background: #111111;
    padding: var(--space-4xl) 5%;
}

.c-faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    margin-bottom: 16px;
}

.c-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 24px 0;
}

.c-faq-q h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.c-faq-icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #C9A84C;
    font-weight: 300;
    transition: 0.3s;
}

.c-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.c-faq-a-inner {
    padding-bottom: 24px;
    font-family: 'Inter', sans-serif;
    color: #A0A0A0;
    line-height: 1.8;
}

.c-faq-item.active .c-faq-a {
    max-height: 400px;
}
.c-faq-item.active .c-faq-icon {
    transform: rotate(45deg);
}

/* Floating WhatsApp Button */
.global-wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    overflow: hidden;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s;
    animation: wa-pulse 4s infinite;
}

.global-wa-float::before {
    content: 'W'; /* Fallback to W if no icon explicitly allowed, but wait - "No icons anywhere." I will use text 'WA' */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    transition: opacity 0.3s;
}

.global-wa-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
    padding-left: 12px;
}

.global-wa-float:hover {
    width: 180px;
    animation: none;
}
.global-wa-float:hover::before {
    opacity: 0;
}
.global-wa-float:hover .global-wa-text {
    opacity: 1;
    transform: translateX(0);
}

@keyframes wa-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    10% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    20% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .global-wa-float {
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================================================= */
/* WHY CHOOSE US PAGE STYLES
/* ========================================================================= */

.why-page-wrapper {
    background: #0a0a0a;
    color: #A0A0A0;
    overflow-x: hidden;
}

/* Base Typographic Re-use */
.why-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #C9A84C;
    margin-bottom: 16px;
    display: block;
}

.why-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
}

.why-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #EEECE8;
    line-height: 1.6;
}

.why-body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #A0A0A0;
}

@media (max-width: 768px) {
    .why-heading {
        font-size: 36px;
    }
}

/* Section 1: Hero */
.why-hero {
    position: relative;
    width: 100%;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    padding-top: 160px;
    padding-bottom: 80px;
    overflow: hidden;
}

.why-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.why-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 40%, rgba(10, 10, 10, 0.3) 100%);
    z-index: 1;
}

.why-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 900px;
}

.why-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .why-hero-title {
        font-size: 44px;
    }
}

/* Line Animation Extension */
.animated-gold-line.w-expand.active {
    width: 100%; /* For full width borders */
}

/* Section 2: Core Value Statement */
.why-core-sec {
    padding: var(--space-4xl) 5%;
    background: #0a0a0a;
    text-align: center;
}

.why-core-container {
    max-width: 800px;
    margin: 0 auto;
}

.why-statements-list {
    margin-top: 60px;
    text-align: left;
}

.why-statement-item {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #EEECE8;
    padding: 24px 0;
    position: relative;
}

.why-statement-item::before {
    content: '—';
    color: #C9A84C;
    margin-right: 16px;
    font-weight: 700;
}

.w-divider-full {
    height: 1px;
    background: #C9A84C;
    width: 0;
    transition: width 1s ease-out;
}
.w-divider-full.active {
    width: 100%;
}

/* Section 3: Trust Pillars Grid */
.why-trust-sec {
    padding: var(--space-4xl) 5%;
    background: #111111;
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.why-trust-block {
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.why-trust-block:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.why-trust-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #C9A84C;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.why-trust-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-weight: 600;
}

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

/* Section 4: Process Reassurance */
.why-process-sec {
    position: relative;
    padding: var(--space-4xl) 5%;
    background: #0a0a0a;
}

.why-process-flow {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-step {
    flex: 1;
    position: relative;
    padding-top: 24px;
}

.why-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
}
.why-step:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
}

.why-step::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #C9A84C;
    border-radius: 50%;
}

.why-step-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #C9A84C;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.why-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 600;
    padding-right: 20px;
}

@media (max-width: 992px) {
    .why-process-flow {
        flex-direction: column;
        gap: 32px;
    }
    .why-step {
        padding-top: 0;
        padding-left: 24px;
    }
    .why-step:not(:last-child)::after, .why-step:last-child::after {
        top: 0;
        left: 0;
        width: 1px;
        height: 120%;
        background: rgba(201, 168, 76, 0.3);
    }
    .why-step::before {
        top: 6px;
        left: -2px;
    }
}

/* Section 5: Authority Statement Strip */
.why-statement-strip {
    position: relative;
    padding: 100px 5%;
    text-align: center;
    background: #111111;
    overflow: hidden;
}

.why-statement-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: #FFFFFF;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .why-statement-text {
        font-size: 32px;
    }
}

/* Section 6: Comparison Section */
.why-compare-sec {
    position: relative;
    padding: var(--space-4xl) 5%;
    background: #0a0a0a;
}

.why-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-comp-col {
    padding: 24px 0;
}

.why-comp-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: #A0A0A0;
}

.why-comp-legacy .why-comp-title {
    color: #C9A84C;
}

.why-comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-comp-list li {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #888;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.why-comp-legacy .why-comp-list li {
    color: #FFFFFF;
    font-weight: 500;
}

.why-comp-list li::before {
    content: '—';
    color: inherit;
    margin-right: 12px;
    opacity: 0.5;
}

.why-comp-legacy .why-comp-list li::before {
    color: #C9A84C;
    opacity: 1;
}

.why-comp-divider {
    background: rgba(201, 168, 76, 0.4);
    width: 1px;
    height: 100%;
}

@media (max-width: 768px) {
    .why-compare-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .why-comp-col:first-child {
        margin-bottom: 60px;
    }
    .why-comp-divider {
        display: none;
    }
}

/* Section 7: Client Reassurance Block */
.why-reassurance-sec {
    padding: var(--space-4xl) 5%;
    background: #0a0a0a;
}

.why-reassure-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    text-align: center;
}

.why-reassure-box ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

.why-reassure-box li {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #EEECE8;
    margin-bottom: 16px;
}
.why-reassure-box li::before {
    content: '— ';
    color: #C9A84C;
}

@media (max-width: 768px) {
    .why-reassure-box {
        padding: 40px 20px;
    }
}

/* Standardized Trust Footer Strips (Reuse from Contact slightly modified for layout) */
.why-trust-strip {
    background: #000;
    padding: 40px 5%;
}

/* ========================================================================= */
/* GOLD BARS PAGE STYLES
/* ========================================================================= */

.gb-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #C9A84C;
    margin-bottom: 16px;
    display: block;
}

.gb-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gb-body-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #A0A0A0;
    max-width: 680px;
}

.gb-sub-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #A0A0A0;
    margin-top: 8px;
}

.gb-section {
    padding: 100px 5%;
    background: #0a0a0a;
}
.gb-section.charcoal {
    background: #111111;
}

.gb-centered-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gb-container {
    max-width: 1440px;
    margin: 0 auto;
}

/* Section 1: Hero */
.gb-hero {
    position: relative;
    width: 100%;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px; /* Offset for header */
}

.gb-hero-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
}

.gb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 40%, rgba(10, 10, 10, 0.3) 100%);
    z-index: 1;
}

.gb-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 900px;
}

.gb-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.gb-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #A0A0A0;
    max-width: 600px;
    line-height: 1.6;
}

/* CTA */
.btn-gb-primary {
    display: inline-block;
    background: #FFD700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 18px 40px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-gb-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-gb-primary:hover::after {
    left: 150%;
    transition: 0.7s;
}

/* Visual Elements */
.gb-divider {
    width: 60px;
    height: 1px;
    background: #C9A84C;
    margin: 24px auto;
}
.gb-divider.thin {
    width: 100%;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
    margin: 24px 0;
}
.gb-divider.thin.center {
    margin: 0 auto;
    width: 80px;
}

/* Section 2: Overview */
.gb-emphasis-lines {
    margin-top: 40px;
    width: 100%;
}
.gb-emphasis-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #EEECE8;
}

/* Section 3: Specs */
.gb-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;
}
.gb-spec-list {
    display: flex;
    flex-direction: column;
}
.gb-spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gb-spec-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #C9A84C;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.gb-spec-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
}

.gb-img-wrap {
    overflow: hidden;
    height: 600px;
    position: relative;
}
.gb-img-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}
.gb-img-wrap:hover .gb-img-zoom {
    transform: scale(1.05);
}

/* Section 4 & 5: Trust & Buyers */
.gb-reassure-item, .gb-buyer-item {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #EEECE8;
    margin-bottom: 16px;
    text-align: center;
}
.gb-reassurance-list, .gb-buyers-list {
    margin-top: 32px;
}

/* Section 6: Process */
.gb-process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 60px auto 0 auto;
}
.gb-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    flex: 1;
}
.gb-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1;
}
.gb-step-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #EEECE8;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gb-step-arrow {
    width: 40px;
    height: 1px;
    background: rgba(201, 168, 76, 0.4);
    margin: 0 16px;
}

/* Section 9: Trust Strip */
.gb-trust-strip {
    background: #000;
    padding: 60px 5%;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.gb-trust-flex {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gb-trust-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #C9A84C;
}
.gb-divider-v {
    width: 1px;
    height: 30px;
    background: rgba(201, 168, 76, 0.3);
}

/* Section 10: Related Products */
.gb-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.gb-related-link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #A0A0A0;
    text-decoration: none;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
    transition: color 0.3s;
}
.gb-related-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #C9A84C;
    transition: width 0.3s ease;
}
.gb-related-link:hover {
    color: #FFFFFF;
}
.gb-related-link:hover::after {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gb-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gb-trust-flex {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .gb-divider-v {
        width: 60px;
        height: 1px;
    }
    .gb-process-flow {
        flex-direction: column;
        gap: 32px;
    }
    .gb-step-arrow {
        width: 1px;
        height: 40px;
        margin: 0;
    }
    .gb-related-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gb-hero-title {
        font-size: 44px;
    }
    .gb-section-title {
        font-size: 36px !important;
    }
    .gb-img-wrap {
        height: 400px;
    }
}
@media (max-width: 600px) {
    .gb-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================= */
/* PRODUCT ORDER MODAL & STICKY BUTTON STYLES
/* ========================================================================= */

.sticky-order-btn {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: #FFD700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.sticky-order-btn:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.gb-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gb-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.gb-modal-content {
    box-sizing: border-box;
    background: #0a0a0a;
    width: 100%;
    max-width: 600px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #C9A84C #111;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.gb-modal-content::-webkit-scrollbar {
    width: 8px;
}
.gb-modal-content::-webkit-scrollbar-track {
    background: #111;
    border-radius: 8px;
}
.gb-modal-content::-webkit-scrollbar-thumb {
    background: #C9A84C;
    border-radius: 8px;
}
.gb-modal-content::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

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

.gb-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #A0A0A0;
    font-size: 24px;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: color 0.3s, transform 0.3s;
}
.gb-modal-close:hover {
    color: #FFD700;
    transform: rotate(90deg);
}

.gb-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #FFF;
    margin-bottom: 32px;
}

.gbm-form-group {
    margin-bottom: 24px;
}
.gbm-form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
.gbm-input, .gbm-select, .gbm-textarea {
    box-sizing: border-box;
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #FFF;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    border-radius: 4px;
    transition: border-color 0.3s, background 0.3s;
}
.gbm-input:focus, .gbm-select:focus, .gbm-textarea:focus {
    outline: none;
    border-color: #C9A84C;
    background: #1a1a1a;
}
.gbm-textarea {
    resize: vertical;
    min-height: 120px;
}
.gbm-submit {
    width: 100%;
    padding: 18px;
    background: #C9A84C;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-top: 16px;
}
.gbm-submit:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .sticky-order-btn {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        border-radius: 50px;
        justify-content: center;
        padding: 16px;
        font-size: 14px;
    }
    .gbm-flex-row {
        flex-direction: column;
        gap: 0 !important;
    }
    .gb-modal-content {
        padding: 24px;
    }
    .gb-modal-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
}


.service-learn-more {
    display: inline-block;
    margin-top: 24px;
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}
.service-card:hover .service-learn-more {
    border-bottom-color: #D4AF37;
    color: #FFF;
}


/* Fix nav alignment */
.cine-nav {
    align-items: center;
}
.cine-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 120px 20px 40px;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-nav-links a:hover {
    color: #C9A84C;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}
.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding-left: 16px;
    margin-top: 16px;
    border-left: 2px solid rgba(201, 168, 76, 0.2);
}

.mobile-dropdown-menu.active {
    display: flex;
}

.mobile-dropdown-menu a {
    font-size: 14px;
    color: #A0A0A0;
}

.mobile-get-in-touch {
    margin-top: 40px;
    text-align: center;
    border: 1px solid #C9A84C;
    padding: 15px;
    color: #C9A84C;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .blob { display: none !important; }
    body::before { display: none !important; }
    .cinematic-header .btn-cine-outline {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

/* Responsive Spacing Overrides for Mobile */
@media (max-width: 768px) {
  :root {
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 40px;
    --space-3xl: 48px;
    --space-4xl: 64px;
  }
}

/* Deep Mobile Padding Overrides targeting specific hardcoded components */
@media (max-width: 768px) {
    .gb-section {
        padding: 40px 5% !important;
    }
    .why-hero, .contact-hero {
        padding-top: 90px !important;
    }
    .why-hero {
        padding-bottom: 30px !important;
    }
    .why-statement-strip {
        padding: 40px 5% !important;
    }
    
    /* Homepage Specific Reductions */
    #services {
        padding-bottom: 16px !important;
    }
    #gold-types {
        padding-top: 24px !important;
    }
}


/* Gallery CSS injected by system */
.lgt-gallery-sec {
    background: #0a0a0a;
    padding: var(--space-3xl) 0;
}
.lgt-gallery-grid {
    column-count: 3;
    column-gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
@media(max-width: 992px) {
    .lgt-gallery-grid { column-count: 2; }
}
@media(max-width: 600px) {
    .lgt-gallery-grid { column-count: 1; }
}
.lgt-gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lgt-gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.lgt-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.2);
}
.lgt-gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lgt-lightbox {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.95);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lgt-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lgt-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(212,175,55,0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lgt-lightbox.active img {
    transform: scale(1);
}
.lgt-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #D4AF37;
    font-size: 40px;
    cursor: pointer;
    background: none; border: none;
    line-height: 1;
}
