/* ============================================================
   custom.css — Nexora Digi Solutions
   Luxury Dark × Champagne Gold × Ivory Visual System
   Dark Mode (default) + Bright Mode toggle
   ============================================================ */

/* ── 1. CSS Custom Properties — Dark Mode (default) ───────── */
:root {
  /* Champagne gold palette */
  --gold:            #FF3366;
  --gold-light:      #FF6688;
  --gold-pale:       #FF99BB;
  --gold-dark:       #CC0033;
  --gold-glow:       rgba(255, 51, 102, 0.45);
  --gold-faint:      rgba(255, 51, 102, 0.10);
  --gold-border:     rgba(255, 51, 102, 0.28);

  /* Background scale — deep midnight navy */
  --base-bg:         #060608;
  --surface-1:       #0A0A0E;
  --surface-2:       #101016;
  --surface-3:       #16161E;
  --card-bg:         #12121A;
  --card-hover:      #1A1A24;

  /* Graphite scale */
  --graphite:        #1A1A24;
  --graphite-md:     #22222E;
  --graphite-lt:     #2A2A38;

  /* Text — ivory */
  --ivory:           #F0EBD8;
  --ivory-dim:       rgba(240,235,216,0.82);
  --ivory-muted:     rgba(240,235,216,0.60);
  --ivory-faint:     rgba(240,235,216,0.38);

  /* Semantic page tokens */
  --page-bg:         #060608;
  --page-text:       #F0EBD8;
  --nav-bg:          rgba(10, 10, 14, 0.6);
  --nav-bg-scrolled: rgba(10, 10, 14, 0.95);
  --nav-border:      rgba(255, 51, 102, 0.14);
  --nav-border-scrolled: rgba(255, 51, 102, 0.28);

  /* Easing curves */
  --ease-luxury:     cubic-bezier(0.25, 0.10, 0.25, 1.00);
  --ease-out-expo:   cubic-bezier(0.16, 1.00, 0.30, 1.00);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1.00);
  --ease-in-out:     cubic-bezier(0.45, 0.00, 0.55, 1.00);

  /* Transition speeds */
  --t-fast:    180ms;
  --t-mid:     320ms;
  --t-slow:    500ms;
  --t-luxury:  700ms;

  /* Spacing scale */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-5:   24px;
  --sp-6:   32px;
  --sp-7:   48px;
  --sp-8:   64px;
  --sp-9:   96px;
  --sp-10:  128px;
}

/* ── 2. Bright Mode — Royal Gold & White Theme (Royal Mode) ── */
body.bright-mode,
[data-theme="bright"] {
  /* Rich golden metallic scale */
  --base-bg:         #060608;
  --surface-1:       #0A0A0E;
  --surface-2:       #101016;
  --surface-3:       #16161E;
  --card-bg:         rgba(20, 14, 5, 0.55);
  --card-hover:      rgba(35, 25, 10, 0.65);
  --graphite:        rgba(255, 255, 255, 0.15);
  --graphite-md:     rgba(255, 255, 255, 0.30);
  --graphite-lt:     rgba(255, 255, 255, 0.50);

  /* Gold highlights & accents - mapped to white & champagne glows for contrast */
  --gold:            #FF3366;
  --gold-light:      #FF6688;
  --gold-pale:       #FF99BB;
  --gold-dark:       #CC0033;
  --gold-glow:       rgba(255, 51, 102, 0.45);
  --gold-faint:      rgba(255, 51, 102, 0.10);
  --gold-border:     rgba(255, 51, 102, 0.28);

  /* High-contrast white typography */
  --ivory:           #FFFFFF;
  --ivory-dim:       rgba(255, 255, 255, 0.90);
  --ivory-muted:     rgba(255, 255, 255, 0.65);
  --ivory-faint:     rgba(255, 255, 255, 0.40);

  /* Page tokens */
  --page-bg:         #060608;
  --page-text:       #FFFFFF;
  --nav-bg:          rgba(10, 10, 14, 0.6);
  --nav-bg-scrolled: rgba(10, 10, 14, 0.95);
  --nav-border:      rgba(255, 51, 102, 0.14);
  --nav-border-scrolled: rgba(255, 51, 102, 0.28);
}

/* ── 3. Global Reset & Base ─────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--base-bg);
  color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  background-image: radial-gradient(circle at 50% 50%, #110B29 0%, #060608 100%);
  background-attachment: fixed;
}

/* Bright mode body — luxurious metallic flowing royal gold */
body.bright-mode {
  background-color: #B89332 !important;
  color: #FFFFFF !important;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 244, 214, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(253, 206, 86, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, #7C5205 0%, #C59A3F 35%, #F6E2A3 50%, #C59A3F 65%, #4E3406 100%) !important;
  background-size: 200% 200% !important;
  background-attachment: fixed !important;
  animation: goldFlow 15s ease infinite !important;
}

body.nav-open { overflow: hidden; }

/* ── 4. Custom Scrollbar ────────────────────────────────────── */
::-webkit-scrollbar               { width: 5px; }
::-webkit-scrollbar-track         { background: var(--base-bg); }
::-webkit-scrollbar-thumb         { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover   { background: var(--gold); }

body.bright-mode::-webkit-scrollbar-track  { background: #EDE4D3; }
body.bright-mode::-webkit-scrollbar-thumb  { background: #96681A; }
body.bright-mode::-webkit-scrollbar-thumb:hover { background: #B8841E; }

/* ── 5. Noise / Grain Texture Overlay ──────────────────────── */
.noise-overlay { position: relative; }
.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.90' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.38;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
body.bright-mode .noise-overlay::before { opacity: 0.20; }

/* ── 6. Dot/Line Grid Background ───────────────────────────── */
.bg-grid {
  background-image:
    linear-gradient(rgba(201,168,76,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
}
body.bright-mode .bg-grid {
  background-image:
    linear-gradient(rgba(150,104,26,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,104,26,0.12) 1px, transparent 1px) !important;
}

/* ── 7. Navbar ──────────────────────────────────────────────── */
#navbar {
  background-color: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  transition:
    background-color 400ms var(--ease-luxury),
    border-color     400ms var(--ease-luxury),
    backdrop-filter  400ms var(--ease-luxury),
    box-shadow       400ms var(--ease-luxury);
}

#navbar.scrolled {
  background-color: var(--nav-bg-scrolled);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--nav-border-scrolled);
  box-shadow:
    0 1px 0 rgba(201,168,76,0.12),
    0 4px 40px rgba(0,0,0,0.75);
}
body.bright-mode #navbar {
  background-color: rgba(255,252,244,0.85);
  border-color: rgba(160,120,32,0.18);
}
body.bright-mode #navbar.scrolled {
  background-color: rgba(255,252,244,0.97);
  box-shadow:
    0 1px 0 rgba(160,120,32,0.22),
    0 4px 40px rgba(0,0,0,0.10);
}

/* ── 8. Nav Links — underline draw-in ──────────────────────── */
.nav-link {
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-mid) var(--ease-luxury);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 350ms var(--ease-out-expo);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover          { color: var(--gold-light); }
.nav-link.active         { color: var(--gold); text-shadow: 0 0 20px var(--gold-glow); }

body.bright-mode .nav-link               { color: rgba(26,21,8,0.75); }
body.bright-mode .nav-link:hover         { color: var(--gold) !important; }
body.bright-mode .nav-link.active        { color: var(--gold) !important; text-shadow: none; }
body.bright-mode .nav-link::after        { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
body.bright-mode #navbar [class*="text-ivory"] { color: #1A1508 !important; }

/* ── 9. Skip-to-Content (accessibility) ────────────────────── */
.skip-to-content {
  position: absolute;
  top: -120%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #050A18;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.22s var(--ease-out-expo);
  white-space: nowrap;
}
.skip-to-content:focus { top: 0; }

/* ── 10. Theme Toggle Button ────────────────────────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-luxury);
  color: var(--gold);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 36px;
}
.theme-toggle:hover {
  background: var(--gold-faint);
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
  transform: translateY(-1px);
}
.theme-toggle svg { transition: transform 500ms var(--ease-out-expo); }
.theme-toggle:hover svg { transform: rotate(30deg); }
body.bright-mode .theme-toggle { border-color: rgba(160,120,32,0.35); color: var(--gold); }
body.bright-mode .theme-toggle:hover { background: rgba(160,120,32,0.12); }
@media (max-width: 768px) { .theme-toggle-label { display: none; } }

/* ── 11. Mobile Nav ─────────────────────────────────────────── */
.nav-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity    400ms var(--ease-luxury),
    transform  400ms var(--ease-luxury),
    visibility 400ms;
}
.nav-visible {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity    400ms var(--ease-luxury),
    transform  400ms var(--ease-luxury),
    visibility 400ms;
  -webkit-overflow-scrolling: touch;
}

body.bright-mode #mobile-nav {
  background-color: #F5F0E8 !important;
}
body.bright-mode #mobile-nav [class*="text-ivory"] { color: #1A1508 !important; }
body.bright-mode #mobile-nav .nav-link:hover  { color: var(--gold) !important; }
body.bright-mode #mobile-nav .nav-link.active { color: var(--gold) !important; }

/* ── 12. Typography Helpers ─────────────────────────────────── */
.font-display {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: "liga" 1, "kern" 1;
}
.font-body {
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.65;
}

body.bright-mode .font-display    { color: #0E0C06; }
body.bright-mode .font-body       { color: #2A2010; font-weight: 400; }
body.bright-mode h1, body.bright-mode h2, body.bright-mode h3,
body.bright-mode h4, body.bright-mode h5 { color: #0E0C06 !important; }
body.bright-mode p, body.bright-mode span,
body.bright-mode a, body.bright-mode li,
body.bright-mode label, body.bright-mode address { color: #1A1508; }
body.bright-mode [class*="text-ivory"] { color: #1A1508 !important; }

/* Gold stays gold, just deeper shade */
body.bright-mode [class*="text-gold"] { color: var(--gold) !important; }

/* ── 13. Global Link Transitions ────────────────────────────── */
a {
  transition: color var(--t-mid) var(--ease-luxury);
}
a:hover { color: var(--gold-light); }

/* Focus-visible gold outline */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── 14. Keyframe Animations ────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0);     }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1);    }
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1.00); }
  50%       { transform: scale(1.06); }
}

@keyframes pulse-ring {
  0%   { transform: translate(-50%, -50%) scale(1);    opacity: 0.55; }
  60%  { transform: translate(-50%, -50%) scale(1.06); opacity: 0.30; }
  100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.55; }
}

@keyframes shimmer {
  0%   { background-position: -250% center; }
  100% { background-position:  250% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0);     }
  50%       { transform: translateY(-10px); }
}

@keyframes marqueeScroll {
  0%   { transform: translate3d(0, 0, 0);    }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes servicesMarquee {
  0%   { transform: translate3d(0, 0, 0);    }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes goldFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
  0%   { background-position: 0px 0px; }
  100% { background-position: 300px 600px; }
}

@keyframes counterUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); opacity: 0.65; }
  50%       { box-shadow: 0 0 40px var(--gold-glow); opacity: 1.00; }
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 1.00; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.45; transform: translateY(0);  }
  50%       { opacity: 1.00; transform: translateY(6px);}
}

