
/* --- Root Variables & Theme Tokens (Default: Cyber Gold & Emerald Obsidian) --- */
:root,
[data-theme="dark"] {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --bg-primary: #0B0E11;      /* Deep Cyber Obsidian Dark Background */
  --bg-secondary: #11161B;    /* Card & Section Elevated Obsidian */
  --bg-card: #151B22;         /* High-Status Glassmorphic Card Slate */
  --bg-glass: rgba(17, 22, 27, 0.88);

  --primary: #F3C65F;         /* Polished 3D Champagne Gold */
  --primary-hover: #DFBA73;   /* Rich Warm Gold Hover */
  --primary-glow: rgba(243, 198, 95, 0.18);
  --primary-glow-heavy: rgba(243, 198, 95, 0.35);

  --emerald: #10B981;         /* Radiant Cyber Emerald Green */
  --emerald-hover: #059669;   /* Deep Emerald Glow */
  --emerald-glow: rgba(16, 185, 129, 0.25);
  --emerald-border: rgba(16, 185, 129, 0.45);

  --accent: #F3C65F;          /* Highlight Gold */
  --accent-hover: #E2BA6E;
  --accent-glow: rgba(243, 198, 95, 0.15);

  --text-primary: #FFFFFF;    /* Crisp Pure White */
  --text-secondary: #E4E4E7;  /* High Contrast Light Zinc */
  --text-muted: #9CA3AF;      /* Soft Muted Gray */

  --border: rgba(243, 198, 95, 0.22);          /* Cyber Gold Rim Border */
  --border-hover: rgba(16, 185, 129, 0.5);     /* Emerald Cyber Glow Border */
  --border-focus: #10B981;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.22), 0 0 20px rgba(243, 198, 95, 0.15);

  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --max-width: 1440px;

  /* Hero Section Theme Tokens */
  --hero-bg: radial-gradient(circle at 15% 25%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 85% 75%, rgba(243, 198, 95, 0.12) 0%, transparent 50%),
              linear-gradient(180deg, #0B0E11 0%, #11161B 100%);
  --hero-card-bg: rgba(21, 27, 34, 0.85);
  --hero-card-border: rgba(16, 185, 129, 0.35);
  --hero-card-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(16, 185, 129, 0.15);
  --hero-title-color: #FFFFFF;
  --hero-text-color: #E4E4E7;
  --hero-guarantee-color: #E4E4E7;
  --scarcity-bg: rgba(16, 185, 129, 0.15);
  --scarcity-border: rgba(16, 185, 129, 0.4);
  --scarcity-text: #10B981;
  --header-bg: rgba(11, 14, 17, 0.95);
  --header-border: rgba(243, 198, 95, 0.3);
  --nav-text: #F4F4F5;
}

/* --- Light Luxury Alabaster Theme Token Overrides --- */
[data-theme="light"] {
  --bg-primary: #F8F9FA;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.92);

  --primary: #B8860B;
  --primary-hover: #917247;
  --primary-glow: rgba(184, 134, 11, 0.12);
  --primary-glow-heavy: rgba(184, 134, 11, 0.25);

  --emerald: #059669;
  --emerald-hover: #047857;
  --emerald-glow: rgba(5, 150, 105, 0.18);
  --emerald-border: rgba(5, 150, 105, 0.35);

  --accent: #B8860B;
  --accent-hover: #917247;
  --accent-glow: rgba(184, 134, 11, 0.1);

  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;

  --border: rgba(184, 134, 11, 0.25);
  --border-hover: rgba(5, 150, 105, 0.45);
  --border-focus: #059669;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 35px rgba(5, 150, 105, 0.12);

  --hero-bg: radial-gradient(circle at 15% 25%, rgba(5, 150, 105, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 85% 75%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, #F3F4F6 0%, #F8F9FA 100%);
  --hero-card-bg: rgba(255, 255, 255, 0.95);
  --hero-card-border: rgba(5, 150, 105, 0.25);
  --hero-card-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  --hero-title-color: #111827;
  --hero-text-color: #4B5563;
  --hero-guarantee-color: #4B5563;
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-border: rgba(184, 134, 11, 0.25);
  --nav-text: #111827;
}

/* Global Body Styling */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.4s ease, color 0.4s ease;
}

[data-theme="light"] body {
  background-color: #F8F9FA !important;
  color: #111827 !important;
}

[data-theme="light"] .why-card,
[data-theme="light"] .how-step-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .city-hub-card {
  background-color: #FFFFFF !important;
  border-color: rgba(184, 134, 11, 0.2) !important;
  color: #111827 !important;
}

[data-theme="dark"] .wizard-card,
[data-theme="dark"] .card,
[data-theme="dark"] .wizard-container {
  background-color: #121217 !important;
  border-color: rgba(172, 138, 90, 0.25) !important;
  color: #FFFFFF !important;
}

/* Theme Switcher Button Hover & Smooth Transition */
.theme-toggle-btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.theme-toggle-btn:hover {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 0 20px rgba(243, 198, 95, 0.4) !important;
  border-color: var(--primary-hover) !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  background-image: 
    linear-gradient(rgba(24, 24, 27, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 24, 27, 0.012) 1px, transparent 1px);
  background-size: 50px 50px;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- 4K Ultra-HD Hardware-Accelerated Image & Logo Crispness Optimization --- */
img, 
.blog-card-img, 
.city-hub-card div, 
.service-card-img,
.hero-image-frame img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  filter: contrast(1.04) saturate(1.12) brightness(1.02);
}

img[src*="logo"],
.logo img,
.nav-logo img,
.brand-logo img,
.footer-logo img,
header img[src*="logo"] {
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: crisp-edges !important;
  image-rendering: high-quality !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  transform: translateZ(0) !important;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)) contrast(1.08) saturate(1.15) brightness(1.02) !important;
}

