/* 
   FindMeDrivers Core CSS Stylesheet
   Premium Dark Luxury Aesthetic
   Typography: Inter (Headings & Body)
   Owned and Operated by: 0209AI
*/

:root {
  /* Core Udrivo Color Tokens */
  --primary-blue: #3B82F6;
  --primary-blue-hover: #2563EB;
  --primary-blue-glow: rgba(59, 130, 246, 0.08);
  --primary-blue-border: rgba(59, 130, 246, 0.15);
  
  --accent-gold: #F59E0B;
  --accent-gold-hover: #D97706;
  --accent-gold-glow: rgba(245, 158, 11, 0.08);
  --accent-gold-border: rgba(245, 158, 11, 0.15);
  
  --trust-green: #10B981;
  --trust-green-hover: #059669;
  --trust-green-glow: rgba(16, 185, 129, 0.08);
  
  --text-dark: #111827;
  --text-dark-muted: #4B5563;
  --text-light: #F9FAFB;
  --text-light-muted: #9CA3AF;
  
  --bg-light: #EEF2F6;
  --bg-white: #FFFFFF;
  --bg-charcoal: #000000;
  --bg-charcoal-card: #FFFFFF;
  --border-light: #E5E7EB;
  
  /* Fallbacks for existing CSS variables to avoid breaking layout */
  --bg-dark: #FFFFFF;
  --bg-dark-card: #FFFFFF;
  --bg-dark-card-hover: #F3F4F6;
  
  --accent-gold-glow: var(--accent-gold-glow);
  --accent-gold-border: var(--accent-gold-border);
  
  --text-muted: var(--text-dark-muted);
  
  --bg-cream: #F9FAFB;
  --bg-cream-card: #FFFFFF;
  --bg-cream-accent: #EEF2F6;
  
  /* Typography */
  --font-headings: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout and Transition Variables */
  --max-width: 1200px;
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 9999px; /* Fully rounded buttons */
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Borders */
  --border-dark: rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   Resets and Core Styles
   ========================================================================== */
*, *::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-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

/* Light background layout utility */
body.light-theme {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* Headers typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.light-section h2 {
  color: var(--text-dark);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dark-muted);
}

.light-section p {
  color: var(--text-dark-muted);
}

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

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

/* Section Modifiers */
.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

.section-cream {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.section-cream-accent {
  background-color: var(--bg-cream-accent);
  color: var(--text-dark);
}

/* ==========================================================================
   Sticky Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background-color: transparent;
}

.header.header-subpage {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border-light);
  height: 75px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
}

/* Logo & Iconic Brand Representation */
.logo {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent-gold);
  background-color: #1a1a1a;
  transition: var(--transition-smooth);
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

.logo-icon {
  color: var(--accent-gold);
  font-size: 1.35rem;
  display: inline-block;
  transition: var(--transition-smooth);
  animation: logoGlow 3s infinite ease-in-out;
}

.logo:hover .logo-icon {
  transform: rotate(180deg);
  filter: drop-shadow(0 0 10px rgba(229, 168, 35, 0.7));
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(229, 168, 35, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(229, 168, 35, 0.6));
  }
}

.logo span.white {
  color: var(--text-dark);
}

.logo span.gold {
  color: var(--accent-gold);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.drawer-logo-container,
.drawer-ctas {
  display: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link .drawer-icon {
  display: none; /* Hidden on desktop view */
}

/* Header Conversion Action Buttons (Inspired by Udrivo) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 1.3rem;
  border-radius: 50px; /* Highly Premium Pill Shape */
  text-decoration: none;
  transition: var(--transition-smooth);
  gap: 0.45rem;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

/* Blue Button: Hire Driver */
.header-btn.btn-blue {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(30, 96, 212, 0.15);
}

.header-btn.btn-blue:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 96, 212, 0.35), 0 0 8px rgba(30, 96, 212, 0.2);
}

/* Gold Button: Join as Driver */
.header-btn.btn-gold {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(229, 168, 35, 0.15);
}

.header-btn.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 168, 35, 0.35), 0 0 8px rgba(229, 168, 35, 0.2);
}