@keyframes pageReveal {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes spin {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* ── 15. Hero Section ───────────────────────────────────────── */
.hero-section {
  background-color: var(--base-bg);
  overflow: hidden;
}

/* Hero background image — slow zoom-breathe */
.hero-bg-img {
  opacity: 0.28;
  animation: heroZoom 20s ease-in-out infinite;
  will-change: transform;
}

/* Hero rings — pulsing */
.hero-ring {
  animation: pulse-ring 8s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
}
.hero-ring:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.hero-ring:nth-child(3) { animation-delay: -6s; animation-duration: 12s; }

/* Hero geo / decorative rings */
.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  animation: float 8s ease-in-out infinite;
}
.geo-ring:nth-child(2) { animation-delay: -2s; animation-duration: 10s; }
.geo-ring:nth-child(3) { animation-delay: -4s; animation-duration: 12s; }

/* Bright mode hero */
body.bright-mode .hero-dark-bg   { display: none !important; }
body.bright-mode .hero-bright-bg { display: block !important; }
body.bright-mode .hero-section   { background-color: #EAE4D4 !important; }
body.bright-mode .geo-ring       { border-color: rgba(160,120,32,0.18) !important; opacity: 0.6; }
body.bright-mode #hero [class*="border-gold"] { border-color: rgba(160,120,32,0.28) !important; }
body.bright-mode #hero .bg-gradient-to-t      { opacity: 0 !important; }

/* ── 16. Hero Entry Animations ──────────────────────────────── */
.hero-anim-label    { animation: slideDown  700ms var(--ease-out-expo)  100ms both; }
.hero-anim-headline { animation: heroFadeUp 900ms var(--ease-out-expo)  250ms both; }
.hero-anim-sub      { animation: heroFadeUp 800ms var(--ease-out-expo)  500ms both; }
.hero-anim-cta      { animation: heroFadeUp 700ms var(--ease-out-expo)  700ms both; }
.hero-anim-scroll   { animation: fadeIn    1000ms ease-in-out          1100ms both; }

main { animation: pageReveal 600ms var(--ease-out-expo) both; }

/* ── 17. Gold Shimmer Text ──────────────────────────────────── */
.text-gold-shimmer {
  background: linear-gradient(90deg,
    var(--gold-dark) 0%,
    var(--gold)      20%,
    var(--gold-light) 40%,
    var(--gold-pale)  50%,
    var(--gold-light) 60%,
    var(--gold)      80%,
    var(--gold-dark) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

body.bright-mode .text-gold-shimmer {
  background: linear-gradient(90deg,
    #7A5A10 0%, #A07820 25%, #C09030 45%,
    #D4A848 55%, #C09030 65%, #A07820 80%, #7A5A10 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-ivory {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 18. Button Styles ──────────────────────────────────────── */

/* Outline button — ink-spread from left on hover */
.btn-outline {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  transition:
    color        350ms var(--ease-luxury),
    transform    300ms var(--ease-luxury),
    box-shadow   300ms var(--ease-luxury),
    border-color 300ms var(--ease-luxury);
  z-index: 0;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms var(--ease-luxury);
  z-index: -1;
}
.btn-outline:hover::before { transform: scaleX(1); }
.btn-outline:hover {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
  box-shadow: 0 0 28px var(--gold-glow);
  transform: translateY(-2px);
  border-color: var(--gold-light);
}
/* Ensure all children (spans) also get dark text on hover */
.btn-outline:hover span,
.btn-outline:hover * {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
.btn-outline:active { transform: translateY(1px); }

/* Primary CTA — gold gradient fill */
.hero-cta-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
  font-weight: 600;
  box-shadow: 0 4px 28px var(--gold-glow);
  border: 1px solid var(--gold);
  transition: all var(--t-mid) var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.hero-cta-primary span,
.hero-cta-primary * {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 44px rgba(201,168,76,0.55), 0 2px 12px rgba(201,168,76,0.30);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
.hero-cta-primary:active { transform: translateY(1px); }

/* Secondary CTA — outline variant */
.hero-cta-secondary {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  border: 1px solid var(--gold-border);
  transition: all var(--t-mid) var(--ease-luxury);
  z-index: 0;
}
.hero-cta-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms var(--ease-luxury);
  z-index: -1;
}
.hero-cta-secondary:hover::before { transform: scaleX(1); }
.hero-cta-secondary:hover {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
  border-color: var(--gold);
  box-shadow: 0 0 28px var(--gold-glow);
  transform: translateY(-2px);
}
.hero-cta-secondary:hover span,
.hero-cta-secondary:hover * {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}

/* Magnetic button — JS drives transform */
.btn-magnetic {
  transition: transform 200ms var(--ease-out-expo);
  will-change: transform;
}

/* Bright mode buttons */
body.bright-mode .btn-outline {
  color: #1A1508 !important;
  border-color: rgba(160,120,32,0.55) !important;
}
body.bright-mode .btn-outline:hover {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
  border-color: var(--gold) !important;
}
body.bright-mode .btn-outline:hover span,
body.bright-mode .btn-outline:hover * {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
body.bright-mode .btn-outline::before {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

body.bright-mode .hero-cta-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
  border-color: var(--gold) !important;
  box-shadow: 0 4px 24px rgba(160,120,32,0.40) !important;
}
body.bright-mode .hero-cta-primary span,
body.bright-mode .hero-cta-primary * {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
body.bright-mode .hero-cta-primary:hover {
  box-shadow: 0 8px 40px rgba(160,120,32,0.55) !important;
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
body.bright-mode .hero-cta-secondary {
  color: #1A1508 !important;
  border-color: rgba(160,120,32,0.55) !important;
}
body.bright-mode .hero-cta-secondary:hover {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
body.bright-mode .hero-cta-secondary:hover span,
body.bright-mode .hero-cta-secondary:hover * {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}

/* Gold bg buttons */
a.bg-gold, button.bg-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
  font-weight: 600;
  transition: all var(--t-mid) var(--ease-luxury) !important;
}
a.bg-gold:hover, button.bg-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  box-shadow: 0 8px 40px var(--gold-glow), 0 2px 12px rgba(201,168,76,0.30);
  transform: translateY(-2px) !important;
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
body.bright-mode a.bg-gold, body.bright-mode button.bg-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}

/* ── 19. Premium Card ───────────────────────────────────────── */
.card-premium {
  position: relative;
  background: var(--card-bg);
  border-top: 3px solid var(--gold);
  border-left: 1px solid rgba(201,168,76,0.18);
  border-right: 1px solid rgba(201,168,76,0.10);
  border-bottom: 1px solid rgba(201,168,76,0.10);
  border-radius: 4px;
  transition:
    transform          400ms var(--ease-out-expo),
    box-shadow         400ms var(--ease-out-expo),
    background-color   350ms var(--ease-luxury),
    border-color       350ms var(--ease-luxury);
}
.card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.35;
}
.card-premium::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 5px;
  border: 1px solid transparent;
  background: linear-gradient(135deg,
    rgba(201,168,76,0.00) 0%,
    rgba(201,168,76,0.32) 100%
  ) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 400ms ease;
}
.card-premium:hover {
  transform: translateY(-8px);
  background-color: var(--card-hover);
  border-top-color: var(--gold-light);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.60),
    0 0 0 1px rgba(201,168,76,0.22),
    0 0 50px rgba(201,168,76,0.10);
}
.card-premium:hover::after { opacity: 1; }

/* Card icon gold drop-shadow */
.card-premium .text-gold {
  color: var(--gold) !important;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.35));
}
.card-premium svg { transition: stroke var(--t-mid) ease; }

/* Bright mode cards */
body.bright-mode .card-premium {
  background: #FFFCF4 !important;
  border-top-color: var(--gold) !important;
  border-left-color: rgba(160,120,32,0.28) !important;
  border-right-color: rgba(160,120,32,0.18) !important;
  border-bottom-color: rgba(160,120,32,0.18) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08), 0 0 0 1px rgba(160,120,32,0.12) !important;
}
body.bright-mode .card-premium:hover {
  background: #FFF8E8 !important;
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14), 0 0 0 1px rgba(160,120,32,0.38) !important;
  border-top-color: var(--gold-light) !important;
}
body.bright-mode .card-premium h3 { color: #0E0C06 !important; }
body.bright-mode .card-premium svg { stroke: var(--gold) !important; }

/* ── 20. Glass Panel ────────────────────────────────────────── */
.glass-panel {
  background: rgba(8,14,34,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(240,235,216,0.07),
    0 4px 28px rgba(0,0,0,0.45);
  transition: all var(--t-mid) var(--ease-luxury);
}
.glass-panel.border-l-2:hover {
  border-left-color: var(--gold) !important;
  background: rgba(14,20,42,0.88) !important;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.18), 0 10px 46px rgba(0,0,0,0.44);
  transform: translateY(-3px);
}

body.bright-mode .glass-panel {
  background: rgba(255,252,244,0.88) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(160,120,32,0.35) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 4px 28px rgba(0,0,0,0.10) !important;
}
body.bright-mode .glass-panel h2,
body.bright-mode .glass-panel h3   { color: #0E0C06 !important; }
body.bright-mode .glass-panel p    { color: #1A1508 !important; }
body.bright-mode .glass-panel address a,
body.bright-mode .glass-panel address span { color: #1A1508 !important; }
body.bright-mode .glass-panel.border-l-2:hover {
  background: rgba(255,252,244,0.96) !important;
  box-shadow: 0 10px 50px rgba(0,0,0,0.12), 0 0 0 1px rgba(160,120,32,0.22) !important;
}

/* ── 21. Scroll Reveal Animations ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity   800ms var(--ease-out-expo),
    transform 800ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible,
.reveal--visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity   800ms var(--ease-out-expo),
    transform 800ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-left.visible,
.reveal-left.reveal--visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity   800ms var(--ease-out-expo),
    transform 800ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-right.visible,
.reveal-right.reveal--visible { opacity: 1; transform: translateX(0); }

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity   800ms var(--ease-out-expo),
    transform 800ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-up.visible,
.reveal-up.reveal--visible { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity   700ms var(--ease-out-expo),
    transform 700ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-scale.visible,
.reveal-scale.reveal--visible { opacity: 1; transform: scale(1); }

/* Stagger support via inline CSS vars */
.reveal:nth-child(1), .reveal-up:nth-child(1) { --reveal-delay:   0ms; }
.reveal:nth-child(2), .reveal-up:nth-child(2) { --reveal-delay: 100ms; }
.reveal:nth-child(3), .reveal-up:nth-child(3) { --reveal-delay: 200ms; }
.reveal:nth-child(4), .reveal-up:nth-child(4) { --reveal-delay: 300ms; }
.reveal:nth-child(5), .reveal-up:nth-child(5) { --reveal-delay: 400ms; }

/* ── 22. Section Divider & Ghost Number ─────────────────────── */
.section-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.40), transparent);
}

/* Section separator lines via ::after */
section { position: relative; }
section[id]::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1120px, calc(100vw - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.20), transparent);
  pointer-events: none;
  z-index: 0;
}
body.bright-mode section[id]::after {
  background: linear-gradient(90deg, transparent, rgba(160,120,32,0.18), transparent) !important;
}

/* Ghost section number — huge Cormorant, faint gold */
.section-ghost-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 700;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  position: absolute;
  top: -0.1em;
  left: -0.05em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
body.bright-mode .section-ghost-num { color: rgba(160,120,32,0.07); }

/* Legacy alias */
.section-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  position: absolute;
  top: -12px;
  left: -8px;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
body.bright-mode .section-number { color: rgba(160,120,32,0.08) !important; }

/* ── 23. Section Background Variants ───────────────────────── */
.bg-section-alt  { background-color: var(--surface-2); }
.bg-section-deep {
  background: linear-gradient(180deg,
    var(--base-bg) 0%, var(--surface-1) 50%, var(--base-bg) 100%
  );
}

.spotlight { position: relative; }
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}

body.bright-mode .bg-section-alt  { background-color: #F0EAD9; }
body.bright-mode .bg-section-deep { background: #FAF6EE; }
body.bright-mode .bg-black        { background-color: #F5F0E8 !important; }
body.bright-mode section.bg-black { background-color: #EEE8D8 !important; }
body.bright-mode main > section.bg-black:nth-child(odd)  { background-color: #F5F0E8 !important; }
body.bright-mode main > section.bg-black:nth-child(even) { background-color: #EEE8D8 !important; }
body.bright-mode section[style*="background: linear-gradient"] {
  background: linear-gradient(180deg, #F0E9DB 0%, #EAE2D0 100%) !important;
}
body.bright-mode [class*="bg-[#1"] { background-color: #EEE8D8 !important; }
body.bright-mode [class*="bg-[#0"] { background-color: #EEE8D8 !important; }
body.bright-mode .bg-\[#141412\]   { background-color: #EEE8D8 !important; }
body.bright-mode .bg-\[#0D0C0A\]   { background-color: #E8E2D0 !important; }
body.bright-mode .bg-\[#060605\],
body.bright-mode .bg-\[#0C0B08\]   { background-color: #E0D9C8 !important; }
body.bright-mode section[style*="#100C08"],
body.bright-mode section[style*="#130E08"],
body.bright-mode section[style*="#0C0B08"],
body.bright-mode section[style*="#0F0D09"],
body.bright-mode section[style*="#080807"],
body.bright-mode section[style*="#0D0B07"] {
  background: linear-gradient(180deg, #F0E9DB 0%, #EAE2D0 100%) !important;
}

/* ── 24. Form Styles ────────────────────────────────────────── */
.form-group { position: relative; }

.form-label {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--ivory);
  padding: 14px 18px;
  border-radius: 3px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  transition: all var(--t-mid) ease;
  outline: none;
  appearance: none;
}
.form-input::placeholder { color: var(--ivory-faint); }
.form-input:hover:not(:focus) {
  border-color: rgba(201,168,76,0.50);
  background: var(--graphite);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(201,168,76,0.10);
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.18), 0 0 24px rgba(201,168,76,0.14);
  background: var(--graphite-md);
  transform: translateY(-1px);
}
.form-input:focus::placeholder { color: rgba(240,235,216,0.22); }
.form-input.error { border-color: #C0392B; }
.form-input.success { border-color: #27AE60; }

.form-textarea {
  min-height: 152px;
  resize: vertical;
  line-height: 1.75;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 44px;
  cursor: pointer;
  appearance: none;
}
.form-select option,
.form-select optgroup { background-color: var(--surface-2); color: var(--ivory); }
.form-select option:hover { background-color: rgba(201,168,76,0.15); }

.form-error {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  color: #e05555;
  margin-top: 6px;
  display: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.form-error.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Autofill dark mode */
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  -webkit-text-fill-color: var(--ivory);
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0 1000px var(--surface-2) inset;
}

/* Bright mode forms */
body.bright-mode .form-input,
body.bright-mode .form-textarea {
  background: #FFFCF4 !important;
  border-color: rgba(160,120,32,0.38) !important;
  color: #1A1508 !important;
}
body.bright-mode .form-input::placeholder { color: rgba(26,21,8,0.38) !important; }
body.bright-mode .form-input:hover:not(:focus) {
  border-color: rgba(160,120,32,0.55) !important;
  background: #FFFCF4 !important;
}
body.bright-mode .form-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(160,120,32,0.18), 0 4px 24px rgba(160,120,32,0.14) !important;
  background: #FFFFFF !important;
}
body.bright-mode .form-label { color: var(--gold) !important; font-weight: 700 !important; }
body.bright-mode .form-select {
  background-color: #FFFFFF !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A07820' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-size: 16px 16px !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  border-color: rgba(160,120,32,0.35) !important;
  color: #1A1508 !important;
}
body.bright-mode .form-select option,
body.bright-mode .form-select optgroup { background-color: #FFFFFF !important; color: #1A1508 !important; }
body.bright-mode input:-webkit-autofill,
body.bright-mode textarea:-webkit-autofill,
body.bright-mode select:-webkit-autofill {
  -webkit-text-fill-color: #1A1508 !important;
  box-shadow: 0 0 0 1000px #FFFCF4 inset !important;
}
body.bright-mode .text-error { color: #b82222 !important; }
body.bright-mode #form-error-summary { color: #b82222 !important; }

/* ── 25. Process Timeline ───────────────────────────────────── */
.process-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201,168,76,0.68) 8%,
    rgba(201,168,76,0.68) 92%,
    transparent 100%
  );
  transform: translateX(-50%);
}
.process-timeline-dot {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  border: 3px solid var(--base-bg);
  box-shadow: 0 0 0 1px var(--gold), 0 0 22px rgba(201,168,76,0.65);
}
.process-step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.90;
}

body.bright-mode .process-timeline-line {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(160,120,32,0.55) 8%,
    rgba(160,120,32,0.55) 92%,
    transparent
  ) !important;
}
body.bright-mode .process-timeline-dot {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  border-color: #FAF6EE !important;
  box-shadow: 0 0 0 1px var(--gold), 0 0 18px rgba(160,120,32,0.45) !important;
}

/* ── 26. Stats Counter ──────────────────────────────────────── */
.stat-counter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(201,168,76,0.20);
  border-radius: 4px;
  background: var(--card-bg);
  transition:
    border-color     400ms ease,
    background-color 400ms ease,
    box-shadow       400ms ease,
    transform        400ms var(--ease-out-expo);
}
.stat-item:hover {
  border-color: rgba(201,168,76,0.50);
  background: var(--card-hover);
  box-shadow: 0 0 32px rgba(201,168,76,0.10);
  transform: translateY(-3px);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.55), transparent);
}

body.bright-mode .stat-item {
  background: #FFFCF4 !important;
  border-color: rgba(160,120,32,0.25) !important;
}
body.bright-mode .stat-item:hover {
  background: #FFF8E8 !important;
  border-color: rgba(160,120,32,0.48) !important;
  box-shadow: 0 8px 28px rgba(160,120,32,0.14) !important;
}
body.bright-mode .stat-divider {
  background: linear-gradient(to bottom, transparent, rgba(160,120,32,0.50), transparent) !important;
}

/* ── 27. Testimonial Styles ─────────────────────────────────── */
.testimonial-card {
  background: rgba(8,14,34,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(240,235,216,0.07),
    0 4px 28px rgba(0,0,0,0.44);
  position: relative;
  transition: all var(--t-mid) var(--ease-luxury);
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 12px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.22);
  transform: translateY(-4px);
}

/* Testimonial marquee container */
.testimonial-marquee {
  overflow: hidden;
  position: relative;
}
.testimonial-track {
  display: flex;
  flex-direction: row;
  gap: 24px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
  will-change: transform;
}
.testimonial-track:hover { animation-play-state: paused; }

/* Star rating */
.star-rating { color: var(--gold); letter-spacing: 2px; }

body.bright-mode .testimonial-card {
  background: rgba(255,252,244,0.88) !important;
  border-color: rgba(160,120,32,0.30) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10) !important;
}
body.bright-mode .testimonial-card::before { color: var(--gold); opacity: 0.30; }
body.bright-mode .testimonial-card:hover {
  border-color: rgba(160,120,32,0.55) !important;
  box-shadow: 0 12px 50px rgba(0,0,0,0.12) !important;
}

/* ── 28. Services Category Label ────────────────────────────── */
.category-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.category-tag {
  display: inline-block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(201,168,76,0.40);
  border-radius: 2px;
  background: rgba(201,168,76,0.10);
  transition: all var(--t-fast) ease;
}
.category-tag:hover {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.65);
  transform: translateY(-1px);
}

/* Service card grid stagger */
.service-card-grid > * { transition-delay: var(--reveal-delay, 0ms); }

body.bright-mode .category-tag {
  color: var(--gold) !important;
  border-color: rgba(160,120,32,0.45) !important;
  background: rgba(160,120,32,0.10) !important;
}
body.bright-mode .category-tag:hover {
  background: rgba(160,120,32,0.18) !important;
  border-color: rgba(160,120,32,0.65) !important;
}

/* ── 29. Marquee / Ticker ───────────────────────────────────── */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  width: max-content;
  white-space: nowrap;
  animation: servicesMarquee 28s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track > span { flex-shrink: 0; }

/* Bright mode marquee */
body.bright-mode #services-ticker {
  background: linear-gradient(180deg, #EEE8D6 0%, #E6E0CE 100%) !important;
}
body.bright-mode #services-ticker .h-\[1px\] {
  background: linear-gradient(90deg, transparent, rgba(160,120,32,0.30), transparent) !important;
}
body.bright-mode #services-ticker [class*="text-gold"]      { color: var(--gold) !important; }
body.bright-mode #services-ticker [class*="text-gold\/35"]  { color: rgba(160,120,32,0.45) !important; }
body.bright-mode .marquee-track                             { color: var(--gold) !important; }

/* ── 30. Custom Cursor ──────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 80ms ease, background-color 200ms ease;
  will-change: left, top;
}
#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 200ms ease, height 200ms ease, border-color 200ms ease, transform 150ms ease;
  will-change: left, top;
}
/* Hover state — ring expands, dot shrinks */
.cursor-hover #cursor-ring {
  width: 64px;
  height: 64px;
  border-color: rgba(201,168,76,0.55);
}
.cursor-hover #cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

/* Cursor glow orb */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 65%);
  transition: left 0.08s ease-out, top 0.08s ease-out;
  will-change: left, top;
}
body.bright-mode .cursor-glow {
  background: radial-gradient(circle, rgba(160,120,32,0.04) 0%, transparent 65%);
}

/* ── 31. Scroll Progress Bar ────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 60;
  transition: width 80ms linear;
  pointer-events: none;
}
body.bright-mode #scroll-progress {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

/* ── 32. Floating CTA ───────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #050A18;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  z-index: 55;
  box-shadow:
    0 6px 32px rgba(201,168,76,0.45),
    0 2px 10px rgba(0,0,0,0.30);
  transform: translateY(80px);
  opacity: 0;
  transition:
    opacity    400ms var(--ease-luxury),
    transform  400ms var(--ease-out-expo),
    box-shadow 300ms ease;
  pointer-events: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.floating-cta:hover {
  box-shadow:
    0 10px 48px rgba(201,168,76,0.60),
    0 4px 16px rgba(0,0,0,0.30);
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
@media (max-width: 640px) {
  .floating-cta { bottom: 20px; right: 16px; padding: 12px 18px; font-size: 11px; }
}

/* ── 33. Decorative Elements ────────────────────────────────── */
.gold-line {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-accent {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.separator-line {
  display: flex;
  align-items: center;
  gap: 16px;
}
.separator-line::before,
.separator-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.45));
}
.separator-line::after {
  background: linear-gradient(90deg, rgba(201,168,76,0.45), transparent);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-mid) var(--ease-luxury), transform var(--t-mid) var(--ease-luxury);
}
.ghost-link .ghost-arrow {
  display: inline-block;
  transition: transform var(--t-mid) var(--ease-out-expo);
}
.ghost-link:hover              { color: var(--gold); transform: translateX(3px); }
.ghost-link:hover .ghost-arrow { transform: translateX(5px); }