/* --- 7-Star Luxury Pill Button & Service Icon Box Styles --- */
.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.btn-service-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, #F3C65F 0%, #AC8A5A 100%);
  color: #09090B !important;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(243, 198, 95, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.btn-service-pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(243, 198, 95, 0.45);
  background: linear-gradient(135deg, #FFF0BD 0%, #DFBA73 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Reusable Components & Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 40px 0; /* Reduced padding to make page sections more compact */
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-primary {
  background-color: var(--primary-glow);
  color: var(--primary);
  border: 1px solid rgba(197, 168, 128, 0.25);
}

.badge-accent {
  background-color: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(226, 232, 240, 0.15);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #FFE082 0%, #D4AF37 50%, #B8860B 100%) !important;
  color: #09090B !important;
  box-shadow: 
    0 10px 30px rgba(212, 175, 55, 0.4), 
    inset 0 2px 0 rgba(255, 255, 255, 0.6), 
    inset 0 -3px 5px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid #FFE082 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(30deg);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(5px);
}

.btn-primary:hover::after {
  left: 120%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFF0B2 0%, #E6C247 50%, #CC9914 100%) !important;
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(212, 175, 55, 0.6), 
    inset 0 2px 0 rgba(255, 255, 255, 0.8), 
    inset 0 -3px 5px rgba(0, 0, 0, 0.15) !important;
}

.btn-accent {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent) 100%);
  color: #09090B;
}

.btn-accent:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -6px rgba(226, 232, 240, 0.25);
}

.btn-secondary {
  background: rgba(20, 20, 22, 0.8) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(172, 138, 90, 0.5) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-secondary:hover {
  border-color: #D4AF37 !important;
  background: rgba(172, 138, 90, 0.15) !important;
  box-shadow: 0 15px 40px rgba(172, 138, 90, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --- Header & Navigation (Premium Floating Glass) --- */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: var(--max-width);
  z-index: 1000;
  background: rgba(11, 11, 12, 0.82); /* Premium dark glass */
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(172, 138, 90, 0.25); /* Sleek gold border */
  border-radius: 24px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.25),
    0 0 25px rgba(172, 138, 90, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible; /* Prevent clipping shiny elements */
}

/* Shimmering Bottom Border */
.header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.15) 15%, var(--primary) 50%, rgba(197, 168, 128, 0.15) 85%, transparent);
  background-size: 200% 100%;
  animation: shimmerBorder 8s linear infinite;
  pointer-events: none;
}