/* Green Button: Download App */
.header-btn.btn-green {
  background-color: var(--trust-green);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 167, 91, 0.15);
}

.header-btn.btn-green:hover {
  background-color: var(--trust-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 167, 91, 0.35), 0 0 8px rgba(37, 167, 91, 0.2);
}

/* Sticky Header Modifier for legal pages (which might be white on light sections) */
.header-light {
  background-color: #FFFFFF;
  border-bottom: 1px solid #EAE6DF;
}

.header-light .nav-link {
  color: var(--text-dark);
}

.header-light .logo span.white {
  color: var(--text-dark);
}

/* Hamburger Toggle */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   Buttons and CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  gap: 0.5rem;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #000000;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  box-shadow: 0 4px 25px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-ghost:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--primary-blue-glow);
}

.btn-light-ghost {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-light-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  background-image: 
    linear-gradient(135deg, #EEF2F6 0%, #F3F4F6 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal split panel or grid background overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 span.gold {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Badges Row */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
}

.trust-badge i {
  color: var(--accent-gold);
  font-size: 1rem;
}

/* Hero visual panel side */
.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, #111827 0%, #000000 100%);
  border: 1px solid var(--accent-gold-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, var(--accent-gold) 180deg, transparent 360deg);
  animation: rotateGlow 8s linear infinite;
  opacity: 0.15;
  pointer-events: none;
}

.visual-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.visual-card i {
  font-size: 3.5rem;
  color: var(--accent-gold);
}

.visual-card-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFFFFF;
}

.visual-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.visual-card-badge {
  background-color: var(--accent-gold);
  color: #000000;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes rotateGlow {
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    height: auto;
    margin-top: 1rem;
  }
}

/* ==========================================================================
   Trip Types Section
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
}

.section-header p {
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.trip-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.trip-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 60%, var(--primary-blue-glow) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.trip-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.trip-card:hover::after {
  opacity: 1;
}

.trip-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background-color: var(--primary-blue-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--primary-blue-border);
  color: var(--primary-blue);
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

.trip-card:hover .trip-icon {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  border-color: var(--primary-blue);
}

.trip-card h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
}

.trip-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: var(--text-dark-muted);
}

.trip-price-badge {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-blue);
}

@media (max-width: 991px) {
  .trip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   Why FindMeDrivers Section (Light Background UI)
   ========================================================================== */
.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-card {
  background-color: var(--bg-cream-card);
  border: 1px solid #EDE9E2;
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(201, 168, 76, 0.08);
}

.feature-icon-wrapper {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
}

.feature-card h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .why-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.stat-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-box:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* FindMeDrivers Shield Callout */
.shield-block {
  background: var(--primary-blue-glow);
  border: 1px solid var(--primary-blue-border);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.shield-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-blue);
}

.shield-icon {
  font-size: 3.5rem;
  color: var(--primary-blue);
}

.shield-content h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.shield-content p {
  color: var(--text-dark-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .shield-block {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem;
    gap: 1.5rem;
  }
  .shield-icon {
    margin: 0 auto;
  }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.steps-container {
  position: relative;
  margin: 4rem 0;
}

/* Horizontal line connecting steps on large screen */
.steps-line {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.05), var(--accent-gold), rgba(201, 168, 76, 0.05));
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.step-card {
  text-align: center;
  padding: 0 1rem;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 2rem auto;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
  transition: var(--transition-smooth);
}

.step-card:hover .step-number {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
  transform: scale(1.05);
}

.step-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
}

.steps-cta {
  text-align: center;
  margin-top: 5rem;
}