body.bright-mode .ghost-link       { color: rgba(26,21,8,0.82) !important; }
body.bright-mode .ghost-link:hover { color: var(--gold) !important; }
body.bright-mode .ghost-link .ghost-arrow { color: var(--gold) !important; }

/* Image overlay */
.img-overlay { position: relative; }
.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.50) 0%,
    rgba(0,0,0,0.22) 55%,
    rgba(201,168,76,0.05) 100%
  );
  pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator-line { animation: scrollPulse 2s ease-in-out infinite; }
body.bright-mode .scroll-indicator-line span { color: rgba(160,120,32,0.80) !important; }
body.bright-mode .scroll-indicator-line div  {
  background: linear-gradient(to bottom, rgba(160,120,32,0.70), transparent) !important;
}

/* Hero glow orb */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlow 4s ease-in-out infinite;
}

/* ── 34. Contact Social Links ───────────────────────────────── */
.contact-social {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 3px;
  color: var(--ivory-muted);
  transition: all var(--t-mid) var(--ease-luxury);
}
.contact-social:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.10);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201,168,76,0.25);
}

body.bright-mode .contact-social {
  color: rgba(26,21,8,0.65) !important;
  border-color: rgba(160,120,32,0.35) !important;
}
body.bright-mode .contact-social:hover {
  color: var(--gold) !important;
  border-color: rgba(160,120,32,0.70) !important;
  background-color: rgba(160,120,32,0.10) !important;
  box-shadow: 0 6px 18px rgba(160,120,32,0.28) !important;
}

/* Footer social icons */
.footer-social-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.24);
  border-radius: 3px;
  color: var(--ivory-faint);
  transition:
    color         var(--t-mid) var(--ease-luxury),
    border-color  var(--t-mid) var(--ease-luxury),
    background    var(--t-mid) var(--ease-luxury),
    transform     250ms var(--ease-out-expo);
}
.footer-social-icon:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.60);
  background-color: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

body.bright-mode .footer-social-icon {
  color: rgba(26,21,8,0.50) !important;
  border-color: rgba(160,120,32,0.28) !important;
}
body.bright-mode .footer-social-icon:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  background-color: rgba(160,120,32,0.10) !important;
}

/* ── 35. Footer ─────────────────────────────────────────────── */
footer {
  position: relative;
  margin-top: -2px;
  padding-top: 2px;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}
footer a { transition: color var(--t-mid) var(--ease-luxury); }