@keyframes shimmerBorder {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px; /* Accommodate a larger logo cleanly */
  padding: 0 80px; /* Increased lateral padding for breathing room */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo img {
  height: 54px; /* Zoomed-in prominent logo size */
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Scrolled Header State (Stripe/Apple style) --- */
.header.header-scrolled {
  top: 8px;
  background: rgba(11, 11, 12, 0.96); /* Darker solid glass on scroll */
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(172, 138, 90, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.header.header-scrolled .header-container {
  height: 64px;
  padding: 0 54px; /* Increased scrolled lateral padding */
}

.header.header-scrolled .logo {
  padding: 0;
}

.header.header-scrolled .logo img {
  height: 42px !important; /* Smoothly shrinks on scroll */
}

.logo {
  display: flex;
  align-items: center;
  padding: 0;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover {
  transform: scale(1.03);
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}


.nav {
  position: relative; /* Required for absolute indicator placement */
  display: flex;
  align-items: center;
  gap: 12px; /* Closer gap for elegant capsule tabs */
}

.nav-indicator-pill {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.07); /* Light translucent glass highlight on dark */
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  z-index: 0;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  opacity: 0;
  border: 1px solid rgba(172, 138, 90, 0.2);
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72); /* Semi-transparent white text for inactive links */
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(172, 138, 90, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: #09090B !important;
  background: linear-gradient(135deg, #F3C65F 0%, #DFBA73 100%);
  border-color: rgba(243, 198, 95, 0.4);
  box-shadow: 0 4px 15px rgba(243, 198, 95, 0.3);
  font-weight: 700;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Premium gradient CTA button specifically for header */
.header-cta .btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #09090B; /* High contrast black text on gold badge */
  font-weight: 800;
  padding: 10px 24px;
  box-shadow: 0 4px 15px rgba(172, 138, 90, 0.25);
  transition: all 0.3s ease;
}

.header-cta .btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 140%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: all 0.6s ease;
}

.header-cta .btn-primary:hover {
  background: linear-gradient(135deg, #E2C9A6 0%, #C5A880 100%);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.45);
  transform: translateY(-1px);
}

.header-cta .btn-primary:hover::after {
  left: 120%;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.phone-link svg {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #FFFFFF; /* High-contrast white for dark header */
}

/* --- SPA View Navigation System --- */
.spa-view {
  display: none;
  animation: fadeIn var(--transition-slow);
}

.spa-view.active {
  display: block;
}

/* --- Hero Section (Identical Layout & Card Structure in Both Themes) --- */
.hero {
  position: relative;
  padding-top: 110px;
  padding-bottom: 55px;
  background: var(--hero-bg) !important;
  overflow: hidden;
  transition: background 0.4s ease;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: var(--hero-card-bg) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid var(--hero-card-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 36px 40px !important;
  box-shadow: var(--hero-card-shadow) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-content h1 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--hero-title-color) !important;
  -webkit-text-fill-color: initial !important;
  transition: color 0.4s ease;
}

.hero-content h1 span.highlight-gold {
  background: linear-gradient(135deg, #F3C65F 0%, #AC8A5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-content p {
  font-size: 1.08rem;
  color: var(--hero-text-color) !important;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.6;
}

/* --- 7-Star Ultra-Premium Hero Card Status & Action Components --- */
.hero-top-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.status-pill-gold {
  background: rgba(172, 138, 90, 0.12);
  border: 1px solid rgba(172, 138, 90, 0.35);
  color: var(--primary);
}

.status-pill-emerald {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10B981;
}

.hero-urgency-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: var(--hero-title-color);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.live-pulse-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.live-pulse-dot::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #EF4444;
  border-radius: 50%;
  animation: pulsePreloader 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.75;
}

.live-pulse-dot::after {
  content: '';
  position: relative;
  width: 8px;
  height: 8px;
  background: #EF4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #EF4444;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #F3C65F 0%, #AC8A5A 100%);
  color: #09090B !important;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(243, 198, 95, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  cursor: pointer;
}

.btn-hero-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(243, 198, 95, 0.5);
  background: linear-gradient(135deg, #FFF0BD 0%, #DFBA73 100%);
}

.btn-hero-cta .phone-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header {
  background: var(--header-bg) !important;
  border-bottom: 1px solid var(--header-border) !important;
  transition: all 0.4s ease;
}

.nav-link {
  color: var(--nav-text) !important;
  transition: color 0.4s ease;
}

.scarcity-tracker {
  background: var(--scarcity-bg) !important;
  border: 1px solid var(--scarcity-border) !important;
  color: var(--scarcity-text) !important;
  transition: all 0.4s ease;
}

.hero-guarantee-item {
  color: var(--hero-guarantee-color) !important;
  transition: color 0.4s ease;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.stat-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* --- Lead Estimator Wizard Widget --- */
.wizard-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
}

.wizard-header {
  margin-bottom: 32px;
}

.wizard-progress-bar {
  height: 4px;
  background-color: rgba(24, 24, 27, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.wizard-progress-fill {
  height: 100%;
  width: 33.3%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-steps-indicators {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Connecting timeline line behind steps */
.wizard-steps-indicators::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--border);
  z-index: 1;
  transform: translateY(-50%);
}

.wizard-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-card); /* Mask the line behind */
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.wizard-step-indicator span {
  font-weight: 600;
  color: var(--text-muted);
}

.wizard-step-indicator.active {
  color: #09090B;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(172, 138, 90, 0.25);
}

.wizard-step-indicator.active span {
  color: #09090B;
}

.wizard-step-indicator.completed {
  color: #FFFFFF;
  background: var(--accent);
  border-color: var(--accent);
}

.wizard-step-indicator.completed span {
  color: rgba(255, 255, 255, 0.8);
}

.wizard-step {
  display: none;
  animation: slideIn var(--transition-normal);
}

.wizard-step.active {
  display: block;
}

.wizard-step h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-weight: 600;
}

/* Grid Cards for Wizard */
.grid-4, .grid-3 {
  display: grid;
  gap: 12px;
}

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

.grid-3 {
  grid-template-columns: 1fr;
}

.wizard-card {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.wizard-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.wizard-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.wizard-card:hover {
  border-color: var(--border-hover);
  background-color: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.wizard-card.active {
  border-color: var(--primary);
  background-color: var(--primary-glow);
  box-shadow: var(--shadow-glow);
}

.wizard-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-group input, .input-group textarea {
  padding: 14px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 1rem;
  transition: var(--transition-fast);
  background-color: rgba(255, 255, 255, 0.02);
  color: #FFFFFF;
}

.input-group input:focus, .input-group textarea:focus {
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Wizard Price Reveal Box */
.price-reveal-box {
  text-align: center;
  padding: 28px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
}

.estimated-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.price-reveal-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* --- Trust / Logo Bar --- */
.trust-bar {
  border-top: 1px solid rgba(172, 138, 90, 0.2);
  border-bottom: 1px solid rgba(172, 138, 90, 0.2);
  background: linear-gradient(90deg, #09090B 0%, #15151A 50%, #09090B 100%);
  padding: 30px 0;
  box-shadow: inset 0 10px 20px rgba(0,0,0,0.2), inset 0 -10px 20px rgba(0,0,0,0.2);
}

.trust-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.trust-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  opacity: 0.9;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.trust-icon {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  filter: drop-shadow(0 0 8px rgba(172, 138, 90, 0.6));
}

/* --- Services Section --- */
.services-section {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.03) 0%, rgba(197, 168, 128, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.services-grid {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 36px auto;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.service-item-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--primary-glow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 1.3rem;
  border: 1px solid rgba(197, 168, 128, 0.15);
}

.service-item-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.service-item-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 26px;
  flex-grow: 1;
  font-weight: 300;
}

.service-item-card .card-link {
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-item-card .card-link:hover {
  gap: 10px;
  color: var(--primary-hover);
}

/* --- Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.why-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 18px;
  transition: var(--transition-normal);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.why-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.why-card-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* --- Service Area Checker Widget --- */
.zip-checker-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.zip-checker-card h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.zip-checker-card p {
  color: var(--text-secondary);
  margin-bottom: 26px;
  font-weight: 300;
}

.search-bar-container {
  max-width: 500px;
  margin: 0 auto;
}

.search-bar {
  display: flex;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px;
  transition: var(--transition-fast);
}

.search-bar:focus-within {
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.search-bar input {
  flex-grow: 1;
  background: none;
  border: none;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-feedback {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 24px;
  transition: var(--transition-fast);
}

.search-feedback.success {
  color: var(--primary);
}

.search-feedback.error {
  color: #EF4444;
}

/* --- Testimonials Section --- */
.testimonials-section {
  background-color: #09090B;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(172, 138, 90, 0.15);
}
.testimonials-section .section-header h2 {
  color: #FFFFFF;
}
.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, rgba(197, 168, 128, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.testimonials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(172, 138, 90, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(172, 138, 90, 0.1);
  border-color: rgba(172, 138, 90, 0.4);
}

.quote-watermark {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 120px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(172, 138, 90, 0.08);
  font-style: italic;
  pointer-events: none;
  z-index: 0;
}

.stars-row {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  filter: drop-shadow(0 0 4px rgba(172, 138, 90, 0.5));
}

.testimonial-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, serif;
  font-style: italic;
  margin-bottom: 30px;
  flex-grow: 1;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(172, 138, 90, 0.5);
  box-shadow: 0 0 10px rgba(172, 138, 90, 0.3);
}

.user-info h4 {
  font-size: 1rem;
  margin: 0;
  color: #FFFFFF;
  font-weight: 700;
}

.user-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- FAQ Accordion --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 26px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 22px;
}

.faq-icon-svg {
  transition: transform 0.3s ease;
  color: var(--primary);
}

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

/* --- Footer --- */
.footer {
  background-color: #09090B;
  color: #F4F4F5;
  padding: 80px 0 36px 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  font-weight: 300;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.footer-legal-link {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal-link:hover {
  color: var(--primary);
}

/* --- Inner SPA Pages Styles --- */

/* Services Details Tabs */
.services-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.services-tabs-nav {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.service-tab-btn {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  color: var(--text-secondary);
}

.service-tab-btn.active {
  background: linear-gradient(135deg, #F3C65F 0%, var(--primary) 100%);
  color: #09090B;
  border-color: var(--primary);
}

.service-tab-pane {
  display: none;
  animation: fadeIn var(--transition-normal);
}

.service-tab-pane.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.service-tab-pane h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-tab-pane ul {
  font-weight: 300;
}

.service-tab-pane ul li {
  margin-bottom: 12px;
}

/* Cost Guide Comparison Tool */
.cost-table-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.table-responsive {
  overflow-x: auto;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.cost-table th, .cost-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.cost-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  background-color: var(--bg-secondary);
}

.cost-table td {
  font-weight: 300;
}

.cost-table tr:hover {
  background-color: rgba(255, 255, 255, 0.01);
}

/* Blog Layout */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 40px;
}

.blog-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-card-content {
  padding: 28px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin: 12px 0;
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 300;
}

/* Highly attractive custom Blog CTA button */
.btn-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-blog .btn-arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-blog:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #09090B;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(172, 138, 90, 0.25);
  transform: translateY(-2px);
}

.btn-blog:hover .btn-arrow {
  transform: translateX(4px);
}

/* Split Layout Blog Reader Modal */
.blog-reader-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 11, 12, 0.65); /* Translucent dark overlay */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-reader-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.blog-reader-inner {
  background: var(--bg-card);
  border: 1px solid rgba(172, 138, 90, 0.2);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 960px;
  height: 80vh;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(172, 138, 90, 0.05);
  display: flex;
  flex-direction: row; /* Split screen on desktop */
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-reader-modal.active .blog-reader-inner {
  transform: scale(1);
}

/* Left Side: Image Panel */
.blog-reader-header {
  width: 40%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

/* Add a subtle vignette over the image */
.blog-reader-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 60%, rgba(11, 11, 12, 0.15) 100%);
}

/* Right Side: Content Wrapper */
.blog-reader-content-wrapper {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--bg-card);
}

/* Header inside content panel */
.blog-reader-content-header {
  padding: 36px 36px 20px 36px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.blog-reader-content-header .blog-date {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-reader-content-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 8px;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Close Button on White BG */
.blog-reader-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(24, 24, 27, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.blog-reader-close:hover {
  background: var(--primary);
  color: #09090B;
  border-color: transparent;
  transform: rotate(90deg);
}

/* Scrollable Article Body */
.blog-reader-body {
  padding: 28px 36px 36px 36px;
  overflow-y: auto;
  flex-grow: 1;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: left;
}

.blog-reader-body h3 {
  font-size: 1.25rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-weight: 700;
}

.blog-reader-body p {
  margin-bottom: 16px;
}

.blog-reader-body ul, .blog-reader-body ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

.blog-reader-body li {
  margin-bottom: 6px;
}

/* Inline CTA inside blog article */
.blog-reader-cta {
  background: rgba(172, 138, 90, 0.05);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 32px;
}

.blog-reader-cta h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 700;
}

.blog-reader-cta p {
  font-size: 0.88rem;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

/* Responsive design for Mobile */
@media (max-width: 768px) {
  .blog-reader-inner {
    flex-direction: column;
    height: 85vh;
  }
  
  .blog-reader-header {
    width: 100%;
    height: 180px;
    flex-shrink: 0;
  }
  
  .blog-reader-content-wrapper {
    width: 100%;
    height: calc(100% - 180px);
  }
  
  .blog-reader-content-header {
    padding: 24px 24px 16px 24px;
  }
  
  .blog-reader-content-header h2 {
    font-size: 1.3rem;
  }
  
  .blog-reader-body {
    padding: 16px 24px 24px 24px;
  }
  
  .blog-reader-close {
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-color: transparent;
  }
}

/* Editorial / Policy Page Template */
.legal-content-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.legal-content-card h2 {
  font-size: 1.8rem;
  margin-top: 36px;
  margin-bottom: 16px;
}

.legal-content-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content-card ul {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--text-secondary);
  font-weight: 300;
}

/* --- Floating Dispatch AI Chatbot Widget (Gold Style) --- */
.chatbot-widget-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

#chat-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50px;
  background: linear-gradient(135deg, #F3C65F 0%, var(--primary) 100%);
  color: #09090B;
  border: none;
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-fast);
}

#chat-trigger:hover {
  transform: scale(1.08);
}

.chat-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(197, 168, 128, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

.chat-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  max-height: 500px;
  height: 500px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: var(--transition-normal);
}

.chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#chat-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

#chat-close-btn:hover {
  color: var(--text-primary);
}

.chat-messages {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.msg-bot {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
}

.msg-user {
  background: linear-gradient(135deg, #F3C65F 0%, var(--primary) 100%);
  color: #09090B;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 600;
}

.chat-suggested-actions {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  overflow-x: auto;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.chat-suggested-actions button {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.chat-suggested-actions button:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(197, 168, 128, 0.05);
}

.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: var(--bg-card);
}

.chat-input-area input {
  flex-grow: 1;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.02);
  color: #FFFFFF;
}

.chat-input-area input:focus {
  border-color: var(--primary);
}

#chat-send-btn {
  background: linear-gradient(135deg, #F3C65F 0%, var(--primary) 100%);
  color: #09090B;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Floating Live Activity Toast Feed (Dark Style) --- */
#activity-feed-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.activity-toast {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 320px;
  pointer-events: all;
  animation: slideInToast 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: var(--transition-normal);
}

.activity-toast.fade-out {
  opacity: 0;
  transform: translateY(10px) scale(0.9);
}

.toast-icon {
  width: 28px;
  height: 28px;
  background-color: var(--primary-glow);
  color: var(--primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 1px solid rgba(197, 168, 128, 0.15);
}

.toast-content {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.toast-content strong {
  color: var(--text-primary);
}

/* --- Animation Keyframes --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInToast {
  from { opacity: 0; transform: translateX(-40px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 14px rgba(197, 168, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 168, 128, 0); }
}

/* --- Responsive Media Queries --- */
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .why-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
  }

  .why-card-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
  }

  .services-tabs-pane.active {
    grid-template-columns: 1fr 1.1fr;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background-color: rgba(11, 11, 12, 0.98); /* Matching dark glass mobile drawer */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(172, 138, 90, 0.25);
    border-radius: 16px;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .wizard-container {
    padding: 22px;
  }

  .wizard-steps-indicators {
    display: none;
  }

  .chat-panel {
    width: calc(100vw - 48px);
    right: -12px;
  }
  
  #activity-feed-container {
    left: 12px;
    bottom: 92px;
  }
}

/* --- Elite Scrollbar Customization --- */
/* Firefox Support */
html {
  scrollbar-width: auto;
  scrollbar-color: var(--primary) var(--bg-primary);
}

/* Webkit (Chrome, Edge, Safari) Support */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  display: block; /* Ensure scrollbar is always rendered */
}
::-webkit-scrollbar-track {
  background: var(--bg-primary); /* Matches light theme page background */
  border-left: 1px solid var(--border);
}
::-webkit-scrollbar-thumb {
  background: rgba(172, 138, 90, 0.4); /* Gold-tinted thumb */
  border-radius: 8px;
  border: 2px solid var(--bg-primary);
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- World-Class Reveal Transitions --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- High-Converting Quote Prompt Trigger --- */
.quote-prompt-card {
  position: fixed;
  bottom: -300px; /* Start offscreen */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 440px;
  background-color: var(--bg-card);
  border: 1.5px solid var(--primary); /* Gold border */
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(172, 138, 90, 0.05);
  z-index: 2000; /* Above header and chats */
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-prompt-card.show {
  bottom: 32px;
}

.prompt-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.prompt-close-btn:hover {
  color: var(--text-primary);
}

.prompt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(172, 138, 90, 0.08);
  border: 1px solid rgba(172, 138, 90, 0.25);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.prompt-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  display: inline-block;
  animation: pulse 2s infinite;
}

.quote-prompt-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-top: 4px;
}

.quote-prompt-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.prompt-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.prompt-actions .btn-primary {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.prompt-actions .btn-text {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 8px 12px;
  border-radius: 50px;
}

.prompt-actions .btn-text:hover {
  color: var(--text-primary);
  background-color: rgba(24, 24, 27, 0.04);
}

/* --- Dispatcher Button Hover & Ringing Micro-Interaction --- */
.dispatcher-btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.dispatcher-btn .phone-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.dispatcher-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(172, 138, 90, 0.06);
  box-shadow: 0 8px 20px rgba(172, 138, 90, 0.1);
  transform: translateY(-2px);
}

.dispatcher-btn:hover .phone-icon {
  animation: phoneRing 0.5s ease-in-out infinite alternate;
}

@keyframes phoneRing {
  0% {
    transform: rotate(-10deg) scale(1.1);
  }
  100% {
    transform: rotate(15deg) scale(1.1);
  }
}

/* --- Premium Accessibility Focus Reset (Removes browser blue outlines) --- */
*:focus {
  outline: none !important;
}

.btn:focus, .nav-link:focus, .logo:focus, button:focus {
  outline: none !important;
}

input:focus, select:focus, textarea:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3.5px rgba(172, 138, 90, 0.25) !important;
}

/* --- FAQ Accordion Component --- */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item:hover {
  border-color: rgba(172, 138, 90, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(24, 24, 27, 0.005);
}

.accordion-content-inner {
  padding: 0 28px 22px 28px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Active State Styles */
.accordion-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md), 0 0 20px rgba(172, 138, 90, 0.03);
}

.accordion-item.active .accordion-header {
  color: var(--primary);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  fill: var(--primary);
}

/* --- Dynamic Logo Hover Preview Overlay --- */
.logo-hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 11, 12, 0.88); /* Deep translucent charcoal overlay */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999; /* Higher than everything else */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-hover-preview-card {
  background: radial-gradient(circle at 50% 0%, rgba(25, 25, 30, 0.95) 0%, rgba(12, 12, 14, 0.98) 100%);
  border: 1px solid rgba(172, 138, 90, 0.35);
  border-radius: 20px;
  padding: 42px 54px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85), 0 0 50px rgba(172, 138, 90, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 520px;
  width: 90%;
  transform: scale(0.9) translateY(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.logo-hover-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(172, 138, 90, 0.8), transparent);
}

.logo-hover-preview img {
  max-width: 380px;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(172, 138, 90, 0.5));
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  display: block;
}

.logo-preview-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #ac8a5a;
  background: rgba(172, 138, 90, 0.1);
  border: 1px solid rgba(172, 138, 90, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  text-align: center;
}

/* Active Class to trigger transition */
.logo-hover-preview.active {
  opacity: 1;
  pointer-events: none;
}

.logo-hover-preview.active .logo-hover-preview-card {
  transform: scale(1) translateY(0);
}
.logo-hover-preview.active img {
  transform: scale(1.02);
}

/* --- Blog Inline Middle CTA Banner --- */
.blog-inline-cta {
  background: rgba(172, 138, 90, 0.06);
  border: 1px solid rgba(172, 138, 90, 0.25);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-inline-cta:hover {
  background: rgba(172, 138, 90, 0.09);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(172, 138, 90, 0.08);
}

.blog-inline-cta p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary) !important;
  margin-bottom: 16px !important;
  line-height: 1.5;
}

.btn-inline-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #09090B !important; /* Premium charcoal text contrast */
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(172, 138, 90, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-inline-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(172, 138, 90, 0.35);
}

/* --- Premium Brand Page Preloader --- */
.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #09090B; /* Cinematic dark theme background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999; /* Highest depth index above all widgets */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

/* Outer Ring Spinning wrapper */
.premium-ring-container {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.premium-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(172, 138, 90, 0.08); /* Track gold line */
  border-top: 3.5px solid var(--primary); /* Active glowing golden arc */
  border-right: 3.5px solid var(--primary);
  animation: rotateRing 1.1s linear infinite;
}

/* Pulsing Center Brand Symbol */
.brand-monogram {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
  animation: pulseLogo 1.5s ease-in-out infinite alternate;
}

/* Bottom Loading text details */
.loading-text {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.loading-word {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loading-subtext {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* Preloader Animations */
@keyframes rotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseLogo {
  0% {
    transform: scale(0.92);
    opacity: 0.7;
    filter: drop-shadow(0 0 5px rgba(172, 138, 90, 0.2));
  }
  100% {
    transform: scale(1.04);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(172, 138, 90, 0.6));
  }
}

@keyframes pulsePreloader {
  0% {
    transform: scale(0.96);
    filter: drop-shadow(0 0 15px rgba(172, 138, 90, 0.2));
  }
  100% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 45px rgba(172, 138, 90, 0.55));
  }
}

/* ─── Breadcrumb Navigation (#20) ────────────────────────────────────────── */
.breadcrumb-nav {
  background: #F4F4F5;
  border-bottom: 1px solid rgba(24, 24, 27, 0.06);
  padding: 10px 0;
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: var(--text-secondary);
}
.breadcrumb-sep {
  color: var(--border-hover);
  font-size: 0.9rem;
}

/* ─── Ultra-Premium Hero Video Metallic Gold Border & Ambient Aura ───────── */
.hero-video-inner {
  position: relative !important;
  border-radius: var(--radius-lg) !important;
  padding: 3.5px !important;
  background: linear-gradient(135deg, #F3C65F 0%, #AC8A5A 30%, #523E22 60%, #F3C65F 100%) !important;
  background-size: 250% 250% !important;
  animation: goldBorderGlimmer 6s ease infinite !important;
  box-shadow: 
    0 0 35px rgba(172, 138, 90, 0.4),
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 15px rgba(243, 198, 95, 0.25) !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 720px !important;
  aspect-ratio: 16 / 9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-video-inner::before {
  content: '' !important;
  position: absolute !important;
  inset: -3px !important;
  border-radius: calc(var(--radius-lg) + 3px) !important;
  background: linear-gradient(135deg, rgba(243, 198, 95, 0.7), rgba(172, 138, 90, 0.15), rgba(243, 198, 95, 0.6)) !important;
  z-index: 0 !important;
  filter: blur(10px) !important;
  opacity: 0.8 !important;
  animation: auraPulse 4s ease-in-out infinite alternate !important;
  pointer-events: none !important;
}

.hero-video-inner:hover {
  transform: translateY(-4px) scale(1.01) !important;
  box-shadow: 
    0 0 55px rgba(172, 138, 90, 0.65),
    0 35px 75px rgba(0, 0, 0, 0.5),
    inset 0 0 25px rgba(243, 198, 95, 0.35) !important;
}

/* Inner Frame Container to clip video content inside border */
.hero-video-frame-content {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: calc(var(--radius-lg) - 3.5px) !important;
  overflow: hidden !important;
  background-color: #09090B !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1 !important;
}

/* Metallic Tech Corner Highlights */
.hero-video-inner::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(243, 198, 95, 0.35) !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

@keyframes goldBorderGlimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes auraPulse {
  0% { opacity: 0.5; filter: blur(8px); }
  100% { opacity: 1; filter: blur(14px); }
}

/* ─── Mobile Conversion & 4K Video Frame Overrides (7-Star Premium) ────── */
@media (max-width: 768px) {
  /* Edge-to-Edge Sleek Mobile Header */
  .header {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    border-radius: 0 !important;
    background: rgba(11, 11, 12, 0.95) !important;
    border: none !important;
    border-bottom: 1px solid rgba(172, 138, 90, 0.3) !important;
  }
  .header-container {
    height: 64px !important;
    padding: 0 14px !important;
  }
  .logo {
    display: flex !important;
    align-items: center !important;
  }
  .logo img {
    height: 38px !important;
    max-height: 38px !important;
    margin-top: 0 !important;
    filter: drop-shadow(0px 0px 3px rgba(243, 198, 95, 0.3)) !important;
  }

  /* Header CTA items on mobile */
  .header-premium-cta {
    gap: 8px !important;
    margin-right: 6px !important;
    margin-left: auto !important;
  }

  .theme-toggle-btn {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(172, 138, 90, 0.15) !important;
    border: 1px solid rgba(172, 138, 90, 0.4) !important;
  }
  .theme-text {
    display: none !important;
  }

  .premium-call-btn {
    padding: 6px 12px !important;
    border-radius: 50px !important;
    background: rgba(172, 138, 90, 0.12) !important;
    border: 1px solid rgba(172, 138, 90, 0.4) !important;
  }
  .premium-call-text {
    font-size: 0.75rem !important;
  }

  /* Hero Section: Mobile Layout */
  .hero {
    padding-top: 84px !important; 
    padding-bottom: 40px !important;
    overflow: hidden !important;
    position: relative !important;
    background: var(--hero-bg) !important;
  }
  
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  
  .hero-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 28px 20px !important;
    border-radius: 24px !important;
    box-shadow: var(--hero-card-shadow) !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .hero-top-status {
    justify-content: center !important;
    width: 100% !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
  }

  .status-pill {
    font-size: 0.72rem !important;
    padding: 5px 12px !important;
  }

  .hero-content h1 {
    font-size: 1.95rem !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    color: var(--hero-title-color) !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: none !important;
    text-align: center !important;
  }
  
  .hero-content h1 span.highlight-gold {
    background: linear-gradient(135deg, #F3C65F 0%, #AC8A5A 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
  
  .hero-content p {
    font-size: 0.9rem !important;
    margin-bottom: 18px !important;
    color: var(--hero-text-color) !important;
    line-height: 1.55 !important;
    text-shadow: none !important;
    text-align: center !important;
  }
  
  .hero-urgency-strip {
    font-size: 0.8rem !important;
    padding: 7px 14px !important;
    width: 100% !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }

  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
  }

  .btn-hero-cta {
    width: 100% !important;
    justify-content: center !important;
    padding: 15px 20px !important;
    font-size: 0.98rem !important;
  }

  .trust-guarantees {
    justify-content: center !important;
    gap: 10px 14px !important;
    font-size: 0.78rem !important;
    width: 100% !important;
  }

  /* 4K Hero Video Card Frame on Mobile */
  .hero-video-wrapper {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    z-index: 2 !important;
    gap: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 10px !important;
  }

  .hero-video-inner {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 18px !important;
    padding: 3px !important;
    background: linear-gradient(135deg, #F3C65F 0%, #AC8A5A 30%, #523E22 60%, #F3C65F 100%) !important;
    background-size: 250% 250% !important;
    animation: goldBorderGlimmer 6s ease infinite !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(172, 138, 90, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-video-frame-content {
    border-radius: 15px !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    background: #09090B !important;
  }

  #hero-video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hero-guarantees-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px 14px !important;
    width: 100% !important;
  }

  .hero-guarantee-item {
    font-size: 0.78rem !important;
    color: var(--text-secondary) !important;
  }
  
  /* Floating Widgets: Remove both Chatbot & Toast on Mobile */
  .chatbot-widget-wrapper,
  #activity-feed-container {
    display: none !important;
  }
  
  /* Ensure body has enough padding so footer isn't covered by sticky bar */
  body {
    padding-bottom: 70px !important;
  }
}

@media (max-width: 480px) {
  .premium-call-text {
    display: none !important;
  }
  .premium-call-btn {
    padding: 8px 10px !important;
  }
}