@media (max-width: 991px) {
  .steps-line {
    display: none;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 2rem;
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Pricing Preview Section
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: stretch;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.popular {
  border-color: var(--primary-blue);
  background-color: var(--bg-white);
  transform: scale(1.03);
}

@media (min-width: 992px) {
  .pricing-card.popular {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
  }
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-5px);
  border-color: var(--primary-blue-hover);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.pricing-tier {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.pricing-price-wrapper {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2rem;
}

.pricing-amount {
  font-family: var(--font-headings);
  font-size: clamp(2.5rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.pricing-card.popular .pricing-amount {
  color: var(--primary-blue-hover);
}

.pricing-duration {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
  margin-left: 0.5rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.pricing-features li i {
  color: var(--primary-blue);
  font-size: 1rem;
}

.pricing-features li.excluded {
  color: var(--text-dark-muted);
  opacity: 0.4;
}

.pricing-features li.excluded i {
  color: var(--text-dark-muted);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  text-align: center;
  margin-top: 1rem;
}

.pricing-footer-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-footer-box p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.pricing-footer-box a {
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-footer-box a:hover {
  text-shadow: 0 0 10px var(--primary-blue-glow);
  gap: 0.75rem;
  color: var(--primary-blue-hover);
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background-color: var(--bg-cream-card);
  border: 1px solid #EDE9E2;
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(201, 168, 76, 0.08);
}

.review-rating {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.review-author-desc {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin-top: 0.15rem;
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   FAQ & Contact Section
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.accordion-item {
  background-color: var(--bg-cream-card);
  border: 1px solid #EDE9E2;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  color: var(--accent-gold);
}

.accordion-icon {
  font-size: 1.25rem;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

.accordion-content-inner {
  padding: 0 2rem 1.5rem 2rem;
}

.accordion-content p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Active Accordion Item */
.accordion-item.active {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.05);
}

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

/* Sticky Contact Card */
.contact-card-sticky {
  position: sticky;
  top: 100px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  color: var(--text-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-card-sticky h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.25rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-blue-glow);
  border: 1px solid var(--primary-blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.contact-info-text {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-info-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .contact-card-sticky {
    position: static;
  }
}

/* ==========================================================================
   Driver Recruitment Banner
   ========================================================================== */
.recruitment {
  background: 
    linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%),
    radial-gradient(circle at 20% 50%, var(--primary-blue-glow) 0%, transparent 60%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.recruitment-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.recruitment-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-dark);
}

.recruitment-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-dark-muted);
}

.perks-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.perk-tag {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.perk-tag::before {
  content: '✓';
  color: var(--primary-blue);
  font-weight: 700;
}

.recruitment-cta {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .recruitment-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .recruitment-cta {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   App Download Section
   ========================================================================== */
.app-download {
  text-align: center;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 4rem auto 0 auto;
}

.app-column {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
}

.app-column:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.app-column h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.store-button {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  transition: var(--transition-smooth);
}

.store-button:hover {
  border-color: var(--accent-gold);
  background-color: #0A0A0A;
  transform: translateY(-2px);
}

.store-button i {
  font-size: 1.75rem;
  color: var(--text-light);
}

.store-button:hover i {
  color: var(--accent-gold);
}

.store-button-text {
  display: flex;
  flex-direction: column;
}

.store-button-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.store-button-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-headings);
}

@media (max-width: 768px) {
  .app-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #000000;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-dark);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .logo {
  font-size: 1.75rem;
}

.footer-brand .logo span.white {
  color: #FFFFFF !important;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Charges Page Specific Layout
   ========================================================================== */
.page-hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6.5rem;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
  position: relative;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* ==========================================================================
   Luxury Scroll Down Indicator
   ========================================================================== */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.scroll-indicator:hover {
  color: var(--accent-gold);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 10px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 1.5px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMouseWheel 1.6s infinite ease-in-out;
}

@keyframes scrollMouseWheel {
  0% {
    top: 6px;
    opacity: 1;
  }
  50% {
    top: 14px;
    opacity: 0.3;
  }
  100% {
    top: 6px;
    opacity: 1;
  }
}

.scroll-arrow {
  animation: scrollBounce 1.6s infinite ease-in-out;
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

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

.charges-section {
  background-color: var(--bg-dark);
  padding: 6rem 0;
}

.charges-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: start;
}

.charges-grid > div {
  width: 100%;
  min-width: 0;
}

@media (max-width: 991px) {
  .charges-grid {
    grid-template-columns: 1fr;
  }
}

.table-wrapper {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 3rem;
  overflow-x: auto;
}

.table-wrapper h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  border-left: 3px solid var(--primary-blue);
  padding-left: 1rem;
}

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

.premium-table th {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-blue);
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.premium-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.premium-table tr:hover td {
  background-color: rgba(59, 130, 246, 0.04);
}

.table-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

.callout-box {
  background: var(--primary-blue-glow);
  border: 1px solid var(--primary-blue-border);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.callout-box h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.callout-box h3 i {
  color: var(--primary-blue);
}

.callout-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.callout-list li {
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.callout-list li::before {
  content: '✦';
  color: var(--primary-blue);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.fine-print {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 768px) {
  .premium-table {
    min-width: 550px;
  }
  
  .table-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .page-hero {
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 5rem;
  }
  
  .page-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .page-hero p {
    font-size: 0.95rem;
  }
  
  .table-wrapper h2 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .callout-box {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Contact Page Specific Layout
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-card h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  border-left: 3px solid var(--primary-blue);
  padding-left: 1rem;
}

.form-wrapper {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.form-input {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 1.1rem 1.5rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 15px var(--primary-blue-glow);
  background-color: #FFFFFF;
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  text-align: center;
}

/* ==========================================================================
   Legal Pages Common Styles
   ========================================================================== */
.page-hero + .section-dark,
.page-hero + .charges-section {
  padding-top: 0;
}

.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 4.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.legal-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.legal-meta {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.legal-content h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 2.5rem 0 1.25rem 0;
  border-left: 3px solid var(--primary-blue);
  padding-left: 1rem;
}

.legal-content p {
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.legal-content p strong {
  color: var(--text-dark);
}

.legal-content ul, .legal-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--text-dark-muted);
}

.legal-content ol {
  list-style-type: decimal;
}

.legal-content ol li {
  margin-bottom: 1.5rem;
}

.legal-content ol li strong {
  color: var(--text-dark);
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .legal-wrapper {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   Animations & Transitions
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   Mobile Nav drawer
   ========================================================================== */
@media (max-width: 1199px) {
  .header-actions .btn-green {
    display: none; /* Hide download button in tablet view to avoid clutter */
  }
}

@media (max-width: 991px) {
  .logo {
    order: 1;
  }

  .hamburger {
    display: block;
    order: 3;
  }
  
  /* Show only one primary CTA button directly on the mobile bar next to hamburger */
  .header-actions {
    display: flex;
    order: 2;
  }
  
  .header-actions .btn-gold,
  .header-actions .btn-green {
    display: none; /* Hide secondary buttons in mobile bar */
  }
  
  .header-actions .header-btn {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98); /* Premium bright glassmorphism */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 6.5rem 2rem 3rem 2rem;
    gap: 0;
    transition: var(--transition-smooth);
    z-index: 1050;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  /* Mobile Logo Drawer Header */
  .drawer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
  }
  
  /* Spaced Nav Drawer Items */
  .nav-menu li {
    width: 100%;
    margin-bottom: 0.9rem;
  }
  
  .nav-menu .nav-link {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    width: 100%;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
    color: var(--text-dark);
  }
  
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: var(--primary-blue-glow);
    border-color: var(--primary-blue-border);
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
  }
  
  .nav-menu .nav-link::after {
    display: none; /* Hide desktop anim underlines in list */
  }
  
  .nav-link .drawer-icon {
    display: inline-block; /* Show premium navigation icons next to text */
    margin-right: 0.9rem;
    color: var(--primary-blue);
    font-size: 1.15rem;
    width: 24px;
    text-align: center;
  }
  
  /* Drawer Call To Action container stacked vertically at the bottom */
  .drawer-ctas {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
  }
  
  .drawer-ctas .header-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.88rem;
    display: flex;
  }
  
  /* Hamburger animations */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 576px) {
  .header-actions {
    display: none; /* Hide header action buttons on small mobile displays to leave full space for logo & hamburger */
  }
}