body.bright-mode footer,
body.bright-mode footer > * {
  background-color: #DDD7C5 !important;
  margin-top: -2px !important;
}
body.bright-mode footer::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent) !important;
}
body.bright-mode footer a     { color: rgba(26,21,8,0.72) !important; }
body.bright-mode footer a:hover { color: #0E0C06 !important; }
body.bright-mode footer p     { color: rgba(26,21,8,0.62) !important; }
body.bright-mode footer span  { color: rgba(26,21,8,0.55) !important; }
body.bright-mode footer h3    { color: var(--gold) !important; }
body.bright-mode footer .text-gold   { color: var(--gold) !important; }
body.bright-mode footer svg          { stroke: var(--gold) !important; }
body.bright-mode footer .border-t    { border-color: rgba(160,120,32,0.20) !important; }
body.bright-mode footer .text-gold\/25 { color: rgba(160,120,32,0.25) !important; }
body.bright-mode footer .bg-\[#060605\],
body.bright-mode footer [style*="background: #060605"] { background: #D0CAB8 !important; }
body.bright-mode .bg-graphite { background-color: var(--card-bg) !important; }

/* ── 36. Comprehensive Bright Mode — Section & Component Overrides */

/* Generic text utility overrides */
body.bright-mode * { color: inherit; }
body.bright-mode .text-ivory    { color: #1A1508 !important; }
body.bright-mode .text-ivory\/60 { color: rgba(26,21,8,0.60) !important; }
body.bright-mode .text-ivory\/70 { color: rgba(26,21,8,0.70) !important; }
body.bright-mode .text-ivory\/75 { color: rgba(26,21,8,0.75) !important; }
body.bright-mode .text-ivory\/80 { color: rgba(26,21,8,0.80) !important; }
body.bright-mode .text-ivory\/82 { color: rgba(26,21,8,0.82) !important; }
body.bright-mode .text-ivory\/85 { color: rgba(26,21,8,0.85) !important; }
body.bright-mode .text-ivory\/90 { color: rgba(26,21,8,0.90) !important; }
body.bright-mode .text-ivory\/92 { color: rgba(26,21,8,0.92) !important; }
body.bright-mode [class*="text-ivory"] { color: #1A1508 !important; }

/* Gold stays gold (deeper for contrast) */
body.bright-mode .text-gold        { color: var(--gold) !important; }
body.bright-mode .text-gold\/40    { color: rgba(160,120,32,0.40) !important; }
body.bright-mode .text-gold\/70    { color: rgba(160,120,32,0.70) !important; }
body.bright-mode [class*="text-gold"] { color: var(--gold) !important; }

/* Gold decorative elements */
body.bright-mode [class*="bg-gold"]      { background-color: var(--gold) !important; }
body.bright-mode [class*="border-gold"]  { border-color: rgba(160,120,32,0.35) !important; }
body.bright-mode .w-\[1px\].bg-gold\/30  { background-color: rgba(160,120,32,0.30) !important; }
body.bright-mode [class*="bg-gradient-to-r"][class*="gold"],
body.bright-mode [class*="bg-gradient-to-l"][class*="gold"] {
  background: linear-gradient(90deg, transparent, rgba(160,120,32,0.60), transparent) !important;
}
body.bright-mode .border-t,
body.bright-mode [style*="border-top"] { border-color: rgba(160,120,32,0.18) !important; }
body.bright-mode [class*="border-graphite"] { border-color: rgba(26,21,8,0.12) !important; }

/* Specific section backgrounds */
body.bright-mode #hero              { background-color: #EAE4D4 !important; }
body.bright-mode #agency-intro      { background: linear-gradient(180deg, #F0E9DB 0%, #EAE2D0 100%) !important; }
body.bright-mode #services-overview { background: linear-gradient(180deg, #F0E9DB 0%, #EAE2D0 100%) !important; }
body.bright-mode #why-nexora        { background: linear-gradient(180deg, #F0E9DB 0%, #EAE2D0 100%) !important; }
body.bright-mode #process-preview   { background: linear-gradient(180deg, #F5F0E8 0%, #EEE8D6 100%) !important; }
body.bright-mode #home-cta          { background: linear-gradient(180deg, #EEE8D6 0%, #E8E2D0 100%) !important; }
body.bright-mode #services-ticker   { background: linear-gradient(180deg, #EEE8D6 0%, #E6E0CE 100%) !important; }
body.bright-mode #about-cta         { background: #EEE8D8 !important; }
body.bright-mode section[aria-labelledby="consultation-cta-heading"]  { background: #E8E2D0 !important; }
body.bright-mode section[aria-labelledby="process-cta-heading"]        { background: #E8E2D0 !important; }
body.bright-mode section[aria-labelledby="services-cta-heading"]       { background: #E8E2D0 !important; }

/* Section overlays / image layers in bright mode */
body.bright-mode #hero img                     { opacity: 0.08 !important; filter: grayscale(20%); }
body.bright-mode #why-nexora img,
body.bright-mode #home-cta img                 { opacity: 0.04 !important; }
body.bright-mode section.noise-overlay img     { opacity: 0.08 !important; filter: grayscale(25%); }
body.bright-mode .bg-gradient-to-t             { opacity: 0 !important; }
body.bright-mode .bg-gradient-to-b.from-black  { opacity: 0 !important; }
body.bright-mode section .absolute.inset-0[class*="bg-gradient-to-b"],
body.bright-mode section .absolute.inset-0[class*="from-black"],
body.bright-mode section .absolute.inset-0[class*="via-black"] { opacity: 0 !important; }
body.bright-mode section .absolute.inset-0.bg-gradient-to-b    { opacity: 0 !important; }
/* Keep section::after separators */
body.bright-mode section[id]::after            { opacity: 1 !important; }

/* Decorative inline style elements in bright mode */
body.bright-mode [style*="rgba(201,168,76,0.10)"] { opacity: 0.35 !important; }
body.bright-mode [style*="rgba(201,168,76,0.14)"] { opacity: 0.35 !important; }
body.bright-mode [style*="rgba(201,168,76,0.42)"] { background: rgba(160,120,32,0.28) !important; }
body.bright-mode #home-cta .geo-ring           { border-color: rgba(160,120,32,0.12) !important; }
body.bright-mode #about-cta .rounded-full      { border-color: rgba(160,120,32,0.12) !important; }

/* Nav — bright overrides */
body.bright-mode header a        { color: #1A1508; }
body.bright-mode header button.theme-toggle { color: var(--gold); }
body.bright-mode header [class*="text-ivory"] { color: #1A1508 !important; }
body.bright-mode header .text-gold  { color: var(--gold) !important; }

/* Aside panels */
body.bright-mode aside h2         { color: #0E0C06 !important; }
body.bright-mode aside p          { color: rgba(26,21,8,0.78) !important; }
body.bright-mode aside [class*="text-ivory"] { color: #1A1508 !important; }
body.bright-mode aside [class*="text-gold"]  { color: var(--gold) !important; }
body.bright-mode aside > div p    { color: var(--gold) !important; }

/* Misc bright mode tweaks */
body.bright-mode .section-number  { color: rgba(160,120,32,0.08) !important; }
body.bright-mode .text-gold\/\[0\.05\] { color: rgba(160,120,32,0.07) !important; }
body.bright-mode .hover\:bg-graphite\/25:hover { background-color: rgba(160,120,32,0.06) !important; }
body.bright-mode .bg-graphite\/10,
body.bright-mode .bg-graphite\/20  { background: rgba(160,120,32,0.06) !important; }
body.bright-mode .border-gold\/30,
body.bright-mode .border-gold\/40  { border-color: rgba(160,120,32,0.28) !important; }
body.bright-mode .rounded-full.border.border-gold\/20,
body.bright-mode .rounded-full.border.border-gold\/40  { border-color: rgba(160,120,32,0.28) !important; }
body.bright-mode .rounded-full.bg-gold\/5 { background: rgba(160,120,32,0.08) !important; }
body.bright-mode .border-l-4.border-gold,
body.bright-mode .border-l-2.border-gold  { border-color: var(--gold) !important; }
body.bright-mode .border-t-\[3px\].border-gold,
body.bright-mode [class*="border-t-"][class*="border-gold"] {
  background: #FFFCF4 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
body.bright-mode .bg-graphite-dark,
body.bright-mode .bg-\[#14120C\]  { background-color: #EEE8D8 !important; }
body.bright-mode [class*="bg-\[rgba(201"] { background-color: rgba(160,120,32,0.04) !important; }
body.bright-mode .marquee-track [class*="text-gold\/40"],
body.bright-mode .marquee-track [class*="text-gold\/70"] { color: rgba(160,120,32,0.55) !important; }
body.bright-mode .font-display.font-bold.text-gold { color: var(--gold) !important; }
body.bright-mode #agency-intro .text-ivory { color: rgba(26,21,8,0.70) !important; }
body.bright-mode .hero-anim-scroll { color: rgba(26,21,8,0.65) !important; }
body.bright-mode .hero-stats > div { border-color: rgba(160,120,32,0.25) !important; }
body.bright-mode #enquiry-form     { background: rgba(255,252,244,0.95) !important; border-color: rgba(160,120,32,0.22) !important; }

/* ── 37. Bright Mode — Form Success & Misc ──────────────────── */
body.bright-mode .form-textarea        { background: #FFFCF4 !important; color: #1A1508 !important; }
body.bright-mode #form-success         { background: transparent !important; }
body.bright-mode #form-success h3      { color: #0E0C06 !important; }
body.bright-mode #form-success p       { color: #1A1508 !important; }
body.bright-mode #form-reset-btn       { color: var(--gold) !important; border-color: rgba(160,120,32,0.38) !important; }
body.bright-mode #form-reset-btn:hover { border-color: var(--gold) !important; background-color: rgba(160,120,32,0.08) !important; }

/* Bright mode — contact page hero */
body.bright-mode #contact-hero-title   { color: #0E0C06 !important; }
body.bright-mode section[aria-labelledby="contact-hero-title"] p { color: rgba(26,21,8,0.78) !important; }

/* Bright mode — consultation CTA shimmer text */
body.bright-mode section[aria-labelledby="consultation-cta-heading"] h2 span {
  background: linear-gradient(90deg, #7A5A10 0%, #A07820 50%, #7A5A10 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Bright mode — glass panel address */
body.bright-mode .glass-panel address .text-gold   { color: var(--gold) !important; }
body.bright-mode .glass-panel address [class*="text-gold"] { color: var(--gold) !important; }
body.bright-mode .glass-panel address a span       { color: #1A1508 !important; }
body.bright-mode .glass-panel .text-gold svg       { stroke: var(--gold) !important; }

/* Bright mode — 404 page */
body.bright-mode main[aria-labelledby="error-heading"] { background: #FAF6EE !important; }
body.bright-mode main[aria-labelledby="error-heading"] h1 { color: rgba(160,120,32,0.18) !important; }
body.bright-mode main[aria-labelledby="error-heading"] h2 { color: #0E0C06 !important; }
body.bright-mode main[aria-labelledby="error-heading"] p  { color: rgba(26,21,8,0.62) !important; }

/* Bright mode — nav link underline */
body.bright-mode .nav-link::after { background: linear-gradient(90deg, var(--gold), var(--gold-light)) !important; }
body.bright-mode .nav-link.active { color: var(--gold) !important; text-shadow: none !important; }

/* Bright mode — process dot border */
body.bright-mode .process-timeline-dot { border-color: #FAF6EE !important; }

/* Bright mode — hero stat borders */
body.bright-mode #hero [class*="border-gold"] { border-color: rgba(160,120,32,0.28) !important; }

/* ── 38. Scroll Indicator ───────────────────────────────────── */
.scroll-indicator-line { animation: scrollPulse 2s ease-in-out infinite; }

/* ── 39. Hero Stats ─────────────────────────────────────────── */
.hero-stats {
  display: inline-flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat-label { padding-bottom: 12px; }

/* ── 40. Form Submit Loading ────────────────────────────────── */
.contact-submit-btn {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
.contact-submit-btn span,
.contact-submit-btn * {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
.contact-submit-btn:hover {
  color: #050A18 !important;
  -webkit-text-fill-color: #050A18 !important;
}
.contact-submit-btn:disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.contact-submit-btn .animate-spin { animation: spin 0.8s linear infinite; }

/* ── 41. Form Success Check Icon ───────────────────────────── */
#form-success svg       { filter: drop-shadow(0 0 8px rgba(201,168,76,0.38)); }
body.bright-mode #form-success svg { filter: drop-shadow(0 0 8px rgba(160,120,32,0.28)); }

/* ── 42. Image Lazy Load ────────────────────────────────────── */
img                        { transition: opacity 300ms ease; }
img[loading="lazy"]        { opacity: 0; }
img[loading="lazy"].loaded { opacity: 1; }

/* ── 43. Misc Utility Classes ───────────────────────────────── */
.bg-\[#060605\]   { background: #060605; }
.bg-\[#0C0B08\]   { background: var(--surface-1); }
.bg-graphite      { background-color: var(--card-bg) !important; }
h1, h2, h3       { color: var(--ivory); }
.text-error       { color: #e05555; }
#form-error-summary { color: #e05555; }

/* ── 44. Mobile Nav Gold Lines ──────────────────────────────── */
#mobile-nav .bg-gold\/30 { background: rgba(201,168,76,0.30); }

/* ── 45. Spotlight Radial ───────────────────────────────────── */
body.bright-mode .spotlight::before {
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(160,120,32,0.10) 0%, transparent 65%);
}

/* ── 46. Process Page Connecting Lines ──────────────────────── */
body.bright-mode [style*="rgba(201,168,76,0.42)"] { background: rgba(160,120,32,0.28) !important; }

/* ── 47. Services Eyebrow / Category Ghost Numbers ──────────── */
body.bright-mode .text-gold\/\[0\.05\],
body.bright-mode [style*="text-gold/[0.05]"] { color: rgba(160,120,32,0.07) !important; }

/* ── 48. High-Contrast Mode Support ────────────────────────── */
@media (forced-colors: active) {
  .btn-outline         { border: 2px solid ButtonText; }
  .card-premium        { border: 1px solid ButtonText; }
  .form-input          { border: 1px solid ButtonText; }
  .hero-cta-primary    { border: 2px solid ButtonText; }
  .glass-panel         { border: 1px solid ButtonText; }
}

/* ── 49. Mobile — Touch Hover States ───────────────────────── */
@media (hover: none) {
  .card-premium:hover,
  .btn-outline:hover,
  .footer-social-icon:hover,
  .hero-cta-primary:hover,
  .hero-cta-secondary:hover,
  a:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .card-premium:active,
  .btn-outline:active,
  .footer-social-icon:active {
    transform: scale(0.98) !important;
    opacity: 0.82 !important;
  }
}

/* ── 50. Responsive Breakpoints ─────────────────────────────── */
@media (max-width: 768px) {
  .reveal, .reveal-left, .reveal-right, .reveal-up { transform: translateY(16px); }
  .section-number { font-size: 56px; }
  .process-timeline-line { display: none; }

  #hero            { min-height: 65vh !important; padding-top: 60px !important; }
  .hero-eyebrow    { font-size: 9px !important; letter-spacing: 0.28em !important; }
  .hero-headline   { font-size: clamp(32px, 8vw, 48px) !important; line-height: 1.1 !important; }
  .hero-sub        { font-size: 14px !important; line-height: 1.7 !important; padding: 0 16px; }
  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%; max-width: 280px;
    padding: 14px 20px !important;
    font-size: 12px !important;
    min-height: 48px !important;
  }
  .hero-stats      { flex-direction: column; gap: 16px !important; }
  .hero-stats > div {
    padding: 12px 16px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(201,168,76,0.25) !important;
  }
  .hero-stats > div:last-child { border-bottom: none !important; }
  .hero-stat-num   { font-size: 28px !important; }
  .hero-stat-label { font-size: 9px !important; padding-bottom: 12px !important; }
  .scroll-indicator-line { display: none; }
  .marquee-track   { font-size: 10px !important; }
  .marquee-track span { padding: 4px !important; }

  .btn-outline     { padding: 12px 20px !important; font-size: 11px !important; min-height: 44px !important; }
  .form-input      { padding: 12px 16px !important; font-size: 14px !important; }
  .form-select     { padding: 12px 16px !important; font-size: 14px !important; }
  .card-premium    { padding: 24px !important; }
  .card-premium h3 { font-size: 16px !important; }
  .card-premium p  { font-size: 13px !important; }
  #navbar          { padding: 0 16px !important; }

  footer           { padding-top: 40px !important; }
  footer .grid     { gap: 32px !important; }
  footer h3        { font-size: 9px !important; margin-bottom: 16px !important; }
  footer a         { font-size: 13px !important; }
  footer .btn-outline { width: 100%; justify-content: center; }

  #agency-intro .grid  { grid-template-columns: 1fr !important; gap: 32px !important; }
  #agency-intro h2     { font-size: clamp(28px, 6vw, 40px) !important; }
  #agency-intro .flex  { flex-direction: column !important; gap: 24px !important; }
  .process-step        { padding: 24px !important; }
  .process-step-number { font-size: 48px !important; }
  .contact-layout      { grid-template-columns: 1fr !important; }
  .contact-form        { padding: 24px !important; }
  .contact-aside       { padding: 24px !important; }
}

@media (max-width: 480px) {
  .hero-stats > div    { padding-left: 16px; padding-right: 16px; }
  .contact-social      { width: 40px; height: 40px; }
  #hero                { min-height: 60vh !important; }
  .hero-headline       { font-size: clamp(28px, 9vw, 36px) !important; }
  .hero-sub            { font-size: 13px !important; }
  .hero-cta-primary,
  .hero-cta-secondary  { font-size: 11px !important; padding: 12px 16px !important; min-height: 44px !important; }
  .card-premium        { padding: 16px !important; }
  .form-input, .form-select { padding: 10px 14px !important; font-size: 13px !important; }
  footer               { padding-top: 32px !important; }
  footer .grid         { gap: 24px !important; }
}

/* ── 51. Prefers-Reduced-Motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:      0.01ms !important;
    scroll-behavior:          auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-up, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-anim-label,
  .hero-anim-headline,
  .hero-anim-sub,
  .hero-anim-cta,
  .hero-anim-scroll { animation: none; opacity: 1; transform: none; }
  .text-gold-shimmer { animation: none; background-position: 0% center; }
  .hero-bg-img       { animation: none; }
  .hero-ring,
  .geo-ring          { animation: none; }
  .marquee-track     { animation: none !important; }
  .testimonial-track { animation: none !important; }
  .contact-submit-btn .animate-spin { animation: none; }
  main               { animation: none; }
  .scroll-indicator-line { animation: none; }
}

/* ── 52. Print Styles ───────────────────────────────────────── */
@media print {
  #navbar, #mobile-nav, footer,
  .scroll-indicator-line, #cursor-dot, #cursor-ring,
  .cursor-glow, #scroll-progress, .floating-cta,
  .theme-toggle, #hamburger-btn { display: none !important; }

  body {
    background: white !important;
    background-image: none !important;
    color: black !important;
    font-size: 12pt;
  }
  a        { color: black !important; text-decoration: underline; }
  h1, h2, h3 { color: black !important; }
  .card-premium, .glass-panel {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    background: white !important;
  }
  .text-gold-shimmer {
    -webkit-text-fill-color: black !important;
    background: none !important;
    color: black !important;
  }
  section { page-break-inside: avoid; }
  img     { max-width: 100% !important; }
}

/* ── 53. Overflow Safety ────────────────────────────────────── */
html, body { max-width: 100vw; overflow-x: hidden; }

/* ═══════════════════════════════════════════════════════════════
   BRIGHT MODE — LUXURIOUS ROYAL GOLD & PREMIUM WHITE SYSTEM
   Replaces all warm warm pearl/parchment styles with crisp premium white and royal gold
   ═══════════════════════════════════════════════════════════════ */

/* ── BM-1. Navbar — frosted deep gold-bronze glass ──────────── */
body.bright-mode #navbar {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: none !important;
}
body.bright-mode #navbar.scrolled {
  background: rgba(124, 82, 5, 0.90) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(255, 240, 165, 0.25) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* ── BM-2. Body + page backgrounds ─────────────────────────── */
body.bright-mode {
  background-color: #B89332 !important;
  color: #FFFFFF !important;
}

/* ── BM-3. Section alternation — transparent / dynamic layers ── */
body.bright-mode section,
body.bright-mode main > section {
  background: transparent !important;
}
body.bright-mode #hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 244, 214, 0.4) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(253, 206, 86, 0.3) 0%, transparent 55%),
    linear-gradient(135deg, #7C5205 0%, #C59A3F 35%, #F6E2A3 50%, #C59A3F 65%, #4E3406 100%) !important;
  background-size: 200% 200% !important;
  animation: goldFlow 15s ease infinite !important;
}
/* Gold particles float on hero */
body.bright-mode #hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.7) 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.8) 1.5px, transparent 1.5px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.6) 1px, transparent 1px),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.9) 2px, transparent 2px),
    radial-gradient(circle at 15% 75%, rgba(255,255,255,0.5) 1.5px, transparent 1.5px),
    radial-gradient(circle at 60% 90%, rgba(255,255,255,0.7) 1px, transparent 1px) !important;
  background-size: 300px 300px !important;
  opacity: 0.35 !important;
  mix-blend-mode: overlay !important;
  pointer-events: none !important;
  animation: particleFloat 20s linear infinite !important;
  z-index: 1 !important;
}
body.bright-mode #services-ticker  { 
  background: rgba(124, 82, 5, 0.40) !important; 
  border-top: 1px solid rgba(255, 255, 255, 0.20) !important; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.20) !important; 
}
body.bright-mode #agency-intro,
body.bright-mode #our-story        { background: transparent !important; }
body.bright-mode #services-overview,
body.bright-mode #mission-vision,
body.bright-mode #brand-creative,
body.bright-mode #content-media,
body.bright-mode #social-digital,
body.bright-mode #web-uiux         { background: transparent !important; }
body.bright-mode #why-nexora,
body.bright-mode #differentiators-heading,
body.bright-mode section[aria-labelledby="differentiators-heading"] { background: transparent !important; }
body.bright-mode #core-values      { background: transparent !important; }
body.bright-mode #process-preview  { background: transparent !important; }
body.bright-mode #testimonials     { background: transparent !important; }
body.bright-mode #home-cta,
body.bright-mode #about-cta,
body.bright-mode #services-cta     { 
  background: rgba(45, 32, 15, 0.65) !important; 
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important; 
}
body.bright-mode section[aria-labelledby="process-steps-heading"] { background: transparent !important; }
body.bright-mode section[aria-labelledby="process-cta-heading"],
body.bright-mode section[class*="py-[120px]"],
body.bright-mode section[class*="py-[140px]"] { 
  background: rgba(45, 32, 15, 0.65) !important; 
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important; 
}
body.bright-mode section[aria-label="Process overview introduction"],
body.bright-mode section[aria-label="What our process guarantees"],
body.bright-mode section[aria-label="Services overview introduction"] { background: transparent !important; }
body.bright-mode section[aria-labelledby="contact-section-heading"] { background: transparent !important; }
body.bright-mode section[aria-labelledby="consultation-cta-heading"] { 
  background: rgba(45, 32, 15, 0.65) !important; 
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important; 
}
body.bright-mode footer { 
  background: rgba(20, 14, 5, 0.85) !important; 
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.25) !important; 
}
body.bright-mode footer > * { background-color: transparent !important; }
body.bright-mode footer [style*="background:var(--surface-1)"],
body.bright-mode footer [style*="background: var(--surface-1)"] { background: rgba(255,255,0.04) !important; }

/* ── BM-4. Typography — white with glowing text shadows ───────── */
body.bright-mode h1, body.bright-mode h2, body.bright-mode h3,
body.bright-mode h4, body.bright-mode h5, body.bright-mode h6 {
  color: #FFFFFF !important;
  text-shadow: 0 4px 15px rgba(0,0,0,0.45), 0 0 1px rgba(255,255,255,0.4) !important;
}
body.bright-mode p, body.bright-mode li, body.bright-mode span,
body.bright-mode address, body.bright-mode label { 
  color: rgba(255, 255, 255, 0.90) !important; 
  text-shadow: 0 1px 6px rgba(0,0,0,0.25) !important;
}
body.bright-mode .font-light { color: rgba(255, 255, 255, 0.80) !important; }
body.bright-mode [style*="color:var(--ivory)"]        { color: #FFFFFF !important; }
body.bright-mode [style*="color:var(--ivory-dim)"]    { color: rgba(255, 255, 255, 0.90) !important; }
body.bright-mode [style*="color:var(--ivory-muted)"]  { color: rgba(255, 255, 255, 0.65) !important; }
body.bright-mode [style*="color:rgba(240,235,216,0.65)"] { color: rgba(255, 255, 255, 0.65) !important; }
body.bright-mode [style*="color:rgba(240,235,216,0.35)"] { color: rgba(255, 255, 255, 0.35) !important; }

/* ── BM-5. Gold — rich bright champagne/white shimmers ──────── */
body.bright-mode [style*="color:var(--gold)"] { color: #FFE57F !important; }
body.bright-mode .text-gold-shimmer {
  background: linear-gradient(90deg, #FFFFFF 0%, #FFE57F 25%, #FFF0A5 45%, #FFFFFF 55%, #FFF0A5 65%, #FFE57F 80%, #FFFFFF 100%) !important;
  background-size: 250% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: shimmer 4s linear infinite !important;
  text-shadow: none !important;
}

/* ── BM-6. Card Premium — obsidian gold-leaf glass ───────────── */
body.bright-mode .card-premium {
  background: rgba(30, 22, 10, 0.65) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-top: 3px solid #FFFFFF !important;
  border-left: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}
body.bright-mode .card-premium:hover {
  background: rgba(45, 32, 15, 0.75) !important;
  border-top-color: #FFE57F !important;
  border-left-color: rgba(255, 255, 255, 0.40) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 229, 127, 0.25) !important;
  transform: translateY(-8px) !important;
}
body.bright-mode .card-premium h3 { color: #FFFFFF !important; }
body.bright-mode .card-premium p  { color: rgba(255, 255, 255, 0.80) !important; }
body.bright-mode .card-premium svg { stroke: #FFE57F !important; filter: drop-shadow(0 0 6px rgba(255,229,127,0.40)); }
body.bright-mode .card-premium .text-gold { color: #FFE57F !important; }

/* ── BM-7. Glass Panel — translucent obsidian glass ─────────── */
body.bright-mode .glass-panel {
  background: rgba(30, 22, 10, 0.55) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}
body.bright-mode .glass-panel.border-l-2:hover {
  background: rgba(40, 28, 12, 0.70) !important;
  border-left-color: #FFFFFF !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 15px rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-3px) !important;
}
body.bright-mode .glass-panel h2, body.bright-mode .glass-panel h3 { color: #FFFFFF !important; }
body.bright-mode .glass-panel p   { color: rgba(255, 255, 255, 0.85) !important; }

/* ── BM-8. Buttons — white blocks and white outlines ────────── */
body.bright-mode .btn-outline {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}
body.bright-mode .btn-outline:hover {
  color: #4D3305 !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.30) !important;
}
body.bright-mode .btn-outline:hover span,
body.bright-mode .btn-outline:hover * {
  color: #4D3305 !important;
}
body.bright-mode .btn-outline::before {
  background: #FFFFFF !important;
}
body.bright-mode .hero-cta-primary {
  background: #FFFFFF !important;
  color: #4D3305 !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25) !important;
}
body.bright-mode .hero-cta-primary span,
body.bright-mode .hero-cta-primary * {
  color: #4D3305 !important;
}
body.bright-mode .hero-cta-primary:hover {
  background: #FFE57F !important;
  box-shadow: 0 12px 35px rgba(255, 229, 127, 0.40) !important;
  color: #4D3305 !important;
  border-color: #FFE57F !important;
}
body.bright-mode .hero-cta-primary:hover span,
body.bright-mode .hero-cta-primary:hover * {
  color: #4D3305 !important;
}
body.bright-mode .hero-cta-secondary {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.60) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(8px) !important;
}
body.bright-mode .hero-cta-secondary:hover {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.20) !important;
}
body.bright-mode .hero-cta-secondary:hover span,
body.bright-mode .hero-cta-secondary:hover * {
  color: #FFFFFF !important;
}
body.bright-mode a.bg-gold, body.bright-mode button.bg-gold {
  background: #FFFFFF !important;
  color: #4D3305 !important;
}
body.bright-mode a.bg-gold span, body.bright-mode button.bg-gold span {
  color: #4D3305 !important;
}
body.bright-mode a.bg-gold:hover, body.bright-mode button.bg-gold:hover {
  background: #FFE57F !important;
}
body.bright-mode .ghost-link { color: rgba(255,255,255,0.80) !important; }
body.bright-mode .ghost-link:hover { color: #FFFFFF !important; }

/* ── BM-9. Process timeline ─────────────────────────────────── */
body.bright-mode .process-timeline-line {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.40) 8%, rgba(255, 255, 255, 0.40) 92%, transparent) !important;
}
body.bright-mode .process-timeline-dot {
  background: #FFFFFF !important;
  border-color: #B89332 !important;
  box-shadow: 0 0 0 2px #FFFFFF, 0 0 15px rgba(255, 255, 255, 0.50) !important;
}
body.bright-mode [style*="border-l-2"] { border-left-color: rgba(255, 255, 255, 0.40) !important; }
body.bright-mode .border-l-2 { border-left-color: rgba(255, 255, 255, 0.40) !important; }

/* ── BM-10. Testimonial cards ───────────────────────────────── */
body.bright-mode .testimonial-card {
  background: rgba(30, 22, 10, 0.65) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}
body.bright-mode .testimonial-card::before { color: #FFE57F !important; opacity: 0.30 !important; }
body.bright-mode .testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.40) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4) !important;
}
body.bright-mode .testimonial-card p { color: rgba(255, 255, 255, 0.85) !important; }
body.bright-mode .star-rating { color: #FFE57F !important; }
body.bright-mode .testimonial-track { background: transparent !important; }

/* ── BM-11. Hero stat bar ───────────────────────────────────── */
body.bright-mode .hero-stats { background: transparent !important; }
body.bright-mode .hero-stats > div { border-color: rgba(255, 255, 255, 0.25) !important; }
body.bright-mode .hero-stat-num {
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 0 8px rgba(255, 240, 165, 0.6) !important;
}
body.bright-mode .hero-stat-label { 
  color: rgba(255, 255, 255, 0.80) !important; 
  text-shadow: 0 1px 4px rgba(0,0,0,0.3) !important;
}

/* ── BM-12. Floating CTA ────────────────────────────────────── */
body.bright-mode .floating-cta {
  background: #FFFFFF !important;
  color: #4D3305 !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35) !important;
}
body.bright-mode .floating-cta span, body.bright-mode .floating-cta i {
  color: #4D3305 !important;
}
body.bright-mode .floating-cta:hover {
  background: #FFE57F !important;
  box-shadow: 0 12px 40px rgba(255, 229, 127, 0.40) !important;
}

/* ── BM-13. Form elements ───────────────────────────────────── */
body.bright-mode .form-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05) !important;
}
body.bright-mode .form-input::placeholder { color: rgba(255, 255, 255, 0.50) !important; }
body.bright-mode .form-input:focus {
  border-color: #FFFFFF !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

/* ── BM-14. Category tags ───────────────────────────────────── */
body.bright-mode .category-tag {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

/* ── BM-15. Scroll progress bar ─────────────────────────────── */
body.bright-mode #scroll-progress {
  background: linear-gradient(90deg, #FFE57F, #FFFFFF, #FFE57F) !important;
}

/* ── BM-16. Footer Overrides ────────────────────────────────── */
body.bright-mode footer {
  background: rgba(20, 14, 5, 0.85) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
}
body.bright-mode footer h3 { color: #FFFFFF !important; text-shadow: 0 2px 8px rgba(0,0,0,0.3) !important; }
body.bright-mode footer p, body.bright-mode footer span { color: rgba(255, 255, 255, 0.80) !important; }
body.bright-mode footer a { color: rgba(255, 255, 255, 0.70) !important; }
body.bright-mode footer a:hover { color: #FFE57F !important; }
body.bright-mode footer svg { stroke: #FFE57F !important; }
body.bright-mode footer .footer-social-icon {
  color: rgba(255, 255, 255, 0.70) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}
body.bright-mode footer .footer-social-icon:hover {
  color: #4D3305 !important;
  border-color: #FFFFFF !important;
  background: #FFFFFF !important;
}

/* ── BM-17. Hero decorative overlays ───────────────────────── */
body.bright-mode .hero-dark-bg { display: none !important; }
body.bright-mode .hero-bright-bg { display: block !important; }
body.bright-mode section .absolute.inset-0[style*="rgba(5,10,24"],
body.bright-mode section .absolute.inset-0[style*="rgba(8,14,34"],
body.bright-mode section .absolute.inset-0[style*="from-black"],
body.bright-mode section .absolute.inset-0[style*="via-black"] { opacity: 0 !important; }
body.bright-mode .hero-ring { border-color: rgba(255, 255, 255, 0.20) !important; }
body.bright-mode .geo-ring  { border-color: rgba(255, 255, 255, 0.15) !important; }
body.bright-mode .bg-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) !important;
}
body.bright-mode .section-ghost-num { color: rgba(255, 255, 255, 0.06) !important; }
body.bright-mode section[id]::after { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent) !important; }

/* ── BM-18. Nav links in bright mode ────────────────────────── */
body.bright-mode [data-nav-link],
body.bright-mode .nav-link { color: rgba(255, 255, 255, 0.85) !important; }
body.bright-mode .nav-link:hover { color: #FFFFFF !important; }
body.bright-mode .nav-link.active { color: #FFE57F !important; text-shadow: 0 0 10px rgba(255, 229, 127, 0.35) !important; }
body.bright-mode .nav-link::after { background: linear-gradient(90deg, #FFE57F, #FFFFFF) !important; }

/* ── BM-19. Mobile nav ──────────────────────────────────────── */
body.bright-mode #mobile-nav { background: rgba(30, 22, 10, 0.96) !important; }
body.bright-mode #mobile-nav [style*="color:var(--ivory)"] { color: #FFFFFF !important; }
body.bright-mode #mobile-nav .nav-link { color: #FFFFFF !important; }
body.bright-mode #mobile-nav .nav-link:hover { color: #FFE57F !important; }

/* ── BM-20. Services ticker fade overlays ───────────────────── */
body.bright-mode #services-ticker .absolute[style*="gradient(to right"] { background: linear-gradient(to right, #B89332, transparent) !important; }
body.bright-mode #services-ticker .absolute[style*="gradient(to left"]  { background: linear-gradient(to left, #B89332, transparent) !important; }

/* ── BM-21. Contact page specifics ─────────────────────────── */
body.bright-mode .contact-social {
  color: rgba(255, 255, 255, 0.80) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}
body.bright-mode .contact-social:hover {
  color: #4D3305 !important;
  border-color: #FFFFFF !important;
  background: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(255,255,255,0.2) !important;
}

/* ── BM-22. Spotlight section glow on light bg ──────────────── */
body.bright-mode .spotlight::before {
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 65%) !important;
}

/* ── BM-23. Custom cursor bright colors ─────────────────────── */
body.bright-mode #cursor-dot  { background: #FFFFFF !important; }
body.bright-mode #cursor-ring { border-color: #FFFFFF !important; }
body.bright-mode .cursor-hover #cursor-ring { border-color: rgba(255, 255, 255, 0.85) !important; }

/* ═══════════════════════════════════════════════════════════════
   ENHANCED ANIMATIONS — Hover effects, entrance, micro-interactions
   ═══════════════════════════════════════════════════════════════ */

/* ── A-1. Card hover icon float ──────────────────────────────── */
.card-premium:hover .w-10.flex,
.card-premium:hover .w-8.h-8 {
  transform: translateY(-3px);
  transition: transform 350ms var(--ease-out-expo);
}

/* ── A-2. Card title gold on hover ───────────────────────────── */
.card-premium:hover h3 {
  color: var(--gold-light) !important;
  transition: color 300ms ease;
}
body.bright-mode .card-premium:hover h3 { color: #FFE57F !important; }

/* ── A-3. Eyebrow label slide-in animation ───────────────────── */
@keyframes eyebrowIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-eyebrow.visible,
.reveal--visible .hero-eyebrow { animation: eyebrowIn 500ms var(--ease-out-expo) both; }

/* ── A-4. Gold line draw animation ──────────────────────────── */
@keyframes lineDraw {
  from { width: 0; opacity: 0; }
  to   { width: 100%; opacity: 1; }
}
.card-premium:hover .w-20.h-0\.5,
.card-premium.reveal--visible .w-20.h-0\.5 {
  animation: lineDraw 600ms var(--ease-out-expo) 200ms both;
}

/* ── A-5. Stagger reveal for nth-child up to 10 ─────────────── */
.reveal-up:nth-child(6)  { --reveal-delay: 500ms; }
.reveal-up:nth-child(7)  { --reveal-delay: 580ms; }
.reveal-up:nth-child(8)  { --reveal-delay: 660ms; }
.reveal-up:nth-child(9)  { --reveal-delay: 740ms; }
.reveal-up:nth-child(10) { --reveal-delay: 820ms; }

/* ── A-6. Process timeline dot pulse on scroll ──────────────── */
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--gold), 0 0 22px rgba(201,168,76,0.65); }
  50%       { box-shadow: 0 0 0 1px var(--gold), 0 0 40px rgba(201,168,76,0.90); }
}
.process-timeline-dot { animation: dotPulse 3s ease-in-out infinite; }

/* ── A-7. Service category section — grid stagger via JS data-stagger */
.service-category [data-stagger] > * { transition-delay: var(--reveal-delay, 0ms); }

/* ── A-8. Gold border bottom draw on card hover ─────────────── */
.card-premium::after {
  transition-duration: 350ms !important;
}
.card-premium:hover::after { opacity: 1; }

/* ── A-9. Ghost link arrow bounce on hover ───────────────────── */
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(8px); }
}
.ghost-link:hover .ghost-arrow { animation: arrowBounce 600ms var(--ease-spring) infinite; }

/* ── A-10. Testimonial card — quote mark morph ──────────────── */
.testimonial-card:hover::before {
  opacity: 0.55;
  transform: scale(1.1);
  transition: opacity 300ms ease, transform 300ms var(--ease-out-expo);
}
.testimonial-card::before { transition: opacity 300ms ease, transform 300ms ease; }

/* ── A-11. Stat item count-up effect via JS — entrance ──────── */
.stat-item.reveal--visible .stat-counter {
  animation: counterUp 600ms var(--ease-out-expo) both;
}

/* ── A-12. Hero label diamond pulse ─────────────────────────── */
@keyframes diamondPulse {
  0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
  50%       { transform: rotate(45deg) scale(1.25); opacity: 0.75; }
}
.hero-anim-cta .w-2.h-2 { animation: diamondPulse 2.5s ease-in-out infinite; }

/* ── A-13. Scroll indicator enhanced ───────────────────────── */
@keyframes scrollBounce {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  40%       { opacity: 1;    transform: translateY(8px); }
  80%       { opacity: 0.60; transform: translateY(4px); }
}
.scroll-indicator-line { animation: scrollBounce 2.2s ease-in-out infinite; }

/* ── A-14. Image parallax-ready class ───────────────────────── */
.parallax-img {
  will-change: transform;
  transition: transform 0s linear;
}

/* ── A-15. Hover lift for glass panels ──────────────────────── */
.glass-panel {
  transition:
    transform   350ms var(--ease-out-expo),
    box-shadow  350ms var(--ease-luxury),
    background  350ms var(--ease-luxury),
    border-color 350ms var(--ease-luxury) !important;
}

/* ── A-16. Category section ghost number float ──────────────── */
body:not(.bright-mode) .service-category .text-gold\/\[0\.05\] {
  animation: float 12s ease-in-out infinite;
  animation-delay: var(--ghost-delay, 0s);
}

/* ── A-17. Nav link active indicator animated draw ──────────── */
.nav-link.active::after {
  width: 100%;
  transition: width 450ms var(--ease-out-expo);
}

/* ── A-18. Marquee ticker item sparkle on hover ─────────────── */
.marquee-track > span:hover {
  color: var(--gold-light) !important;
  text-shadow: 0 0 14px rgba(201,168,76,0.55);
  cursor: default;
}
body.bright-mode .marquee-track > span:hover {
  color: #FFFFFF !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ── A-19. Section transitions when scrolling between sections - */
section { transition: background-color 500ms ease; }

/* ── A-20. About page stats number animation ────────────────── */
.reveal--visible [data-count] {
  animation: counterUp 700ms var(--ease-out-expo) 200ms both;
}

/* ═══════════════════════════════════════════════════════════════
   BRIGHT MODE — Inner Page Hero Sections
   ═══════════════════════════════════════════════════════════════ */
body.bright-mode section[aria-labelledby="services-hero-title"],
body.bright-mode section[aria-labelledby="process-hero-title"],
body.bright-mode section[aria-labelledby="contact-hero-title"],
body.bright-mode section[aria-labelledby="about-hero-heading"] { 
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 244, 214, 0.3) 0%, transparent 45%),
    linear-gradient(135deg, #7C5205 0%, #C59A3F 35%, #F6E2A3 50%, #C59A3F 65%, #4E3406 100%) !important;
  background-size: 200% 200% !important;
  animation: goldFlow 15s ease infinite !important;
}

body.bright-mode section[aria-labelledby="services-hero-title"] h1,
body.bright-mode section[aria-labelledby="process-hero-title"] h1,
body.bright-mode section[aria-labelledby="contact-hero-title"] h1,
body.bright-mode section[aria-labelledby="about-hero-heading"] h1 { 
  color: #FFFFFF !important; 
  text-shadow: 0 4px 15px rgba(0,0,0,0.45) !important;
}

body.bright-mode section[aria-labelledby="services-hero-title"] p,
body.bright-mode section[aria-labelledby="process-hero-title"] p,
body.bright-mode section[aria-labelledby="contact-hero-title"] p,
body.bright-mode section[aria-labelledby="about-hero-heading"] p  { 
  color: rgba(255, 255, 255, 0.90) !important; 
  text-shadow: 0 2px 8px rgba(0,0,0,0.30) !important;
}

/* Hero absolute overlay layers — fade them out in bright mode */
body.bright-mode section[aria-labelledby="services-hero-title"] .absolute.inset-0,
body.bright-mode section[aria-labelledby="process-hero-title"] .absolute.inset-0,
body.bright-mode section[aria-labelledby="contact-hero-title"] .absolute.inset-0 { opacity: 0 !important; }

/* But keep the grid and radial glow layers slightly visible */
body.bright-mode section[aria-labelledby="services-hero-title"] .bg-grid,
body.bright-mode section[aria-labelledby="process-hero-title"] .bg-grid,
body.bright-mode section[aria-labelledby="contact-hero-title"] .bg-grid { opacity: 0.15 !important; }

/* Bright mode — hero eyebrow label (gold lines either side) */
body.bright-mode .hero-eyebrow { color: #FFE57F !important; }
body.bright-mode .hero-anim-label .h-px { background: #FFFFFF !important; }
body.bright-mode .hero-anim-sub { color: rgba(255,255,255,0.90) !important; }
body.bright-mode .hero-anim-scroll { color: #FFE57F !important; }

/* Bright mode — hero category tags */
body.bright-mode .category-tag { color: #8A5F0E !important; background: rgba(150,104,26,0.10) !important; border-color: rgba(150,104,26,0.40) !important; }

/* ═══════════════════════════════════════════════════════════════
   BRIGHT MODE — Testimonials section
   ═══════════════════════════════════════════════════════════════ */
body.bright-mode #testimonials {
  background: transparent !important;
}
body.bright-mode #testimonials h2 { color: #FFFFFF !important; }
body.bright-mode #testimonials .absolute[style*="gradient(to right"] {
  background: linear-gradient(to right, #B89332, transparent) !important;
}
body.bright-mode #testimonials .absolute[style*="gradient(to left"] {
  background: linear-gradient(to left, #B89332, transparent) !important;
}

/* ═══════════════════════════════════════════════════════════════
   BRIGHT MODE — Process page specific
   ═══════════════════════════════════════════════════════════════ */
body.bright-mode section[aria-label="What our process guarantees"] .glass-panel,
body.bright-mode section[aria-labelledby="process-steps-heading"] .glass-panel { background: rgba(30, 22, 10, 0.55) !important; }
body.bright-mode [style*="font-size: 48px"][style*="color: var(--gold)"] { color: #FFE57F !important; }

/* ═══════════════════════════════════════════════════════════════
   BRIGHT MODE — About page specific
   ═══════════════════════════════════════════════════════════════ */
body.bright-mode #our-story .relative.rounded-card { box-shadow: 0 15px 45px rgba(0,0,0,0.3) !important; }
body.bright-mode #our-story .absolute.inset-0 { background: linear-gradient(135deg,rgba(30,22,10,0.7) 0%,rgba(255,229,127,0.15) 100%) !important; }

/* ═══════════════════════════════════════════════════════════════
   BRIGHT MODE — Services page category headers
   ═══════════════════════════════════════════════════════════════ */
body.bright-mode .service-category h2 { color: #FFFFFF !important; }
body.bright-mode .service-category p  { color: rgba(255, 255, 255, 0.85) !important; }

/* ═══════════════════════════════════════════════════════════════
   BRIGHT MODE — Fix any remaining inline style text colors
   ═══════════════════════════════════════════════════════════════ */
/* These catch any inline style="color:var(--ivory...)" that wasn't caught before */
body.bright-mode [style*="color:var(--ivory-muted)"]   { color: rgba(30,24,8,0.58) !important; }
body.bright-mode [style*="color:var(--ivory-dim)"]     { color: rgba(30,24,8,0.78) !important; }
body.bright-mode [style*="color:var(--ivory)"]         { color: #1C1508 !important; }
body.bright-mode [style*="color:rgba(240,235,216,0.6"] { color: rgba(30,24,8,0.62) !important; }
body.bright-mode [style*="color:rgba(240,235,216,0.3"] { color: rgba(30,24,8,0.38) !important; }
body.bright-mode [style*="color:rgba(240,235,216,0.8"] { color: rgba(30,24,8,0.80) !important; }
body.bright-mode [style*="color:rgba(240,235,216,0.4"] { color: rgba(30,24,8,0.42) !important; }

/* Bright mode — decorative separators */
body.bright-mode [style*="background:var(--gold-border)"],
body.bright-mode [style*="background:var(--gold)"] { background: rgba(150,104,26,0.50) !important; }
body.bright-mode [style*="background:linear-gradient(90deg,var(--gold"],
body.bright-mode [style*="background:linear-gradient(to right,transparent,var(--gold"] { background: linear-gradient(90deg, transparent, rgba(150,104,26,0.55), transparent) !important; }
body.bright-mode [style*="background:linear-gradient(to left,transparent,var(--gold"]  { background: linear-gradient(90deg, rgba(150,104,26,0.55), transparent) !important; }

/* Bright mode — gradient border top on card-premium */
body.bright-mode .card-premium::before { background: linear-gradient(90deg, transparent, #D4A030, transparent) !important; opacity: 0.45 !important; }

/* ═══════════════════════════════════════════════════════════════
   BRIGHT MODE — Scrollbar
   ═══════════════════════════════════════════════════════════════ */
body.bright-mode::-webkit-scrollbar-track  { background: #EDE5D3 !important; }
body.bright-mode::-webkit-scrollbar-thumb  { background: #A07820 !important; border-radius: 3px !important; }
body.bright-mode::-webkit-scrollbar-thumb:hover { background: #B8841E !important; }

/* ═══════════════════════════════════════════════════════════════
   BRIGHT MODE — Misc fixes
   ═══════════════════════════════════════════════════════════════ */
/* Bright mode nav border separator lines in mobile menu */
body.bright-mode #mobile-nav [style*="background:var(--gold-border)"] { background: rgba(150,104,26,0.35) !important; }

/* Bright mode — process page border-l-2 steps */
body.bright-mode .border-l-2.border-gold\/40 { border-color: rgba(150,104,26,0.40) !important; }

/* Bright mode — process timeline connecting line on mobile */
body.bright-mode [class*="border-l-2"][class*="border-gold"] { border-color: rgba(150,104,26,0.40) !important; }

/* Bright mode — "section 01/02/03..." ghost numbers */
body.bright-mode .section-ghost-num { color: rgba(150,104,26,0.06) !important; }

/* Bright mode — gold diamond separators */
body.bright-mode .rotate-45[style*="background:var(--gold)"] { background: #A07820 !important; }

/* Bright mode — image overlay gradients inside sections */
body.bright-mode section > div.absolute.inset-0[style*="background:linear-gradient"] { opacity: 0.12 !important; }
body.bright-mode section > div.absolute.inset-0[style*="radial-gradient"] { opacity: 0.30 !important; }

/* ==========================================================================
   FINAL BRIGHT MODE - ROYAL WHITE AND CHAMPAGNE GOLD SYSTEM
   Keeps the original champagne gold, removes the full gold wash, and turns
   bright mode into a premium royal white experience.
   ========================================================================== */
body.bright-mode,
body.bright-mode[data-theme="bright"],
[data-theme="bright"] {
  --gold:            #FF3366;
  --gold-light:      #FF6688;
  --gold-pale:       #FF99BB;
  --gold-dark:       #CC0033;
  --gold-glow:       rgba(255, 51, 102, 0.45);
  --gold-faint:      rgba(255, 51, 102, 0.10);
  --gold-border:     rgba(255, 51, 102, 0.28);

  --base-bg:         #060608;
  --surface-1:       #0A0A0E;
  --surface-2:       #101016;
  --surface-3:       #16161E;
  --card-bg:         #12121A;
  --card-hover:      #1A1A24;
  --graphite:        #1A1A24;
  --graphite-md:     #22222E;
  --graphite-lt:     #2A2A38;

  --ivory:           #171209;
  --ivory-dim:       rgba(23,18,9,0.78);
  --ivory-muted:     rgba(23,18,9,0.58);
  --ivory-faint:     rgba(23,18,9,0.34);
  --page-bg:         #060608;
  --page-text:       #171209;
  --nav-bg:          rgba(255,255,255,0.90);
  --nav-bg-scrolled: rgba(10, 10, 14, 0.95);
  --nav-border:      rgba(255, 51, 102, 0.14);
  --nav-border-scrolled: rgba(255, 51, 102, 0.28);
}

body.bright-mode {
  background-color: #FFFCF5 !important;
  color: #171209 !important;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(201,168,76,0.16) 0%, transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(228,199,107,0.13) 0%, transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #FFFCF5 38%, #FBF4E5 100%) !important;
  background-size: auto !important;
  background-attachment: fixed !important;
  animation: none !important;
}

body.bright-mode main {
  background: transparent !important;
}

body.bright-mode #navbar,
body.bright-mode #navbar.scrolled {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,252,245,0.94)) !important;
  border-bottom: 1px solid rgba(201,168,76,0.30) !important;
  box-shadow: 0 12px 34px rgba(85,64,18,0.08), inset 0 -1px 0 rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

body.bright-mode .nav-link,
body.bright-mode header a,
body.bright-mode #navbar [style*="color:var(--ivory)"],
body.bright-mode #navbar [style*="color:var(--ivory-dim)"] {
  color: #2A210E !important;
  text-shadow: none !important;
}

body.bright-mode .nav-link:hover,
body.bright-mode .nav-link.active,
body.bright-mode header .text-gold,
body.bright-mode #navbar [style*="color:var(--gold)"] {
  color: #9B7A1E !important;
}

body.bright-mode .theme-toggle {
  background: #FFFFFF !important;
  color: #9B7A1E !important;
  border-color: rgba(201,168,76,0.48) !important;
  box-shadow: 0 8px 22px rgba(100,76,18,0.08) !important;
}

body.bright-mode .theme-toggle:hover {
  background: linear-gradient(135deg, #C9A84C 0%, #E4C76B 100%) !important;
  color: #FFFFFF !important;
}

body.bright-mode #mobile-nav {
  background:
    radial-gradient(circle at 50% 18%, rgba(201,168,76,0.16), transparent 36%),
    linear-gradient(180deg, #FFFFFF 0%, #FFF8E8 100%) !important;
}

body.bright-mode #mobile-nav .nav-link,
body.bright-mode #mobile-nav [style*="color:var(--ivory)"],
body.bright-mode #mobile-close {
  color: #171209 !important;
}

body.bright-mode section,
body.bright-mode main > section,
body.bright-mode section[style*="background"],
body.bright-mode section.bg-black,
body.bright-mode .bg-section-alt,
body.bright-mode .bg-section-deep,
body.bright-mode .spotlight {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,252,245,0.98) 100%) !important;
}

body.bright-mode main > section:nth-of-type(even),
body.bright-mode #services-overview,
body.bright-mode #process-preview,
body.bright-mode #testimonials,
body.bright-mode section[aria-label="What our process guarantees"],
body.bright-mode section[aria-labelledby="process-steps-heading"],
body.bright-mode .service-category:nth-of-type(even) {
  background:
    radial-gradient(circle at 8% 18%, rgba(201,168,76,0.10), transparent 26%),
    linear-gradient(180deg, #FFF9ED 0%, #FFFFFF 100%) !important;
}

body.bright-mode #hero,
body.bright-mode .hero-section,
body.bright-mode section[aria-labelledby="services-hero-title"],
body.bright-mode section[aria-labelledby="process-hero-title"],
body.bright-mode section[aria-labelledby="contact-hero-title"],
body.bright-mode section[aria-labelledby="about-hero-heading"] {
  background:
    radial-gradient(circle at 50% 16%, rgba(201,168,76,0.20) 0%, transparent 35%),
    radial-gradient(circle at 12% 76%, rgba(228,199,107,0.13) 0%, transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #FFF8E8 100%) !important;
  background-size: auto !important;
  animation: none !important;
}

body.bright-mode .hero-bright-bg {
  display: block !important;
}

body.bright-mode .hero-bright-bg img,
body.bright-mode #hero img,
body.bright-mode section.noise-overlay img {
  opacity: 0.035 !important;
  filter: grayscale(35%) sepia(8%) !important;
}

body.bright-mode .hero-bright-bg .absolute.inset-0,
body.bright-mode section[aria-labelledby="services-hero-title"] .absolute.inset-0,
body.bright-mode section[aria-labelledby="process-hero-title"] .absolute.inset-0,
body.bright-mode section[aria-labelledby="contact-hero-title"] .absolute.inset-0 {
  opacity: 0.16 !important;
}

body.bright-mode h1,
body.bright-mode h2,
body.bright-mode h3,
body.bright-mode h4,
body.bright-mode h5,
body.bright-mode h6,
body.bright-mode section[aria-labelledby="services-hero-title"] h1,
body.bright-mode section[aria-labelledby="process-hero-title"] h1,
body.bright-mode section[aria-labelledby="contact-hero-title"] h1,
body.bright-mode section[aria-labelledby="about-hero-heading"] h1,
body.bright-mode #testimonials h2,
body.bright-mode .service-category h2 {
  color: #171209 !important;
  text-shadow: none !important;
}

body.bright-mode p,
body.bright-mode li,
body.bright-mode span,
body.bright-mode address,
body.bright-mode label,
body.bright-mode .font-body,
body.bright-mode .font-light,
body.bright-mode [style*="color:var(--ivory)"],
body.bright-mode [style*="color:var(--ivory-dim)"],
body.bright-mode [style*="color:var(--ivory-muted)"],
body.bright-mode [style*="color:rgba(240,235,216"] {
  color: rgba(23,18,9,0.76) !important;
  text-shadow: none !important;
}

body.bright-mode .font-display,
body.bright-mode .hero-headline,
body.bright-mode [style*="font-size:clamp(46px"],
body.bright-mode .hero-stat-num {
  color: #171209 !important;
}

body.bright-mode .hero-eyebrow,
body.bright-mode [style*="color:var(--gold)"],
body.bright-mode .text-gold,
body.bright-mode [class*="text-gold"],
body.bright-mode .hero-stat-num span {
  color: #9B7A1E !important;
  text-shadow: none !important;
}

body.bright-mode .text-gold-shimmer,
body.bright-mode section[aria-labelledby="consultation-cta-heading"] h2 span {
  background: linear-gradient(90deg, #9B7A1E 0%, #C9A84C 30%, #E4C76B 48%, #C9A84C 66%, #9B7A1E 100%) !important;
  background-size: 250% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: none !important;
}

body.bright-mode .card-premium,
body.bright-mode .glass-panel,
body.bright-mode .testimonial-card,
body.bright-mode .stat-item,
body.bright-mode section[aria-label="What our process guarantees"] .glass-panel,
body.bright-mode section[aria-labelledby="process-steps-heading"] .glass-panel,
body.bright-mode #enquiry-form {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFCF5 100%) !important;
  border: 1px solid rgba(201,168,76,0.30) !important;
  border-top: 3px solid #C9A84C !important;
  box-shadow:
    0 22px 55px rgba(68,49,11,0.09),
    0 0 0 1px rgba(255,255,255,0.88) inset !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.bright-mode .card-premium:hover,
body.bright-mode .glass-panel:hover,
body.bright-mode .testimonial-card:hover,
body.bright-mode .stat-item:hover {
  background: #FFFFFF !important;
  border-color: rgba(201,168,76,0.58) !important;
  border-top-color: #E4C76B !important;
  box-shadow:
    0 30px 70px rgba(88,64,14,0.15),
    0 0 0 1px rgba(201,168,76,0.18) inset !important;
}

body.bright-mode .card-premium h3,
body.bright-mode .glass-panel h2,
body.bright-mode .glass-panel h3,
body.bright-mode .testimonial-card h3,
body.bright-mode .stat-item h3 {
  color: #171209 !important;
}

body.bright-mode .card-premium:hover h3 {
  color: #9B7A1E !important;
}

body.bright-mode .hero-cta-primary,
body.bright-mode a.bg-gold,
body.bright-mode button.bg-gold,
body.bright-mode .contact-submit-btn {
  background: linear-gradient(135deg, #9B7A1E 0%, #C9A84C 48%, #E4C76B 100%) !important;
  border: 1px solid rgba(155,122,30,0.88) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  box-shadow: 0 16px 34px rgba(155,122,30,0.30), inset 0 1px 0 rgba(255,255,255,0.34) !important;
}

body.bright-mode .hero-cta-primary *,
body.bright-mode a.bg-gold *,
body.bright-mode button.bg-gold *,
body.bright-mode .contact-submit-btn *,
body.bright-mode .contact-submit-btn span {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

body.bright-mode .hero-cta-primary:hover,
body.bright-mode a.bg-gold:hover,
body.bright-mode button.bg-gold:hover,
body.bright-mode .contact-submit-btn:hover {
  background: linear-gradient(135deg, #C9A84C 0%, #E4C76B 45%, #9B7A1E 100%) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  box-shadow: 0 22px 48px rgba(155,122,30,0.38), inset 0 1px 0 rgba(255,255,255,0.45) !important;
}

body.bright-mode .btn-outline,
body.bright-mode .hero-cta-secondary,
body.bright-mode #form-reset-btn {
  background: #FFFFFF !important;
  color: #9B7A1E !important;
  -webkit-text-fill-color: #9B7A1E !important;
  border-color: rgba(201,168,76,0.58) !important;
  box-shadow: 0 10px 24px rgba(90,66,16,0.07) !important;
}

body.bright-mode .btn-outline *,
body.bright-mode .hero-cta-secondary * {
  color: #9B7A1E !important;
  -webkit-text-fill-color: #9B7A1E !important;
}

body.bright-mode .btn-outline::before,
body.bright-mode .hero-cta-secondary::before {
  background: linear-gradient(135deg, #9B7A1E 0%, #C9A84C 55%, #E4C76B 100%) !important;
}

body.bright-mode .btn-outline:hover,
body.bright-mode .hero-cta-secondary:hover,
body.bright-mode #form-reset-btn:hover {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  border-color: #C9A84C !important;
  box-shadow: 0 16px 36px rgba(155,122,30,0.25) !important;
}

body.bright-mode .btn-outline:hover *,
body.bright-mode .hero-cta-secondary:hover * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

body.bright-mode .form-input,
body.bright-mode .form-textarea,
body.bright-mode .form-select {
  background: #FFFFFF !important;
  color: #171209 !important;
  border-color: rgba(201,168,76,0.40) !important;
  box-shadow: 0 8px 22px rgba(72,51,8,0.05) !important;
}

body.bright-mode .form-input:hover:not(:focus),
body.bright-mode .form-input:focus,
body.bright-mode .form-select:focus {
  background: #FFFFFF !important;
  border-color: #C9A84C !important;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.14), 0 16px 34px rgba(72,51,8,0.10) !important;
}

body.bright-mode .form-label {
  color: #9B7A1E !important;
}

body.bright-mode footer,
body.bright-mode footer > * {
  background:
    linear-gradient(180deg, #FFF7E6 0%, #FFFFFF 100%) !important;
  border-color: rgba(201,168,76,0.26) !important;
}

body.bright-mode footer h3,
body.bright-mode footer .text-gold,
body.bright-mode footer [style*="color:var(--gold)"] {
  color: #9B7A1E !important;
}

body.bright-mode footer a,
body.bright-mode footer p,
body.bright-mode footer span {
  color: rgba(23,18,9,0.68) !important;
}

body.bright-mode footer a:hover {
  color: #9B7A1E !important;
}

body.bright-mode .footer-social-icon,
body.bright-mode .contact-social,
body.bright-mode .category-tag {
  background: #FFFFFF !important;
  color: #9B7A1E !important;
  border-color: rgba(201,168,76,0.42) !important;
}

body.bright-mode .footer-social-icon:hover,
body.bright-mode .contact-social:hover,
body.bright-mode .category-tag:hover {
  background: linear-gradient(135deg, #C9A84C 0%, #E4C76B 100%) !important;
  color: #FFFFFF !important;
  border-color: #C9A84C !important;
}

body.bright-mode .bg-grid {
  background-image:
    linear-gradient(rgba(201,168,76,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.10) 1px, transparent 1px) !important;
}

body.bright-mode .section-ghost-num,
body.bright-mode .section-number,
body.bright-mode .text-gold\/\[0\.05\] {
  color: rgba(201,168,76,0.10) !important;
}

body.bright-mode [class*="border-gold"],
body.bright-mode [class*="border-graphite"],
body.bright-mode .border-t {
  border-color: rgba(201,168,76,0.30) !important;
}

body.bright-mode [class*="bg-gold"] {
  background-color: #C9A84C !important;
}

body.bright-mode [style*="background:var(--gold)"],
body.bright-mode [style*="background:var(--gold-border)"] {
  background: #C9A84C !important;
}

body.bright-mode [style*="background:linear-gradient(90deg,var(--gold"],
body.bright-mode [style*="background:linear-gradient(to right,transparent,var(--gold"],
body.bright-mode [style*="background:linear-gradient(to left,transparent,var(--gold"] {
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.70), transparent) !important;
}

body.bright-mode .testimonial-card::before {
  color: #C9A84C !important;
  opacity: 0.22 !important;
}

body.bright-mode #testimonials .absolute[style*="gradient(to right"] {
  background: linear-gradient(to right, #FFF9ED, transparent) !important;
}

body.bright-mode #testimonials .absolute[style*="gradient(to left"] {
  background: linear-gradient(to left, #FFF9ED, transparent) !important;
}

body.bright-mode .marquee-track > span:hover {
  color: #9B7A1E !important;
  text-shadow: 0 0 12px rgba(201,168,76,0.30) !important;
}

body.bright-mode::-webkit-scrollbar-track {
  background: #FFF8E8 !important;
}

body.bright-mode::-webkit-scrollbar-thumb {
  background: #C9A84C !important;
}

body.bright-mode::-webkit-scrollbar-thumb:hover {
  background: #9B7A1E !important;
}

/* ==========================================================================
   ROYAL MODE V2 AUDIT LOCK
   Final cascade layer for bright mode. This is intentionally explicit because
   the HTML uses many inline dark-mode colors and older bright overrides.
   ========================================================================== */
body.bright-mode {
  --royal-white: #FFFFFF;
  --royal-paper: #FFFCF5;
  --royal-cream: #FFF7E5;
  --royal-cream-2: #F8EED7;
  --royal-ink: #151008;
  --royal-ink-soft: rgba(21,16,8,0.76);
  --royal-ink-muted: rgba(21,16,8,0.58);
  --royal-gold: #C9A84C;
  --royal-gold-light: #E4C76B;
  --royal-gold-dark: #9B7A1E;
  --royal-gold-soft: rgba(201,168,76,0.16);
  --royal-gold-border: rgba(201,168,76,0.34);

  --gold:            #FF3366;
  --gold-light:      #FF6688;
  --gold-pale:       #FF99BB;
  --gold-dark:       #CC0033;
  --gold-glow:       rgba(255, 51, 102, 0.45);
  --gold-faint:      rgba(255, 51, 102, 0.10);
  --gold-border:     rgba(255, 51, 102, 0.28);
  --base-bg:         #060608;
  --surface-1:       #0A0A0E;
  --surface-2:       #101016;
  --surface-3:       #16161E;
  --card-bg:         #12121A;
  --card-hover:      #1A1A24;
  --graphite:        #1A1A24;
  --graphite-md:     #22222E;
  --graphite-lt:     #2A2A38;
  --ivory: #151008;
  --ivory-dim: rgba(21,16,8,0.76);
  --ivory-muted: rgba(21,16,8,0.58);
  --ivory-faint: rgba(21,16,8,0.34);
  --page-bg:         #060608;
  --page-text: #151008;

  background:
    radial-gradient(circle at 9% 9%, rgba(201,168,76,0.15), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(228,199,107,0.13), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #FFFCF5 42%, #FFF7E5 100%) !important;
  color: #151008 !important;
  animation: none !important;
}

body.bright-mode *,
body.bright-mode *::before,
body.bright-mode *::after {
  text-shadow: none !important;
}

body.bright-mode main,
body.bright-mode .bg-black,
body.bright-mode .bg-\[#060605\],
body.bright-mode .bg-\[#0C0B08\],
body.bright-mode .bg-\[#0D0C0A\],
body.bright-mode .bg-\[#141412\],
body.bright-mode .bg-\[#14120C\],
body.bright-mode .bg-graphite,
body.bright-mode .bg-card-bg,
body.bright-mode [style*="background:var(--base-bg)"],
body.bright-mode [style*="background:var(--nxbase)"],
body.bright-mode [style*="background:var(--nx1)"],
body.bright-mode [style*="background:var(--nx2)"],
body.bright-mode [style*="background: var(--surface-1)"],
body.bright-mode [style*="background:var(--surface-1)"] {
  background: transparent !important;
  background-color: transparent !important;
}

body.bright-mode section,
body.bright-mode main > section,
body.bright-mode section[style*="linear-gradient"],
body.bright-mode section[style*="background:var"],
body.bright-mode section[class*="bg-"] {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,252,245,0.99)) !important;
  color: #151008 !important;
}

body.bright-mode main > section:nth-of-type(even),
body.bright-mode #services-overview,
body.bright-mode #core-values,
body.bright-mode #mission-vision,
body.bright-mode #process-preview,
body.bright-mode #testimonials,
body.bright-mode #brand-creative,
body.bright-mode #social-digital,
body.bright-mode section[aria-label="What our process guarantees"],
body.bright-mode section[aria-labelledby="process-steps-heading"] {
  background:
    radial-gradient(circle at 8% 18%, rgba(201,168,76,0.11), transparent 26%),
    linear-gradient(180deg, #FFF8E8 0%, #FFFFFF 100%) !important;
}

body.bright-mode #hero,
body.bright-mode .hero-section,
body.bright-mode section[aria-labelledby="about-hero-heading"],
body.bright-mode section[aria-labelledby="services-hero-title"],
body.bright-mode section[aria-labelledby="process-hero-title"],
body.bright-mode section[aria-labelledby="contact-hero-title"],
body.bright-mode main[aria-labelledby="error-heading"] {
  background:
    radial-gradient(circle at 50% 10%, rgba(201,168,76,0.22), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #FFF7E5 100%) !important;
  color: #151008 !important;
  animation: none !important;
}

body.bright-mode #home-cta,
body.bright-mode #about-cta,
body.bright-mode #services-cta,
body.bright-mode section[aria-labelledby="process-cta-heading"],
body.bright-mode section[aria-labelledby="consultation-cta-heading"] {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.30), transparent 34%),
    linear-gradient(135deg, #9B7A1E 0%, #C9A84C 46%, #E4C76B 100%) !important;
  color: #FFFFFF !important;
}

body.bright-mode #home-cta h1,
body.bright-mode #home-cta h2,
body.bright-mode #home-cta h3,
body.bright-mode #home-cta p,
body.bright-mode #home-cta span:not(.text-gold-shimmer),
body.bright-mode #about-cta h1,
body.bright-mode #about-cta h2,
body.bright-mode #about-cta h3,
body.bright-mode #about-cta p,
body.bright-mode #about-cta span:not(.text-gold-shimmer),
body.bright-mode #services-cta h1,
body.bright-mode #services-cta h2,
body.bright-mode #services-cta h3,
body.bright-mode #services-cta p,
body.bright-mode #services-cta span:not(.text-gold-shimmer),
body.bright-mode section[aria-labelledby="process-cta-heading"] h1,
body.bright-mode section[aria-labelledby="process-cta-heading"] h2,
body.bright-mode section[aria-labelledby="process-cta-heading"] h3,
body.bright-mode section[aria-labelledby="process-cta-heading"] p,
body.bright-mode section[aria-labelledby="consultation-cta-heading"] h1,
body.bright-mode section[aria-labelledby="consultation-cta-heading"] h2,
body.bright-mode section[aria-labelledby="consultation-cta-heading"] h3,
body.bright-mode section[aria-labelledby="consultation-cta-heading"] p {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

body.bright-mode #navbar,
body.bright-mode #navbar.scrolled,
body.bright-mode header#navbar.bg-black {
  background: rgba(255,255,255,0.96) !important;
  border-bottom: 1px solid rgba(201,168,76,0.34) !important;
  box-shadow: 0 14px 36px rgba(83,60,13,0.10) !important;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

body.bright-mode header .font-display,
body.bright-mode header [style*="color:var(--ivory)"],
body.bright-mode header .text-ivory,
body.bright-mode header a:not(.btn-outline),
body.bright-mode .nav-link,
body.bright-mode .nav-link[style] {
  color: #151008 !important;
  -webkit-text-fill-color: #151008 !important;
}

body.bright-mode header [style*="color:var(--gold)"],
body.bright-mode header .text-gold,
body.bright-mode .nav-link:hover,
body.bright-mode .nav-link.active {
  color: #9B7A1E !important;
  -webkit-text-fill-color: #9B7A1E !important;
}

body.bright-mode #hamburger-btn,
body.bright-mode #hamburger-btn.text-ivory,
body.bright-mode #mobile-close,
body.bright-mode #mobile-close.text-ivory {
  color: #151008 !important;
}

body.bright-mode #hamburger-btn span,
body.bright-mode #hamburger-btn .bg-ivory,
body.bright-mode #hamburger-btn [style*="background:var(--ivory)"] {
  background: #151008 !important;
}

body.bright-mode #hamburger-btn .bg-gold,
body.bright-mode #hamburger-btn [style*="background:var(--gold)"] {
  background: #C9A84C !important;
}

body.bright-mode #mobile-nav,
body.bright-mode #mobile-nav.bg-black,
body.bright-mode #mobile-nav[style] {
  background:
    radial-gradient(circle at 50% 14%, rgba(201,168,76,0.16), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #FFF7E5 100%) !important;
}

body.bright-mode #mobile-nav .nav-link,
body.bright-mode #mobile-nav .font-display,
body.bright-mode #mobile-nav [style*="color:var(--ivory)"],
body.bright-mode #mobile-nav .text-ivory {
  color: #151008 !important;
  -webkit-text-fill-color: #151008 !important;
}

body.bright-mode h1,
body.bright-mode h2,
body.bright-mode h3,
body.bright-mode h4,
body.bright-mode h5,
body.bright-mode h6,
body.bright-mode .font-display,
body.bright-mode .text-ivory,
body.bright-mode [class*="text-ivory"],
body.bright-mode [style*="color:var(--ivory)"] {
  color: #151008 !important;
  -webkit-text-fill-color: #151008 !important;
}

body.bright-mode p,
body.bright-mode li,
body.bright-mode address,
body.bright-mode label,
body.bright-mode small,
body.bright-mode .font-body,
body.bright-mode .font-light,
body.bright-mode [style*="color:var(--ivory-dim)"],
body.bright-mode [style*="color:var(--ivory-muted)"],
body.bright-mode [style*="color:rgba(240,235,216"] {
  color: rgba(21,16,8,0.74) !important;
  -webkit-text-fill-color: rgba(21,16,8,0.74) !important;
}

body.bright-mode span {
  color: inherit;
}

body.bright-mode .text-gold,
body.bright-mode [class*="text-gold"],
body.bright-mode [style*="color:var(--gold)"],
body.bright-mode .hero-eyebrow,
body.bright-mode .stat-counter,
body.bright-mode .process-step-num,
body.bright-mode .process-step-number,
body.bright-mode [style*="font-size: 48px"][style*="color: var(--gold)"] {
  color: #9B7A1E !important;
  -webkit-text-fill-color: #9B7A1E !important;
}

body.bright-mode .text-gold-shimmer,
body.bright-mode .text-gold-gradient,
body.bright-mode section[aria-labelledby="consultation-cta-heading"] h2 span.text-gold-shimmer {
  background: linear-gradient(90deg, #8A6418 0%, #C9A84C 35%, #E4C76B 52%, #C9A84C 68%, #8A6418 100%) !important;
  background-size: 240% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

body.bright-mode .card-premium,
body.bright-mode .glass-panel,
body.bright-mode .testimonial-card,
body.bright-mode .stat-item,
body.bright-mode .bg-card-bg,
body.bright-mode [class*="bg-card-bg"],
body.bright-mode .rounded-card.border,
body.bright-mode #enquiry-form,
body.bright-mode section[aria-label="What our process guarantees"] .glass-panel,
body.bright-mode section[aria-labelledby="process-steps-heading"] .glass-panel {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFCF5 100%) !important;
  border: 1px solid rgba(201,168,76,0.34) !important;
  border-top: 3px solid #C9A84C !important;
  box-shadow:
    0 22px 54px rgba(74,52,9,0.10),
    inset 0 1px 0 rgba(255,255,255,0.94) !important;
  color: #151008 !important;
}

body.bright-mode .card-premium:hover,
body.bright-mode .glass-panel:hover,
body.bright-mode .testimonial-card:hover,
body.bright-mode .stat-item:hover,
body.bright-mode .rounded-card.border:hover {
  background: #FFFFFF !important;
  border-color: rgba(201,168,76,0.62) !important;
  box-shadow:
    0 30px 72px rgba(74,52,9,0.16),
    inset 0 1px 0 rgba(255,255,255,0.96) !important;
}

body.bright-mode .card-premium h1,
body.bright-mode .card-premium h2,
body.bright-mode .card-premium h3,
body.bright-mode .glass-panel h1,
body.bright-mode .glass-panel h2,
body.bright-mode .glass-panel h3,
body.bright-mode .testimonial-card h1,
body.bright-mode .testimonial-card h2,
body.bright-mode .testimonial-card h3,
body.bright-mode .stat-item h1,
body.bright-mode .stat-item h2,
body.bright-mode .stat-item h3,
body.bright-mode .rounded-card.border h3 {
  color: #151008 !important;
  -webkit-text-fill-color: #151008 !important;
}

body.bright-mode .card-premium p,
body.bright-mode .glass-panel p,
body.bright-mode .testimonial-card p,
body.bright-mode .stat-item p,
body.bright-mode .rounded-card.border p {
  color: rgba(21,16,8,0.70) !important;
  -webkit-text-fill-color: rgba(21,16,8,0.70) !important;
}

body.bright-mode .hero-cta-primary,
body.bright-mode .contact-submit-btn,
body.bright-mode a.bg-gold,
body.bright-mode button.bg-gold,
body.bright-mode .bg-gold,
body.bright-mode [class*="bg-gold"]:not(.bg-gold\/5):not(.bg-gold\/10):not(.bg-gold\/20):not(.bg-gold\/25):not(.bg-gold\/30):not(.bg-gold\/40):not(.bg-gold\/50):not(.bg-gold\/60),
body.bright-mode .font-body.text-black.bg-gold {
  background: linear-gradient(135deg, #8A6418 0%, #C9A84C 48%, #E4C76B 100%) !important;
  border-color: #9B7A1E !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  box-shadow: 0 16px 34px rgba(155,122,30,0.30), inset 0 1px 0 rgba(255,255,255,0.32) !important;
}

body.bright-mode .hero-cta-primary *,
body.bright-mode .contact-submit-btn *,
body.bright-mode a.bg-gold *,
body.bright-mode button.bg-gold *,
body.bright-mode .bg-gold *,
body.bright-mode [class*="bg-gold"] * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

body.bright-mode .hero-cta-primary:hover,
body.bright-mode .contact-submit-btn:hover,
body.bright-mode a.bg-gold:hover,
body.bright-mode button.bg-gold:hover,
body.bright-mode .font-body.text-black.bg-gold:hover {
  background: linear-gradient(135deg, #C9A84C 0%, #E4C76B 48%, #9B7A1E 100%) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

body.bright-mode .btn-outline,
body.bright-mode .hero-cta-secondary,
body.bright-mode #form-reset-btn {
  background: rgba(255,255,255,0.94) !important;
  border: 1px solid rgba(201,168,76,0.58) !important;
  color: #8A6418 !important;
  -webkit-text-fill-color: #8A6418 !important;
  box-shadow: 0 10px 24px rgba(74,52,9,0.08) !important;
}

body.bright-mode .btn-outline *,
body.bright-mode .hero-cta-secondary *,
body.bright-mode #form-reset-btn * {
  color: #8A6418 !important;
  -webkit-text-fill-color: #8A6418 !important;
}

body.bright-mode .btn-outline::before,
body.bright-mode .hero-cta-secondary::before {
  background: linear-gradient(135deg, #8A6418 0%, #C9A84C 54%, #E4C76B 100%) !important;
}

body.bright-mode .btn-outline:hover,
body.bright-mode .hero-cta-secondary:hover,
body.bright-mode #form-reset-btn:hover {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  border-color: #C9A84C !important;
}

body.bright-mode .btn-outline:hover *,
body.bright-mode .hero-cta-secondary:hover *,
body.bright-mode #form-reset-btn:hover * {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

body.bright-mode .category-tag,
body.bright-mode .footer-social-icon,
body.bright-mode .contact-social {
  background: #FFFFFF !important;
  border: 1px solid rgba(201,168,76,0.45) !important;
  color: #8A6418 !important;
  -webkit-text-fill-color: #8A6418 !important;
}

body.bright-mode .category-tag:hover,
body.bright-mode .footer-social-icon:hover,
body.bright-mode .contact-social:hover {
  background: linear-gradient(135deg, #C9A84C 0%, #E4C76B 100%) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

body.bright-mode .form-input,
body.bright-mode .form-textarea,
body.bright-mode .form-select,
body.bright-mode input,
body.bright-mode textarea,
body.bright-mode select {
  background: #FFFFFF !important;
  border: 1px solid rgba(201,168,76,0.42) !important;
  color: #151008 !important;
  -webkit-text-fill-color: #151008 !important;
  box-shadow: 0 8px 20px rgba(74,52,9,0.06) !important;
}

body.bright-mode .form-input::placeholder,
body.bright-mode .form-textarea::placeholder,
body.bright-mode textarea::placeholder,
body.bright-mode input::placeholder {
  color: rgba(21,16,8,0.42) !important;
  -webkit-text-fill-color: rgba(21,16,8,0.42) !important;
}

body.bright-mode .form-input:focus,
body.bright-mode .form-textarea:focus,
body.bright-mode .form-select:focus,
body.bright-mode input:focus,
body.bright-mode textarea:focus,
body.bright-mode select:focus {
  border-color: #C9A84C !important;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.16), 0 16px 34px rgba(74,52,9,0.10) !important;
}

body.bright-mode .form-label {
  color: #8A6418 !important;
  -webkit-text-fill-color: #8A6418 !important;
}

body.bright-mode .form-error,
body.bright-mode .text-error,
body.bright-mode #form-error-summary {
  color: #A42A1F !important;
  -webkit-text-fill-color: #A42A1F !important;
}

body.bright-mode #form-success h3 {
  color: #151008 !important;
  -webkit-text-fill-color: #151008 !important;
}

body.bright-mode #form-success p {
  color: rgba(21,16,8,0.72) !important;
  -webkit-text-fill-color: rgba(21,16,8,0.72) !important;
}

body.bright-mode footer,
body.bright-mode footer.bg-\[#0D0C0A\],
body.bright-mode footer > *,
body.bright-mode footer [style*="background"] {
  background:
    linear-gradient(180deg, #FFF7E5 0%, #FFFFFF 100%) !important;
  color: rgba(21,16,8,0.70) !important;
  border-color: rgba(201,168,76,0.30) !important;
}

body.bright-mode footer h3,
body.bright-mode footer .text-gold,
body.bright-mode footer [style*="color:var(--gold)"] {
  color: #8A6418 !important;
  -webkit-text-fill-color: #8A6418 !important;
}

body.bright-mode footer a,
body.bright-mode footer p,
body.bright-mode footer span:not(.text-gold-shimmer) {
  color: rgba(21,16,8,0.68) !important;
  -webkit-text-fill-color: rgba(21,16,8,0.68) !important;
}

body.bright-mode footer a:hover {
  color: #8A6418 !important;
  -webkit-text-fill-color: #8A6418 !important;
}

body.bright-mode .section-ghost-num,
body.bright-mode .section-number,
body.bright-mode .text-gold\/\[0\.05\] {
  color: rgba(201,168,76,0.12) !important;
  -webkit-text-fill-color: rgba(201,168,76,0.12) !important;
}

body.bright-mode .bg-grid {
  background-image:
    linear-gradient(rgba(201,168,76,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.10) 1px, transparent 1px) !important;
}

body.bright-mode [class*="border-gold"],
body.bright-mode [class*="border-graphite"],
body.bright-mode .border,
body.bright-mode .border-t,
body.bright-mode .border-b,
body.bright-mode .border-l,
body.bright-mode .border-r {
  border-color: rgba(201,168,76,0.34) !important;
}

body.bright-mode [style*="background:var(--gold)"],
body.bright-mode [style*="background:var(--gold-border)"],
body.bright-mode .bg-gold\/20,
body.bright-mode .bg-gold\/25,
body.bright-mode .bg-gold\/30,
body.bright-mode .bg-gold\/40,
body.bright-mode .bg-gold\/50,
body.bright-mode .bg-gold\/60 {
  background: rgba(201,168,76,0.58) !important;
}

body.bright-mode [style*="background:linear-gradient(90deg,var(--gold"],
body.bright-mode [style*="background:linear-gradient(to right,transparent,var(--gold"],
body.bright-mode [style*="background:linear-gradient(to left,transparent,var(--gold"] {
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.72), transparent) !important;
}

body.bright-mode .process-timeline-line {
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.72) 10%, rgba(201,168,76,0.72) 90%, transparent) !important;
}

body.bright-mode .process-timeline-dot {
  background: linear-gradient(135deg, #E4C76B, #C9A84C) !important;
  border-color: #FFFFFF !important;
}

body.bright-mode .testimonial-card::before,
body.bright-mode .star-rating {
  color: #C9A84C !important;
  -webkit-text-fill-color: #C9A84C !important;
}

body.bright-mode .ghost-link,
body.bright-mode .ghost-link[style],
body.bright-mode a:not(.hero-cta-primary):not(.btn-outline):not(.hero-cta-secondary):not(.bg-gold):not(.contact-social):not(.footer-social-icon) {
  color: rgba(21,16,8,0.74) !important;
  -webkit-text-fill-color: rgba(21,16,8,0.74) !important;
}

body.bright-mode .ghost-link:hover,
body.bright-mode a:not(.hero-cta-primary):not(.btn-outline):not(.hero-cta-secondary):not(.bg-gold):not(.contact-social):not(.footer-social-icon):hover {
  color: #8A6418 !important;
  -webkit-text-fill-color: #8A6418 !important;
}

body.bright-mode img {
  opacity: 1;
}

body.bright-mode #hero img,
body.bright-mode .hero-bright-bg img,
body.bright-mode section.noise-overlay > .absolute img,
body.bright-mode section > .absolute.inset-0 img {
  opacity: 0.055 !important;
  filter: grayscale(20%) sepia(10%) !important;
}

body.bright-mode .bg-gradient-to-t,
body.bright-mode .bg-gradient-to-b.from-black,
body.bright-mode section .absolute.inset-0[class*="from-black"],
body.bright-mode section .absolute.inset-0[class*="via-black"] {
  opacity: 0 !important;
}

body.bright-mode #scroll-progress {
  background: linear-gradient(90deg, #9B7A1E, #C9A84C, #E4C76B) !important;
}

body.bright-mode::-webkit-scrollbar-track {
  background: #FFF7E5 !important;
}

body.bright-mode::-webkit-scrollbar-thumb {
  background: #C9A84C !important;
}

body.bright-mode::-webkit-scrollbar-thumb:hover {
  background: #8A6418 !important;
}

/* Royal Mode final priority corrections */
body.bright-mode #navbar .nav-link,
body.bright-mode #mobile-nav .nav-link,
body.bright-mode header#navbar a:not(.btn-outline) {
  color: #151008 !important;
  -webkit-text-fill-color: #151008 !important;
}

body.bright-mode #navbar .nav-link:hover,
body.bright-mode #navbar .nav-link.active,
body.bright-mode #mobile-nav .nav-link:hover,
body.bright-mode #mobile-nav .nav-link.active,
body.bright-mode header#navbar [style*="color:var(--gold)"],
body.bright-mode header#navbar .text-gold {
  color: #8A6418 !important;
  -webkit-text-fill-color: #8A6418 !important;
}

body.bright-mode .hero-cta-primary,
body.bright-mode .hero-cta-primary span,
body.bright-mode .hero-cta-primary *,
body.bright-mode .contact-submit-btn,
body.bright-mode .contact-submit-btn span,
body.bright-mode .contact-submit-btn *,
body.bright-mode a.bg-gold,
body.bright-mode a.bg-gold span,
body.bright-mode button.bg-gold,
body.bright-mode button.bg-gold span {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

body.bright-mode .btn-outline:not(:hover),
body.bright-mode .hero-cta-secondary:not(:hover),
body.bright-mode .btn-outline:not(:hover) span,
body.bright-mode .hero-cta-secondary:not(:hover) span {
  color: #8A6418 !important;
  -webkit-text-fill-color: #8A6418 !important;
}

body.bright-mode .btn-outline:hover,
body.bright-mode .hero-cta-secondary:hover,
body.bright-mode .btn-outline:hover span,
body.bright-mode .hero-cta-secondary:hover span {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

/* RAZZIFY ANIMATIONS & GLOBE */
.razzify-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #1b0f36 0%, #060608 100%);
}
.stars {
    position: absolute;
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 100px 200px #fff, 300px 400px #fff, 500px 600px #fff, 700px 800px #fff;
    animation: animStar 50s linear infinite;
}
.stars2 {
    width: 3px;
    height: 3px;
    box-shadow: 200px 100px #fff, 400px 300px #fff, 600px 500px #fff, 800px 700px #fff;
    animation: animStar 100s linear infinite;
}
@keyframes animStar {
    from { transform: translateY(0px); }
    to { transform: translateY(-1000px); }
}

.globe-container {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(138,43,226,0.3) 0%, rgba(10,10,14,0.8) 70%);
    box-shadow: 0 0 50px rgba(138,43,226,0.5), inset 0 0 20px rgba(138,43,226,0.8);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-center: center;
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.globe-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(138,43,226,0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138,43,226,0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 50%;
    animation: rotateGlobe 20s linear infinite;
}

@keyframes rotateGlobe {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.glow-btn {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: all 0.3s ease;
    border: none;
    color: white;
}
.glow-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.7);
    transform: translateY(-2px);
}

.glass-nav {
    background: rgba(10, 10, 14, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,51,102,0.2);
}


/* GLOBAL RAZZIFY SPACE BACKGROUND */
.global-star-bg {
  position: fixed; inset: 0; 
  background: radial-gradient(circle at center, #1b0f36 0%, #060608 100%); 
  z-index: -1;
  pointer-events: none;
}
.global-moving-stars {
  position: absolute; width: 2px; height: 2px; background: #fff;
  box-shadow: 10vw 20vh #fff, 30vw 40vh #fff, 50vw 60vh #fff, 70vw 80vh #fff, 90vw 10vh #fff, 20vw 90vh #fff, 60vw 30vh #fff, 80vw 70vh #fff;
  animation: driftStars 50s linear infinite !important;
}
.global-moving-stars::after {
  content: ""; position: absolute; top: 100vh; width: 2px; height: 2px; background: #fff;
  box-shadow: 10vw 20vh #fff, 30vw 40vh #fff, 50vw 60vh #fff, 70vw 80vh #fff, 90vw 10vh #fff, 20vw 90vh #fff, 60vw 30vh #fff, 80vw 70vh #fff;
}
.global-moving-stars2 {
  position: absolute; width: 3px; height: 3px; background: #FF3366;
  box-shadow: 15vw 25vh #FF3366, 35vw 45vh #FF3366, 55vw 65vh #FF3366, 75vw 85vh #FF3366, 95vw 15vh #FF3366;
  animation: driftStars 80s linear infinite !important;
  opacity: 0.6;
}
.global-moving-stars2::after {
  content: ""; position: absolute; top: 100vh; width: 3px; height: 3px; background: #FF3366;
  box-shadow: 15vw 25vh #FF3366, 35vw 45vh #FF3366, 55vw 65vh #FF3366, 75vw 85vh #FF3366, 95vw 15vh #FF3366;
}
@keyframes driftStars {
  from { transform: translateY(0); }
  to { transform: translateY(-100vh); }
}

/* CARDS IMPROVISATION */
.card-premium {
  background: rgba(18, 18, 26, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 51, 102, 0.15) !important;
  transition: all 0.4s ease !important;
}
.card-premium:hover {
  border-color: rgba(255, 51, 102, 0.6) !important;
  box-shadow: 0 0 35px rgba(255, 51, 102, 0.25) !important;
  transform: translateY(-5px) !important;
}
.glass-panel {
  background: rgba(18, 18, 26, 0.5) !important;
  backdrop-filter: blur(10px) !important;
}

#preloader-logo,
#hero-logo {
  backface-visibility: hidden;
  transform: translateZ(0);
}

