/* ==========================================================================
   GOLDEN EYE - PREMIUM REAL ESTATE & OPPORTUNITY PLATFORM
   Brand: Golden Eye | Motto: "Nazar Se Aage, Soch Se Pare"
   Primary Colors: Deep Navy (#031126, #071A3A), Metallic Gold (#C99520, #E7B94A),
   Champagne (#F5E3B2), Pure White (#FFFFFF)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Official Brand Palette */
  --navy-deep: #031126;
  --navy-primary: #071A3A;
  --navy-surface: #0a214a;
  --navy-card: #0d2858;
  --navy-card-border: rgba(201, 149, 32, 0.25);
  
  --gold-metallic: #C99520;
  --gold-bright: #E7B94A;
  --gold-champagne: #F5E3B2;
  --gold-dark: #8C6512;
  
  --gold-primary: #C99520;
  --gold-light: #E7B94A;
  --gold-lighter: #F5E3B2;
  --gold-gradient: linear-gradient(135deg, #E7B94A 0%, #C99520 60%, #94690C 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(201, 149, 32, 0.14) 0%, rgba(231, 185, 74, 0.04) 100%);
  --gold-glow: 0 4px 25px rgba(201, 149, 32, 0.22);
  --gold-glow-intense: 0 8px 35px rgba(231, 185, 74, 0.35);

  /* Subtle Atmospheric Luxury Gradients (Light Mode) */
  --bg-body-gradient: radial-gradient(ellipse 100% 55% at 50% -8%, rgba(201, 149, 32, 0.07) 0%, rgba(245, 227, 178, 0.02) 40%, transparent 65%),
                      radial-gradient(circle at 6% 32%, rgba(201, 149, 32, 0.03) 0%, transparent 45%),
                      radial-gradient(circle at 94% 68%, rgba(14, 165, 233, 0.025) 0%, transparent 45%),
                      linear-gradient(180deg, #FAF8F5 0%, #F8FAFC 20%, #F2F5F9 55%, #EBF1F7 85%, #E4ECF4 100%);
  --bg-surface-gradient: radial-gradient(ellipse 90% 45% at 50% 0%, rgba(201, 149, 32, 0.04) 0%, transparent 60%),
                         linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 45%, #F4F7FB 100%);
  --bg-surface-alt-gradient: radial-gradient(ellipse 90% 45% at 50% 0%, rgba(201, 149, 32, 0.03) 0%, transparent 60%),
                             linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 50%, #EAEFF5 100%);

  /* Surface & Base (Default Light) */
  --bg-dark: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F1F5F9;
  --bg-surface-elevated: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;
  --bg-section-alt: #F1F5F9;
  --bg-navy-dark: #031126;
  --bg-navy-light: #071A3A;
  
  /* Accents */
  --emerald: #10b981;
  --emerald-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --border-gold: rgba(201, 149, 32, 0.32);
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-card: rgba(0, 0, 0, 0.06);

  /* Typography Tokens (Modern Outfit + Plus Jakarta Sans Standard) */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Modern Gradients (EasyForCare Standard) */
  --grad-gold: linear-gradient(135deg, #C99520 0%, #E7B94A 50%, #94690C 100%);
  --grad-subtle: linear-gradient(180deg, #F8FAFC 0%, #FEFBF6 40%, #F5F0E6 100%);
  --grad-dark: linear-gradient(180deg, #071A3A 0%, #031126 100%);

  /* Text Colors */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-gold: #C99520;

  /* Header & Navigation */
  --header-bg: rgba(7, 26, 58, 0.92);
  --header-scrolled: rgba(3, 17, 38, 0.96);
  --header-border: rgba(201, 149, 32, 0.2);

  /* Liquid Glass & Specular Rim Architecture */
  --glass-bg: rgba(255, 255, 255, 0.86);
  --glass-bg-subtle: rgba(255, 255, 255, 0.68);
  --glass-border: rgba(15, 23, 42, 0.08);
  --glass-rim-top: rgba(255, 255, 255, 0.95);
  --glass-rim-bottom: rgba(0, 0, 0, 0.03);
  --glass-blur: 24px;
  --glass-saturate: 190%;

  /* Ray-Traced Elevation & Ambient Colored Radiance */
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 14px -2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 28px -6px rgba(15, 23, 42, 0.08), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 24px 50px -12px rgba(15, 23, 42, 0.12), 0 8px 20px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 36px 72px -16px rgba(15, 23, 42, 0.16), 0 12px 28px -6px rgba(15, 23, 42, 0.06);
  --shadow-gold: 0 16px 42px -8px rgba(201, 149, 32, 0.35), 0 4px 14px -2px rgba(201, 149, 32, 0.2);
  --shadow-emerald: 0 16px 42px -8px rgba(5, 150, 105, 0.3), 0 4px 14px -2px rgba(5, 150, 105, 0.18);

  /* Layout */
  --container-max: 1260px;
  --header-height: 80px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Mode Palette */
[data-theme="dark"],
.dark,
html.dark {
  /* Subtle Atmospheric Luxury Gradients (Dark Mode) */
  --bg-body-gradient: radial-gradient(ellipse 95% 55% at 50% -10%, rgba(231, 185, 74, 0.09) 0%, rgba(201, 149, 32, 0.025) 40%, transparent 65%),
                      radial-gradient(ellipse 70% 55% at 12% 35%, rgba(10, 33, 74, 0.55) 0%, transparent 60%),
                      radial-gradient(ellipse 70% 55% at 88% 70%, rgba(14, 42, 92, 0.45) 0%, transparent 60%),
                      radial-gradient(circle at 50% 98%, rgba(201, 149, 32, 0.045) 0%, transparent 50%),
                      linear-gradient(180deg, #051838 0%, #031126 22%, #020C1C 60%, #010610 100%);
  --bg-surface-gradient: radial-gradient(ellipse 85% 45% at 50% 0%, rgba(231, 185, 74, 0.07) 0%, transparent 60%),
                         radial-gradient(circle at 10% 50%, rgba(10, 33, 74, 0.35) 0%, transparent 50%),
                         linear-gradient(180deg, #09234D 0%, #071A3A 45%, #05142E 100%);
  --bg-surface-alt-gradient: radial-gradient(ellipse 85% 40% at 50% 0%, rgba(231, 185, 74, 0.045) 0%, transparent 55%),
                             linear-gradient(180deg, #051633 0%, #031126 50%, #020C1C 100%);

  --bg-dark: #031126;
  --bg-surface: #071A3A;
  --bg-surface-alt: #031126;
  --bg-surface-elevated: #0a214a;
  --bg-card: #071A3A;
  --bg-card-hover: #0c2756;
  --bg-section-alt: #031126;
  
  --border-gold: rgba(231, 185, 74, 0.35);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.07);

  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-gold: #E7B94A;

  --header-bg: rgba(3, 17, 38, 0.92);
  --header-scrolled: rgba(2, 10, 24, 0.96);
  --header-border: rgba(201, 149, 32, 0.28);

  /* Dark Liquid Glass & Specular Rim */
  --glass-bg: rgba(7, 26, 58, 0.78);
  --glass-bg-subtle: rgba(10, 33, 74, 0.62);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-rim-top: rgba(255, 255, 255, 0.22);
  --glass-rim-bottom: rgba(0, 0, 0, 0.5);
  --glass-blur: 28px;
  --glass-saturate: 200%;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 4px 16px -2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 14px 34px -6px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 28px 60px -12px rgba(0, 0, 0, 0.65), 0 8px 24px -4px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 38px 76px -16px rgba(0, 0, 0, 0.78), 0 12px 32px -6px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 16px 45px -8px rgba(231, 185, 74, 0.38), 0 4px 16px -2px rgba(231, 185, 74, 0.22);
  --shadow-emerald: 0 16px 45px -8px rgba(16, 185, 129, 0.32), 0 4px 16px -2px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   GLOBAL ATMOSPHERIC GRADIENT FOUNDATION (LIGHT & DARK MODE)
   ========================================================================== */
body,
body.bg-\[\#F8FAFC\] {
  background-color: #F8FAFC;
  background-image: var(--bg-body-gradient) !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

/* Light Mode Section Gradients (replaces flat white & flat slate) */
section.bg-\[\#FFFFFF\],
section.bg-white,
.bg-\[\#FFFFFF\],
.bg-white {
  background-color: #FFFFFF !important;
  background-image: var(--bg-surface-gradient) !important;
}

section.bg-\[\#F8FAFC\],
section.bg-slate-50,
section.bg-slate-50\/60,
section.bg-light,
.bg-slate-50,
.bg-slate-50\/60,
.bg-\[\#F8FAFC\],
.bg-light {
  background-color: #F8FAFC !important;
  background-image: var(--bg-surface-alt-gradient) !important;
}

/* Glassmorphic cards retain their pristine frosted glass material */
.card,
.apple-bento-card,
.apple-spec-card,
.apple-pillar-card,
.apple-step-card,
.apple-opportunity-card,
.apple-compare-card,
.model-box,
.calc-card,
.contact-form-wrapper,
.contact-info-card,
.apple-faq-card {
  background: var(--glass-bg) !important;
}

/* ==========================================================================
   DARK MODE BULLETPROOF OVERRIDES (OVERRIDE BOOTSTRAP & UTILITY CLUSTERS)
   ========================================================================== */
[data-theme="dark"] body,
.dark body,
html.dark body,
[data-theme="dark"] body.bg-\[\#F8FAFC\],
.dark body.bg-\[\#F8FAFC\],
html.dark body.bg-\[\#F8FAFC\],
[data-theme="dark"] body.dark\:bg-\[\#031126\],
.dark body.dark\:bg-\[\#031126\],
html.dark body.dark\:bg-\[\#031126\] {
  background-color: #031126 !important;
  background-image: var(--bg-body-gradient) !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  color: #CBD5E1 !important;
}

[data-theme="dark"] section.bg-\[\#FFFFFF\],
.dark section.bg-\[\#FFFFFF\],
html.dark section.bg-\[\#FFFFFF\],
[data-theme="dark"] section.bg-white,
.dark section.bg-white,
html.dark section.bg-white,
[data-theme="dark"] section.bg-light,
.dark section.bg-light,
html.dark section.bg-light,
[data-theme="dark"] section.dark\:bg-\[\#071A3A\],
.dark section.dark\:bg-\[\#071A3A\],
html.dark section.dark\:bg-\[\#071A3A\],
[data-theme="dark"] .bg-white,
.dark .bg-white,
html.dark .bg-white,
[data-theme="dark"] .bg-light,
.dark .bg-light,
html.dark .bg-light,
[data-theme="dark"] .dark\:bg-\[\#071A3A\],
.dark .dark\:bg-\[\#071A3A\],
html.dark .dark\:bg-\[\#071A3A\] {
  background-color: #071A3A !important;
  background-image: var(--bg-surface-gradient) !important;
}

[data-theme="dark"] section.bg-slate-50,
.dark section.bg-slate-50,
html.dark section.bg-slate-50,
[data-theme="dark"] section.bg-slate-50\/60,
.dark section.bg-slate-50\/60,
html.dark section.bg-slate-50\/60,
[data-theme="dark"] section.bg-\[\#F8FAFC\],
.dark section.bg-\[\#F8FAFC\],
html.dark section.bg-\[\#F8FAFC\],
[data-theme="dark"] section.dark\:bg-\[\#031126\],
.dark section.dark\:bg-\[\#031126\],
html.dark section.dark\:bg-\[\#031126\],
[data-theme="dark"] .bg-slate-50,
.dark .bg-slate-50,
html.dark .bg-slate-50,
[data-theme="dark"] .bg-slate-50\/60,
.dark .bg-slate-50\/60,
html.dark .bg-slate-50\/60,
[data-theme="dark"] .bg-\[\#F8FAFC\],
.dark .bg-\[\#F8FAFC\],
html.dark .bg-\[\#F8FAFC\],
[data-theme="dark"] .dark\:bg-\[\#031126\],
.dark .dark\:bg-\[\#031126\],
html.dark .dark\:bg-\[\#031126\] {
  background-color: #031126 !important;
  background-image: var(--bg-surface-alt-gradient) !important;
}

[data-theme="dark"] .dark\:text-white,
.dark .dark\:text-white,
html.dark .dark\:text-white {
  color: #FFFFFF !important;
}

[data-theme="dark"] .dark\:text-slate-100,
.dark .dark\:text-slate-100,
html.dark .dark\:text-slate-100 {
  color: #F1F5F9 !important;
}

[data-theme="dark"] .dark\:text-slate-300,
.dark .dark\:text-slate-300,
html.dark .dark\:text-slate-300 {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .dark\:text-slate-400,
.dark .dark\:text-slate-400,
html.dark .dark\:text-slate-400 {
  color: #94A3B8 !important;
}

[data-theme="dark"] .text-slate-900,
.dark .text-slate-900 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .text-slate-800,
.dark .text-slate-800 {
  color: #F1F5F9 !important;
}

[data-theme="dark"] .text-\[\#0F172A\],
.dark .text-\[\#0F172A\],
html.dark .text-\[\#0F172A\] {
  color: #FFFFFF !important;
}

[data-theme="dark"] .text-dark,
.dark .text-dark,
html.dark .text-dark {
  color: #FFFFFF !important;
}

/* Form controls & Select Option Fixes in Dark Mode */
select option {
  background-color: #FFFFFF;
  color: #0F172A;
}

[data-theme="dark"] select,
.dark select,
[data-theme="dark"] select option,
.dark select option {
  background-color: #071A3A !important;
  color: #FFFFFF !important;
}

[data-theme="dark"] input::placeholder,
.dark input::placeholder,
[data-theme="dark"] textarea::placeholder,
.dark textarea::placeholder {
  color: #94A3B8 !important;
  opacity: 0.65;
}

[data-theme="dark"] .calc-range,
.dark .calc-range {
  background: rgba(255, 255, 255, 0.18) !important;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  background-image: var(--bg-body-gradient);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.brand-font {
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-emerald {
  color: var(--emerald);
}

.text-gold {
  color: var(--gold-primary);
}

.text-muted {
  color: var(--text-muted);
}

.lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ==========================================================================
   EASYFORCARE DISPLAY TYPOGRAPHY & GRADIENTS
   ========================================================================== */
.h-display {
  font-family: var(--font-heading) !important;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.h-section {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.text-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gold {
  color: var(--gold-primary) !important;
}

/* Ambient Radial Lighting Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}
.hero-blob--a {
  top: -10%;
  right: -5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201, 149, 32, 0.14), transparent 70%);
}
.hero-blob--b {
  bottom: -12%;
  left: -6%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10), transparent 70%);
}

/* Modern Eyebrow Capsule (EasyForCare Pattern) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(201, 149, 32, 0.08);
  color: #a6760f;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 149, 32, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C99520;
  box-shadow: 0 0 8px rgba(201, 149, 32, 0.8);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite ease-in-out;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

[data-theme="dark"] .eyebrow,
.dark .eyebrow {
  background: rgba(231, 185, 74, 0.12);
  color: #E7B94A;
  border-color: rgba(231, 185, 74, 0.32);
}
[data-theme="dark"] .eyebrow .dot,
.dark .eyebrow .dot {
  background: #E7B94A;
  box-shadow: 0 0 10px rgba(231, 185, 74, 0.9);
}

/* Trust Feature Row & Chips (EasyForCare Pattern) */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}
.trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 149, 32, 0.4);
  box-shadow: var(--shadow-sm);
}
.trust-ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 149, 32, 0.12);
  color: #C99520;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-ic svg {
  width: 15px;
  height: 15px;
}
.trust span {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

[data-theme="dark"] .trust,
.dark .trust {
  background: rgba(7, 26, 58, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .trust-ic,
.dark .trust-ic {
  background: rgba(231, 185, 74, 0.15);
  color: #E7B94A;
}
[data-theme="dark"] .trust span,
.dark .trust span {
  color: #FFFFFF;
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 1.05rem;
  background: rgba(201, 149, 32, 0.08);
  border: 1px solid rgba(201, 149, 32, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a6760f;
  margin-bottom: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(201, 149, 32, 0.06);
}

[data-theme="dark"] .section-tag,
.dark .section-tag {
  background: rgba(231, 185, 74, 0.12);
  border-color: rgba(231, 185, 74, 0.32);
  color: #e7b94a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.1rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   NAVIGATION BAR (CLEAN FROSTED FLOATING HEADER - EASYFORCARE PATTERN)
   ========================================================================== */
.top-utility-bar {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 2px 14px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .site-header,
.dark .site-header {
  background: rgba(3, 17, 38, 0.95);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.5);
}

.site-header.scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
  border-bottom-color: rgba(201, 149, 32, 0.3);
}

[data-theme="dark"] .site-header.scrolled,
.dark .site-header.scrolled {
  background: rgba(3, 17, 38, 0.96);
  box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.7);
  border-bottom-color: rgba(201, 149, 32, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-logo-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand-logo-hr {
  height: 52px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  transition: height 0.25s ease, max-width 0.25s ease;
}

.site-header.scrolled .brand-logo-hr {
  height: 44px;
  max-width: 240px;
}

.brand-logo-sq {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(179, 135, 40, 0.25));
}

@media (max-width: 768px) {
  .brand-logo-hr {
    height: 44px;
    max-width: 220px;
  }
  .site-header.scrolled .brand-logo-hr {
    height: 38px;
    max-width: 195px;
  }
  .brand-logo-sq {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .brand-logo-hr {
    height: 40px;
    max-width: 195px;
  }
  .site-header.scrolled .brand-logo-hr {
    height: 36px;
    max-width: 175px;
  }
  .brand-logo-sq {
    width: 38px;
    height: 38px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  position: relative;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  letter-spacing: -0.01em;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}

[data-theme="dark"] .nav-link,
.dark .nav-link {
  color: #E2E8F0;
}

.nav-link:hover,
.nav-link.active {
  color: #B4860B;
  background: rgba(201, 149, 32, 0.09);
}

[data-theme="dark"] .nav-link:hover,
.dark .nav-link:hover,
[data-theme="dark"] .nav-link.active,
.dark .nav-link.active {
  color: #F5E3B2;
  background: rgba(255, 255, 255, 0.08);
}

/* Multi-dimensional Dropdown Menus (Apple Frosted Glass Flyout) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.active .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 285px;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1.25rem;
  padding: 0.65rem;
  box-shadow: 0 20px 48px -10px rgba(15, 23, 42, 0.16), 0 4px 16px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

[data-theme="dark"] .nav-dropdown-menu,
.dark .nav-dropdown-menu {
  background: #071A3A;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 52px -10px rgba(0, 0, 0, 0.75);
}

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

.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0.65rem 0.95rem;
  border-radius: 0.85rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: rgba(201, 149, 32, 0.08);
  transform: translateX(3px);
}

[data-theme="dark"] .nav-dropdown-item:hover,
.dark .nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(3px);
}

.nav-dropdown-item .item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
}

.nav-dropdown-item .item-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
  text-align: left;
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-actions .btn-gold {
  border-radius: 9999px;
  padding: 0.45rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(201, 149, 32, 0.28);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-actions .btn-gold:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(201, 149, 32, 0.4);
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--gold-gradient-soft);
  transform: rotate(20deg);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  position: relative;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 3px;
  transition: all var(--transition-normal);
  transform-origin: center;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(12px);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   OFF-CANVAS MOBILE DRAWER & BACKDROP
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 1990;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid rgba(201, 149, 32, 0.35);
  box-shadow: -12px 0 45px rgba(0, 0, 0, 0.16);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

[data-theme="dark"] .mobile-drawer,
.dark .mobile-drawer {
  background: rgba(7, 26, 58, 0.96);
  border-left: 1px solid rgba(201, 149, 32, 0.45);
  box-shadow: -15px 0 55px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface-elevated);
}

.drawer-header img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain;
}

.drawer-close {
  font-size: 2rem;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.drawer-body {
  padding: 1.5rem;
  flex: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-sub-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
}

.mobile-sub-link:hover {
  color: var(--gold-primary);
  background: var(--gold-gradient-soft);
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface-elevated);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ==========================================================================
   MOBILE BOTTOM BAR (DISABLED - CLEAN EASYFORCARE FLOW)
   ========================================================================== */
.mobile-bottom-bar {
  display: none !important;
}

@media (max-width: 860px) {
  .mobile-bottom-bar {
    display: none !important;
  }
  body {
    padding-bottom: 0 !important;
  }
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #F3CF65 0%, #D4AF37 50%, #B8860B 100%);
  color: #070a12;
  box-shadow: 0 4px 18px rgba(201, 149, 32, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 149, 32, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: #000;
}

.btn-outline-gold {
  background: rgba(201, 149, 32, 0.05);
  color: #B8860B;
  border: 1.5px solid rgba(201, 149, 32, 0.35);
  border-radius: var(--radius-full);
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
}

[data-theme="dark"] .btn-outline-gold,
.dark .btn-outline-gold {
  color: #E7B94A;
  border-color: rgba(231, 185, 74, 0.35);
  background: rgba(231, 185, 74, 0.08);
}

.btn-outline-gold:hover {
  background: rgba(201, 149, 32, 0.15);
  border-color: rgba(201, 149, 32, 0.6);
  transform: translateY(-2px);
  color: #8C6407;
}

[data-theme="dark"] .btn-outline-gold:hover,
.dark .btn-outline-gold:hover {
  color: #FFFFFF;
  background: rgba(231, 185, 74, 0.2);
  border-color: rgba(231, 185, 74, 0.7);
}

.btn-emerald {
  background: var(--emerald-gradient);
  color: #ffffff;
  box-shadow: var(--emerald-glow);
  border-radius: var(--radius-full);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.35);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.02rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero-wrapper {
  position: relative;
  min-height: 90vh;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--bg-overlay-hero);
  pointer-events: none;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.1) brightness(0.85);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero-content h1,
.hero-content p {
  color: #ffffff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(243, 207, 101, 0.6);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fae69e;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #e2e8f0;
  max-width: 680px;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

/* Metrics Strip */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.metric-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(243, 207, 101, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fae69e;
  flex-shrink: 0;
}

.metric-text h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.metric-text p {
  font-size: 0.82rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   CARD SYSTEM & GRIDS
   ========================================================================== */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: inset 0 1.5px 1px var(--glass-rim-top), inset 0 -1px 1px var(--glass-rim-bottom), var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .card,
.dark .card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1.5px 1px var(--glass-rim-top), inset 0 -1px 1px var(--glass-rim-bottom), var(--shadow-md);
}

.card:hover {
  border-color: rgba(201, 149, 32, 0.48);
  transform: translateY(-8px) scale(1.008);
  box-shadow: inset 0 2px 1.5px var(--glass-rim-top), inset 0 -1px 1px var(--glass-rim-bottom), var(--shadow-gold);
}

[data-theme="dark"] .card:hover,
.dark .card:hover {
  border-color: rgba(231, 185, 74, 0.55);
  box-shadow: inset 0 2px 1.5px var(--glass-rim-top), inset 0 -1px 1px var(--glass-rim-bottom), var(--shadow-gold);
}

.card-gold-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  box-shadow: 0 2px 12px rgba(201, 149, 32, 0.45);
  z-index: 2;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ==========================================================================
   FOOTER (STAYS CLASSIC LUXURY NAVY FOR PRESTIGE)
   ========================================================================== */
.site-footer {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 149, 32, 0.07) 0%, transparent 60%),
              linear-gradient(180deg, #090e1a 0%, #050811 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  position: relative;
  color: #cbd5e1;
}

.site-footer h4,
.site-footer .brand-title {
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-logo-hr,
.footer-logo .brand-logo-hr {
  height: 56px !important;
  max-width: 290px !important;
  object-fit: contain;
}

@media (max-width: 640px) {
  .footer-brand .brand-logo-hr,
  .footer-logo .brand-logo-hr {
    height: 46px !important;
    max-width: 230px !important;
  }
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 1.2rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-lighter);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #94a3b8;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--gold-lighter);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  color: #fff;
  text-decoration: none;
  position: relative;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

.float-btn-pdf {
  background: var(--gold-gradient);
  color: #070a12;
  box-shadow: var(--shadow-gold);
}

.float-btn-whatsapp {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.float-tooltip {
  position: absolute;
  right: 64px;
  background: #0f172a;
  border: 1px solid var(--border-gold);
  color: #fff;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  font-size: 0.78rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none !important;
  }
  
  .nav-actions {
    display: none !important;
  }
  
  .site-header .theme-toggle-btn {
    display: none !important;
  }
  
  .mobile-bottom-bar {
    display: flex;
  }
  
  .floating-actions {
    bottom: 76px;
  }
  
  body {
    padding-bottom: 68px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .top-utility-bar {
    padding: 0.35rem 0;
    font-size: 0.72rem;
  }

  .top-utility-left {
    gap: 0.8rem;
  }

  .brand-logo-img {
    width: 40px;
    height: 40px;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  .section-padding {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .section-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* ==========================================================================
   TAILWIND-COMPATIBLE & NATIVE LUXURY ANIMATIONS
   ========================================================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.25);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.55), 0 0 10px rgba(184, 134, 11, 0.3);
  }
}

@keyframes gradientX {
  0%, 100% {
    background-size: 200% 200%;
    background-position: left center;
  }
  50% {
    background-size: 200% 200%;
    background-position: right center;
  }
}

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

@keyframes bounceSubtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes btnShimmerSlide {
  0% {
    left: -150%;
  }
  35%, 100% {
    left: 150%;
  }
}

.animate-float {
  animation: float 3.5s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.4) 50%, rgba(212, 175, 55, 0.1) 100%);
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-gradient-x {
  animation: gradientX 4s ease infinite;
}

.animate-spin-slow {
  animation: spinSlow 20s linear infinite;
}

.animate-bounce-subtle {
  animation: bounceSubtle 2s ease-in-out infinite;
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: btnShimmerSlide 3.5s infinite;
}

/* ==========================================================================
   APPLE PRO LUXURY GLASSMORPHISM SUITE
   ========================================================================== */
.apple-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: 1.75rem;
  box-shadow: inset 0 1.5px 1px var(--glass-rim-top), inset 0 -1px 1px var(--glass-rim-bottom), var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .apple-glass-card,
.dark .apple-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1.5px 1px var(--glass-rim-top), inset 0 -1px 1px var(--glass-rim-bottom), var(--shadow-lg);
}

.apple-glass-card:hover {
  transform: translateY(-8px) scale(1.008);
  border-color: rgba(201, 149, 32, 0.5);
  box-shadow: inset 0 2px 1.5px var(--glass-rim-top), inset 0 -1px 1px var(--glass-rim-bottom), var(--shadow-gold);
}

[data-theme="dark"] .apple-glass-card:hover,
.dark .apple-glass-card:hover {
  border-color: rgba(231, 185, 74, 0.6);
  box-shadow: inset 0 2px 1.5px var(--glass-rim-top), inset 0 -1px 1px var(--glass-rim-bottom), var(--shadow-gold);
}

.apple-glass-card-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: var(--gold-gradient);
  box-shadow: 0 2px 14px rgba(201, 149, 32, 0.5);
  z-index: 2;
}

.apple-spotlight {
  position: relative;
}

.apple-spotlight::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 92vw);
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(201, 149, 32, 0.12) 0%, rgba(201, 149, 32, 0.02) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .apple-spotlight::before,
.dark .apple-spotlight::before {
  background: radial-gradient(ellipse at center, rgba(231, 185, 74, 0.16) 0%, rgba(201, 149, 32, 0.03) 50%, transparent 70%);
}

.apple-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 1px var(--glass-rim-top), var(--shadow-xs);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.2s ease;
}

[data-theme="dark"] .apple-metric-pill,
.dark .apple-metric-pill {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  box-shadow: inset 0 1px 1px var(--glass-rim-top), var(--shadow-sm);
  color: #FFFFFF;
}

.apple-metric-pill:hover {
  transform: scale(1.04);
  border-color: rgba(201, 149, 32, 0.4);
  box-shadow: inset 0 1.5px 1px var(--glass-rim-top), 0 6px 18px rgba(201, 149, 32, 0.18);
}

.apple-spec-tile {
  background: var(--glass-bg-subtle);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 1.4rem;
  padding: 1.6rem;
  box-shadow: inset 0 1px 1px var(--glass-rim-top), var(--shadow-xs);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

[data-theme="dark"] .apple-spec-tile,
.dark .apple-spec-tile {
  background: var(--glass-bg-subtle);
  border-color: var(--glass-border);
  box-shadow: inset 0 1px 1px var(--glass-rim-top), var(--shadow-xs);
}

.apple-spec-tile:hover {
  border-color: rgba(201, 149, 32, 0.48);
  background: var(--glass-bg);
  transform: translateY(-6px) scale(1.01);
  box-shadow: inset 0 1.5px 1px var(--glass-rim-top), var(--shadow-gold);
}

[data-theme="dark"] .apple-spec-tile:hover {
  background: rgba(10, 33, 74, 0.9);
}
