/* ============================================================
   GEORGIA ONLINE DRIVER EDUCATION — ULTRA MODERN DESIGN SYSTEM
   Meets Joshua's Law Requirements | Georgia DDS Licensed #DT372
   ============================================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Primary & Brand Colors */
  --blue-950: #08182b;
  --blue-900: #0d2847;
  --blue-800: #143a66;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;

  /* Vibrant Accents */
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --red-100: #fee2e2;
  --red-50: #fef2f2;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-100: #fef3c7;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-100: #ede9fe;

  /* Georgia Gold / Warm Accent */
  --gold-500: #eab308;
  --gold-600: #ca8a04;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gray-950: #020617;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3.25rem;
  --font-size-hero: clamp(2.25rem, 5vw, 3.6rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-section: clamp(4rem, 7vw, 6rem);

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Elevation Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.10), 0 4px 10px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.25);
  --shadow-accent-glow: 0 0 35px rgba(220, 38, 38, 0.3);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1240px;
}

/* --- Base Reset & Typography --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--gray-700);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--blue-700);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--gray-900);
}

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

/* --- Section Headers & Badges --- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 0.875rem;
}

.label-blue {
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.label-emerald {
  background: var(--emerald-100);
  color: var(--emerald-600);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.label-purple {
  background: var(--purple-100);
  color: var(--purple-600);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.label-amber {
  background: var(--amber-100);
  color: var(--amber-600);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.label-red,
.label-rose {
  background: var(--red-100);
  color: var(--red-600);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.section-title {
  font-size: clamp(1.85rem, 4vw, var(--font-size-3xl));
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.section-title .text-gradient-blue {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .text-gradient-red {
  background: linear-gradient(135deg, var(--red-600), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   TOP EMERGENCY / ACCREDITATION BAR
   ============================================================ */
.top-bar-notice {
  background: linear-gradient(90deg, #071526 0%, #0d2847 50%, #071526 100%);
  color: var(--white);
  font-size: var(--font-size-xs);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--blue-100);
}

.top-bar-badge i {
  color: #38bdf8;
}

.top-bar-text {
  color: var(--gray-300);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.top-bar-phone i {
  color: #38bdf8;
}

.top-bar-phone:hover {
  color: #60a5fa;
}

/* ============================================================
   ULTRA MODERN STICKY NAVBAR
   ============================================================ */
.nav-home {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
}

.nav-home.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 60px;
  max-height: 64px;
  max-width: 280px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-brand-divider {
  width: 1.5px;
  height: 28px;
  background: var(--gray-300);
}

.nav-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--blue-800);
  background: var(--blue-50);
  padding: 5px 11px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37, 99, 235, 0.2);
  white-space: nowrap !important;
}

.nav-brand-badge i {
  color: var(--emerald-600);
}

.nav-mobile-btn {
  display: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.855rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-700);
  padding: 7px 11px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--blue-600);
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

.nav-link.active_page,
.nav-link.active {
  color: var(--blue-700);
  background: var(--blue-50);
  font-weight: 700;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.835rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
  white-space: nowrap !important;
}

.btn-nav-login:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.btn-nav-register {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.835rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all var(--transition-fast);
  white-space: nowrap !important;
}

.btn-nav-register:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, #1e40af 100%);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
  transform: translateY(-1px);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================================
   HERO SECTION WITH VIDEO BACKGROUND & COURSE SELECTION
   ============================================================ */
.hero-home {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 6rem 0;
  background: #091728;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.2) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at 20% 30%,
      rgba(13, 40, 71, 0.55) 0%,
      rgba(7, 21, 38, 0.65) 100%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 2;
  pointer-events: none;
}

.hero-shape-1 {
  top: -100px;
  left: -50px;
  width: 450px;
  height: 450px;
  background: rgba(37, 99, 235, 0.25);
}

.hero-shape-2 {
  bottom: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: rgba(220, 38, 38, 0.2);
}

.hero-shape-3 {
  top: 35%;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(234, 179, 8, 0.12);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Hero Text */
.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #60a5fa;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: #38bdf8;
}

.hero-headline {
  font-size: var(--font-size-hero);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-headline .text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-headline .text-accent {
  background: linear-gradient(135deg, #f87171 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 600px;
}

/* ============================================================
   HERO COURSE TIER SHOWCASE (ULTRA MODERN)
   ============================================================ */
.hero-course-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 1.75rem;
}

.course-opt-card {
  position: relative;
  background: rgba(13, 34, 60, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.25rem;
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.course-opt-card:hover {
  transform: translateY(-5px);
  background: rgba(18, 44, 78, 0.88);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 99, 235, 0.25);
}

.course-opt-card.featured {
  background: linear-gradient(145deg, rgba(29, 78, 216, 0.35) 0%, rgba(220, 38, 38, 0.25) 100%);
  border: 1.5px solid rgba(248, 113, 113, 0.6);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.25);
}

.course-opt-card.featured:hover {
  border-color: rgba(251, 146, 60, 0.9);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.35), 0 0 25px rgba(239, 68, 68, 0.3);
}

.course-opt-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.badge-current {
  background: rgba(255, 255, 255, 0.16);
  color: #93c5fd;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-new {
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: var(--white);
  animation: pulseBadge 2.2s infinite ease-in-out;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.6);
}

@keyframes pulseBadge {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
}

.course-opt-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.25;
}

.course-opt-platform {
  font-size: 0.78rem;
  color: #cbd5e1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.course-opt-platform i {
  color: #60a5fa;
}

.course-opt-price {
  font-size: 1.55rem;
  font-weight: 900;
  color: #fef08a;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}

.course-opt-price span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
}

.btn-course-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  transition: all var(--transition-fast);
}

.btn-card-standard {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-card-standard:hover {
  background: var(--blue-600);
  border-color: var(--blue-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-card-featured {
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
}

.btn-card-featured:hover {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
  transform: translateY(-1px);
}

/* Horizontal Trust Capsules (Ultra Modern Glass) */
.hero-trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 7px 14px;
  color: #f1f5f9;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-trust-pill:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-trust-pill i {
  font-size: 0.95rem;
}

.hero-trust-pill i.blue {
  color: #38bdf8;
}

.hero-trust-pill i.green {
  color: #34d399;
}

.hero-trust-pill i.amber {
  color: #fbbf24;
}

.hero-trust-pill i.red {
  color: #f87171;
}

/* Right: Eligibility Card */
.eligibility-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  padding: 2.25rem;
  color: var(--gray-800);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
}

.ec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.ec-price-wrap {
  display: flex;
  flex-direction: column;
}

.ec-starting {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}

.ec-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}

.ec-currency {
  font-size: 1.5rem;
  color: var(--blue-600);
  vertical-align: super;
}

.ec-cents {
  font-size: 1.25rem;
  color: var(--gray-500);
}

.ec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.ec-title-section h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ec-title-section h3 i {
  color: var(--blue-600);
}

.ec-title-section p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

/* Tab Switcher */
.ec-tabs-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--gray-100);
  padding: 5px;
  border-radius: var(--radius-md);
  gap: 4px;
  margin-bottom: 1.25rem;
}

.ec-tab {
  padding: 8px 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-align: center;
}

.ec-tab:hover {
  color: var(--gray-900);
}

.ec-tab.active {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.ec-tab-pane {
  display: none;
  background: var(--blue-50);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.25s ease-in-out;
}

.ec-tab-pane.active {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ec-pane-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.ec-pane-text h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 4px;
}

.ec-pane-text p {
  font-size: 0.835rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.ec-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 100%);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
  transition: all var(--transition-fast);
}

.ec-cta-btn:hover {
  background: linear-gradient(135deg, var(--red-700) 0%, #991b1b 100%);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.ec-footer {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 600;
}

.ec-footer i {
  color: var(--emerald-600);
}

/* ============================================================
   STANDALONE SINGLE-LINE QUICK LOGIN BAR (ULTRA MODERN)
   ============================================================ */
.section-quick-login {
  position: relative;
  margin-top: -2.75rem;
  z-index: 30;
}

.quick-login-bar-standalone {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 45px -5px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.9);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ql-portal-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border-right: 1.5px solid var(--gray-200);
  padding-right: 1.5rem;
}

.ql-portal-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.ql-portal-text {
  display: flex;
  flex-direction: column;
}

.ql-portal-text strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}

.ql-portal-text span {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 600;
}

.ql-single-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.ql-input-wrap {
  position: relative;
  flex: 1;
  min-width: 160px;
}

.ql-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 0.85rem;
}

.ql-input-wrap input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all var(--transition-fast);
}

.ql-input-wrap input:focus {
  outline: none;
  border-color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.btn-ql-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-ql-login:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.45);
}

.ql-register-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--gray-500);
  flex-shrink: 0;
  border-left: 1.5px solid var(--gray-200);
  padding-left: 1.5rem;
  white-space: nowrap;
}

.ql-register-cta a {
  font-weight: 700;
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ql-register-cta a:hover {
  text-decoration: underline;
  color: var(--red-700);
}

/* ============================================================
   REMAPPED PROGRAM BENTO SHOWCASE (ULTRA MODERN)
   ============================================================ */
.section-bento-showcase {
  padding: 5rem 0 3.5rem 0;
  background: var(--white);
}

.bento-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.bento-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-700);
  background: var(--blue-50);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37, 99, 235, 0.18);
  margin-bottom: 0.85rem;
}

.bento-title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.bento-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.bento-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-300);
}

.bento-card.bento-hero {
  grid-row: span 2;
  background: linear-gradient(145deg, #091a30 0%, #112d52 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  justify-content: space-between;
}

.bento-card.bento-hero .bento-title-main {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.bento-card.bento-hero p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.bento-hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.bhb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #e2e8f0;
  font-weight: 600;
}

.bhb-item i {
  color: #34d399;
}

.bento-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.bento-icon-box.purple {
  background: var(--purple-100);
  color: var(--purple-600);
}

.bento-icon-box.emerald {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.bento-icon-box.amber {
  background: var(--amber-100);
  color: var(--amber-600);
}

.bento-icon-box.red {
  background: var(--red-100);
  color: var(--red-600);
}

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.65rem;
}

.bento-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* Stats Ribbon */
.bento-stats-ribbon {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bsr-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bsr-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--blue-700);
  line-height: 1;
  margin-bottom: 4px;
}

.bsr-num small {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-500);
}

.bsr-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
}

.bsr-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-300);
}

/* ============================================================
   3 KEY HIGHLIGHT CARDS
   ============================================================ */
.section-features {
  padding: var(--space-section) 0;
  background: var(--white);
}

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

.feature-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.08);
}

.feature-theme-blue .feature-icon-wrap {
  background: var(--blue-50);
  color: var(--blue-600);
}

.feature-theme-red .feature-icon-wrap {
  background: var(--red-50);
  color: var(--red-600);
}

.feature-theme-green .feature-icon-wrap {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   VIDEO SHOWCASE & COURSE DETAILS SECTION
   ============================================================ */
.section-about {
  padding: var(--space-section) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-video-col {
  position: relative;
}

.about-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #000;
  border: 4px solid var(--white);
}

.about-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Floating Trust Pills around video */
.video-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 5;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.badge-top-right {
  top: -20px;
  right: -20px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: -2s;
}

@keyframes floatSlow {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-8px);
  }
}

.vfb-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.vfb-green {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.vfb-purple {
  background: var(--purple-100);
  color: var(--purple-600);
}

.vfb-text {
  display: flex;
  flex-direction: column;
}

.vfb-text strong {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}

.vfb-text span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* About Text Column */
.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.af-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.af-indigo {
  background: var(--blue-50);
  color: var(--blue-600);
}

.af-rose {
  background: var(--red-50);
  color: var(--red-600);
}

.af-emerald {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.af-content h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.af-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  transition: all var(--transition-fast);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-800) 100%);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
  color: var(--white);
}

/* ============================================================
   CALLOUT BANNER SECTION
   ============================================================ */
.section-callout {
  padding: 2.5rem 0;
}

.callout-card {
  background: linear-gradient(135deg, #0f2b4d 0%, #1a3d6d 100%);
  border-radius: var(--radius-xl);
  padding: 2.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.callout-card::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.callout-left {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.callout-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.callout-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.callout-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  max-width: 620px;
  line-height: 1.5;
}

.btn-callout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--white);
  color: var(--blue-900);
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-callout:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--blue-700);
}

/* ============================================================
   STEP-BY-STEP REQUIREMENTS ROADMAP
   ============================================================ */
.section-requirements {
  padding: var(--space-section) 0;
  background: var(--white);
}

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

.req-step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
}

.req-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.req-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.req-step-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.step-theme-blue .req-step-badge {
  background: var(--blue-50);
  color: var(--blue-700);
}

.step-theme-green .req-step-badge {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.step-theme-amber .req-step-badge {
  background: var(--amber-100);
  color: var(--amber-600);
}

.step-theme-rose .req-step-badge {
  background: var(--red-100);
  color: var(--red-600);
}

.req-step-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-300);
}

.req-step-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.step-theme-blue .req-step-icon-box {
  background: var(--blue-50);
  color: var(--blue-600);
}

.step-theme-green .req-step-icon-box {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.step-theme-amber .req-step-icon-box {
  background: var(--amber-100);
  color: var(--amber-600);
}

.step-theme-rose .req-step-icon-box {
  background: var(--red-100);
  color: var(--red-600);
}

.req-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.65rem;
}

.req-step-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.req-step-list {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.req-step-list li {
  font-size: 0.78rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.req-step-list li i {
  color: var(--emerald-600);
  margin-top: 3px;
  font-size: 0.72rem;
}

/* ============================================================
   INTERACTIVE JOSHUA'S LAW CHECKLIST TOOL
   ============================================================ */
.section-checklist {
  padding: var(--space-section) 0;
  background: var(--gray-50);
}

.checklist-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.checklist-progress-box {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cp-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.cp-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.cp-bar-wrap {
  flex: 1;
  min-width: 220px;
}

.cp-bar-bg {
  height: 12px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.cp-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-600), var(--emerald-500));
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.cp-percent {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--blue-700);
  min-width: 50px;
  text-align: right;
}

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

.chk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chk-item:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
}

.chk-item.checked {
  background: #f0fdf4;
  border-color: #86efac;
}

.chk-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: transparent;
  transition: all var(--transition-fast);
}

.chk-item.checked .chk-checkbox {
  background: var(--emerald-600);
  border-color: var(--emerald-600);
  color: var(--white);
}

.chk-content h5 {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.chk-content p {
  font-size: 0.785rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ============================================================
   JOSHUA'S LAW INFORMATION (FULL-WIDTH MODERN SHOWCASE)
   ============================================================ */
.section-teasers,
.section-joshua-showcase {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background: var(--white);
  position: relative;
}

.joshua-full-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 45%, #eff6ff 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 45px -15px rgba(37, 99, 235, 0.12), 0 8px 24px -8px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  position: relative;
}

.joshua-full-card::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.joshua-card-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 3.25rem;
}

.joshua-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-700);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  margin-bottom: 1rem;
}

.joshua-title {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--gray-900);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.joshua-lead {
  font-size: 0.965rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.joshua-grid-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.joshua-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-fast);
}

.joshua-point:hover {
  border-color: var(--blue-300);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.08);
}

.jp-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.jp-icon-blue {
  background: var(--blue-50);
  color: var(--blue-600);
}

.jp-icon-green {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.jp-icon-amber {
  background: var(--amber-100);
  color: var(--amber-600);
}

.jp-icon-red {
  background: var(--red-100);
  color: var(--red-600);
}

.jp-text {
  display: flex;
  flex-direction: column;
}

.jp-text strong {
  font-size: 0.88rem;
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 2px;
}

.jp-text span {
  font-size: 0.775rem;
  color: var(--gray-500);
  line-height: 1.35;
}

.joshua-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-joshua-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: var(--white) !important;
  font-size: 0.925rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-joshua-primary:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-800) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
}

.btn-joshua-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-700) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.3);
  font-size: 0.925rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-joshua-secondary:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
  color: var(--blue-800) !important;
  transform: translateY(-2px);
}

/* Side Card Graphic */
.joshua-side-graphic {
  width: 100%;
}

.joshua-card-box {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition-base);
}

.joshua-card-box:hover {
  border-color: var(--blue-300);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(37, 99, 235, 0.16);
}

.jcb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jcb-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald-600);
  background: var(--emerald-100);
  padding: 4px 11px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.jcb-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-700);
  background: var(--blue-50);
  padding: 4px 11px;
  border-radius: var(--radius-full);
}

.jcb-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gray-300);
}

.jcb-img {
  max-height: 135px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease;
}

.joshua-card-box:hover .jcb-img {
  transform: scale(1.05);
}

.jcb-metrics {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 12px 10px;
}

.jcb-metric {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.jcb-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
  margin-bottom: 3px;
}

.jcb-val small {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-left: 2px;
}

.jcb-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.jcb-sep {
  width: 1px;
  height: 32px;
  background: var(--gray-300);
}

.jcb-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.785rem;
  color: var(--gray-500);
  line-height: 1.3;
  font-weight: 500;
  justify-content: center;
  text-align: center;
}

.jcb-footer i {
  color: var(--blue-500);
  font-size: 0.9rem;
}

/* Responsive Rules for Joshua's Law Full-Width Card */
@media (max-width: 992px) {
  .joshua-card-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.75rem;
    gap: 2.25rem;
  }

  .joshua-side-graphic {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .joshua-grid-points {
    grid-template-columns: 1fr;
  }

  .joshua-card-inner {
    padding: 1.75rem 1.25rem;
  }

  .joshua-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-joshua-primary,
  .btn-joshua-secondary {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   8-CARD BENEFITS GRID
   ============================================================ */
.section-benefits {
  padding: var(--space-section) 0;
  background: var(--gray-50);
}

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

.bcard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.bcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

.bcard-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.bcard-blue .bcard-icon {
  background: var(--blue-50);
  color: var(--blue-600);
}

.bcard-emerald .bcard-icon {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.bcard-purple .bcard-icon {
  background: var(--purple-100);
  color: var(--purple-600);
}

.bcard-rose .bcard-icon {
  background: var(--red-100);
  color: var(--red-600);
}

.bcard-amber .bcard-icon {
  background: var(--amber-100);
  color: var(--amber-600);
}

.bcard-teal .bcard-icon {
  background: #ccfbf1;
  color: #0f766e;
}

.bcard-cyan .bcard-icon {
  background: #cffafe;
  color: #0891b2;
}

.bcard-orange .bcard-icon {
  background: #ffedd5;
  color: #c2410c;
}

.bcard-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.bcard-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.section-testimonials {
  padding: var(--space-section) 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}

.testi-blue .testimonial-avatar {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
}

.testi-green .testimonial-avatar {
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
}

.testi-purple .testimonial-avatar {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
}

.testimonial-author-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gray-900);
}

.testimonial-author-sub {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.section-cta {
  padding: 2rem 0 5rem 0;
}

.cta-box {
  background: linear-gradient(135deg, #091a30 0%, #173d6d 50%, #091a30 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  color: var(--white);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--white);
  color: var(--blue-900);
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.btn-cta-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  color: var(--blue-700);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   MODERN 4-COLUMN FOOTER
   ============================================================ */
.footer-home {
  background: #071526;
  color: #94a3b8;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  padding: 4.5rem 0 3.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr 1.2fr;
  gap: 3rem;
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand-logo img,
.footer-logo-white {
  max-height: 62px;
  max-width: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer-brand-logo:hover img,
.footer-brand-logo:hover .footer-logo-white {
  opacity: 0.88;
  transform: translateY(-1px);
}

.footer-brand p {
  color: #94a3b8;
  margin: 0rem 0;
  line-height: 1.6;
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

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

.footer-links a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-links a i {
  font-size: 0.75rem;
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fcc-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fcc-item i {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.fcc-icon-blue {
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
}

.fcc-icon-red {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
}

.fcc-icon-amber {
  background: rgba(217, 119, 6, 0.2);
  color: #fbbf24;
}

.fcc-label {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fcc-item strong {
  color: var(--white);
  font-size: 0.925rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #94a3b8;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================================
   INNER PAGE STYLING (For Database-Driven Pages)
   ============================================================ */
.inner-page-hero {
  position: relative;
  background-color: #071526;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 290px;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 3.8rem 0;
  overflow: hidden;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inner-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 21, 38, 0.92) 0%, rgba(13, 40, 71, 0.85) 55%, rgba(15, 23, 42, 0.94) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

.inner-page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Centralized Inner Hero for All Pages */
.inner-page-hero-content .inner-hero-breadcrumb,
.inner-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.inner-hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.15;
  margin: 0 auto 0.75rem auto;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.inner-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #93c5fd;
  margin: 0 auto 0.5rem auto;
  text-align: center;
}

.inner-hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 1.25rem auto;
  text-align: center;
}

.inner-hero-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}


.btn-inner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
  transition: all var(--transition-fast);
}

.btn-inner-cta:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
  color: var(--white);
}

.inner-page-wrapper {
  padding: 3.5rem 0 5rem 0;
  background: var(--gray-50);
}

.inner-page-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  line-height: 1.8;
  color: var(--gray-800);
  font-size: 1rem;
}

.inner-page-card h1,
.inner-page-card h2,
.inner-page-card h3,
.inner-page-card h4 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.inner-page-card p {
  margin-bottom: 1.25rem;
}

.inner-page-card ul,
.inner-page-card ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.inner-page-card ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

.inner-page-card ol li {
  list-style-type: decimal;
  margin-bottom: 0.5rem;
}

.inner-page-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.inner-page-card table th,
.inner-page-card table td {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  text-align: left;
}

.inner-page-card table th {
  background: var(--gray-100);
  font-weight: 700;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-course-options {
    max-width: 600px;
  }

  .highlights-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

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

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

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

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

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

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

  .checklist-items-grid {
    grid-template-columns: 1fr;
  }

  .callout-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .callout-left {
    flex-direction: column;
  }

  .callout-desc {
    max-width: 100%;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem 1.5rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-base);
    z-index: 999;
    gap: 8px;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    font-size: 1rem;
    padding: 10px 14px;
  }

  .nav-actions .btn-nav-login,
  .nav-actions .btn-nav-register {
    display: none;
  }

  .nav-mobile-btn {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .quick-login-bar-standalone {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .ql-portal-badge {
    border-right: none;
    padding-right: 0;
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 0.75rem;
  }

  .ql-single-form {
    width: 100%;
    flex-wrap: wrap;
  }

  .ql-register-cta {
    border-left: none;
    padding-left: 0;
    width: 100%;
    justify-content: center;
    border-top: 1px solid var(--gray-200);
    padding-top: 0.75rem;
  }

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

  .bento-card.bento-hero {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .hero-home {
    min-height: auto;
    padding: 3.5rem 0 4rem 0;
  }

  .hero-course-options {
    grid-template-columns: 1fr;
  }

  .section-quick-login {
    margin-top: -1.5rem;
  }

  .quick-login-bar-standalone {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
  }

  .ql-single-form {
    flex-direction: column;
    align-items: stretch;
  }

  .ql-input-wrap {
    min-width: 100%;
  }

  .btn-ql-login {
    width: 100%;
    justify-content: center;
  }

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

  .bento-stats-ribbon {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .bsr-divider {
    width: 100%;
    height: 1px;
  }

  .req-steps-grid {
    grid-template-columns: 1fr;
  }

  .benefits-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .checklist-wrapper {
    padding: 1.5rem;
  }
}

/* ============================================================
   BACK TO TOP FLOATING BUTTON (ULTRA MODERN)
   ============================================================ */
.btn-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4), 0 2px 6px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 995;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.btn-scroll-top:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, #1e40af 100%);
  color: var(--white);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.55), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-scroll-top:active {
  transform: translateY(-1px) scale(0.96);
}

.btn-scroll-top i {
  transition: transform 0.2s ease;
}

.btn-scroll-top:hover i {
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .btn-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ============================================================
   ULTRA MODERN INTERACTIVE FAQ PAGE STYLING
   Matches Georgia Driver Education Modern Theme
   ============================================================ */
.inner-page-card-faq {
  padding: 3rem !important;
  background: var(--white) !important;
  border-radius: var(--radius-2xl) !important;
  box-shadow: 0 10px 35px -5px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04) !important;
  border: 1px solid var(--gray-200) !important;
}

@media (max-width: 768px) {
  .inner-page-card-faq {
    padding: 1.75rem 1.25rem !important;
    border-radius: var(--radius-xl) !important;
  }
}

.faq-page-wrapper {
  color: var(--gray-800);
}

/* --- FAQ Header & Intro --- */
.faq-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem auto;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid var(--blue-100);
  margin-bottom: 1rem;
}

.faq-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.faq-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0 auto;
}

/* --- Search Bar --- */
.faq-search-box {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  position: relative;
}

.faq-search-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  font-size: 1.15rem;
  color: var(--blue-600);
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  height: 58px;
  padding: 0 52px 0 54px;
  font-size: 1.02rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: all var(--transition-fast);
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 0 8px 24px rgba(15, 23, 42, 0.08);
}

.faq-search-clear {
  position: absolute;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.faq-search-clear:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

.faq-search-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
  padding: 0 10px;
}

/* --- Category Filter Tabs --- */
.faq-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.faq-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--gray-50);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.faq-tab-btn i {
  color: var(--blue-600);
  font-size: 0.95rem;
}

.faq-tab-btn:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  border-color: var(--blue-200);
  transform: translateY(-1px);
}

.faq-tab-btn.active {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: var(--white);
  border-color: var(--blue-700);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.faq-tab-btn.active i {
  color: var(--white);
}

.faq-tab-count {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.08);
}

.faq-tab-btn.active .faq-tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* --- Accordion Action Bar --- */
.faq-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0 4px;
}

.faq-active-category-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-toggle-all-btn {
  background: none;
  border: 1px solid var(--gray-300);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-toggle-all-btn:hover {
  background: var(--gray-100);
  color: var(--gray-900);
  border-color: var(--gray-400);
}

/* --- Accordion Items --- */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 3.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.faq-item:hover {
  border-color: var(--blue-300);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.06);
}

.faq-item.active {
  border-color: var(--blue-500);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: all var(--transition-fast);
  user-select: none;
}

.faq-question-btn:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: -2px;
}

.faq-question-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.faq-q-category-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--gray-100);
  color: var(--gray-600);
  margin-top: 3px;
  flex-shrink: 0;
}

.faq-item.active .faq-q-category-tag {
  background: var(--blue-100);
  color: var(--blue-700);
}

.faq-question-title {
  flex: 1;
  line-height: 1.45;
  color: var(--gray-900);
}

.faq-item.active .faq-question-title {
  color: var(--blue-700);
}

.faq-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-item.active .faq-icon-wrapper {
  background: var(--blue-600);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--gray-50);
}

.faq-item.active .faq-answer-collapse {
  max-height: 2000px;
}

.faq-answer-body {
  padding: 1.25rem 1.5rem 1.75rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 0.975rem;
  line-height: 1.7;
}

.faq-answer-body p {
  margin-bottom: 0.85rem;
}

.faq-answer-body p:last-child {
  margin-bottom: 0;
}

.faq-answer-body ul,
.faq-answer-body ol {
  margin: 0.75rem 0 1rem 1.5rem;
  padding: 0;
}

.faq-answer-body li {
  margin-bottom: 0.5rem;
}

.faq-highlight-box {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-600);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1rem 0;
  font-size: 0.95rem;
  color: var(--blue-950);
}

.faq-alert-box {
  background: var(--amber-50);
  border-left: 4px solid var(--amber-500);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1rem 0;
  font-size: 0.95rem;
  color: #78350f;
}

.faq-step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 0.75rem 0;
}

.faq-step-card h5 {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Video Tutorials Hub --- */
.faq-video-section {
  margin: 3.5rem 0 2rem 0;
  padding-top: 3rem;
  border-top: 2px dashed var(--gray-200);
}

.faq-video-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-video-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-video-header h3 i {
  color: var(--red-600);
}

.faq-video-header p {
  color: var(--gray-500);
  margin: 0;
  font-size: 0.95rem;
}

.faq-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.faq-video-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: all var(--transition-base);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.faq-video-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-400);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.faq-video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--gray-900);
  overflow: hidden;
}

.faq-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.faq-video-card:hover .faq-video-thumb {
  transform: scale(1.05);
}

.faq-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 38, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.faq-video-card:hover .faq-video-overlay {
  background: rgba(7, 21, 38, 0.25);
}

.faq-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
  transition: transform 0.3s ease;
}

.faq-play-btn i {
  margin-left: 3px;
}

.faq-video-card:hover .faq-play-btn {
  transform: scale(1.15);
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.faq-video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-video-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.faq-video-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
  transition: color var(--transition-fast);
}

.faq-video-card:hover .faq-video-title {
  color: var(--blue-600);
}

.faq-video-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0 0 1rem 0;
  flex: 1;
}

.faq-video-watch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-600);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

/* --- Support Callout Footer Banner --- */
.faq-support-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #091728 0%, #153961 100%);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(9, 23, 40, 0.35);
}

.faq-support-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.faq-support-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.faq-support-info {
  max-width: 540px;
}

.faq-support-info h4 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.02em;
}

.faq-support-info p {
  color: #cbd5e1;
  font-size: 0.975rem;
  line-height: 1.6;
  margin: 0;
}

.faq-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-faq-support-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  transition: all var(--transition-fast);
}

.btn-faq-support-primary:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-faq-support-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-faq-support-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--white);
}

/* --- Video Lightbox Modal --- */
.faq-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.faq-modal-box {
  width: 100%;
  max-width: 860px;
  background: #0f172a;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.faq-modal-backdrop.open .faq-modal-box {
  transform: scale(1);
}

.faq-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #08182b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.faq-modal-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-modal-close-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.faq-modal-close-btn:hover {
  color: var(--white);
}

.faq-modal-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

.faq-modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Search Highlight & No Results --- */
.faq-highlight-match {
  background: #fef08a;
  color: #713f12;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}

.faq-no-results {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--gray-300);
  margin-bottom: 2rem;
  display: none;
}

.faq-no-results i {
  font-size: 3rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.faq-no-results h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.faq-no-results p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ============================================================
   ULTRA MODERN OUR-PROGRAMS PAGE STYLING
   ============================================================ */
.inner-page-card-programs {
  padding: 3.5rem 3rem !important;
  background: var(--white) !important;
  border-radius: var(--radius-2xl) !important;
  box-shadow: 0 10px 35px -5px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04) !important;
  border: 1px solid var(--gray-200) !important;
}

@media (max-width: 768px) {
  .inner-page-card-programs {
    padding: 2rem 1.25rem !important;
    border-radius: var(--radius-xl) !important;
  }
}

.programs-wrapper {
  color: var(--gray-800);
}

/* --- Header Section --- */
.programs-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3rem auto;
}

.programs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: 9999px;
  border: 1px solid var(--blue-100);
  margin-bottom: 1rem;
}

.programs-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.programs-subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0 auto;
}

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

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

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

.programs-stat-card {
  background: linear-gradient(135deg, var(--gray-50) 0%, #f1f5f9 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.programs-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1);
  border-color: var(--blue-300);
}

.programs-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.programs-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.programs-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Section Titles --- */
.programs-sec-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.programs-sec-subtitle {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* --- Program Pillars Grid (Key Features) --- */
.programs-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

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

@media (max-width: 640px) {
  .programs-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.programs-pillar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.programs-pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-400);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.09);
}

.programs-pillar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.programs-pillar-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.programs-pillar-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* --- Costech Leadership Story Card --- */
.programs-leadership-card {
  background: linear-gradient(135deg, #071526 0%, #0f2744 100%);
  border-radius: var(--radius-2xl);
  padding: 3.5rem;
  color: var(--white);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(7, 21, 38, 0.4);
}

.programs-leadership-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.programs-leadership-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .programs-leadership-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.programs-leadership-content h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.programs-leadership-content p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.programs-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.programs-trust-badge-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-fast);
}

.programs-trust-badge-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.programs-tb-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.programs-tb-title {
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.programs-tb-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}

/* --- 10-Module Interactive Syllabus Explorer --- */
.programs-curriculum-section {
  margin-bottom: 4rem;
}

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

@media (max-width: 820px) {
  .programs-modules-grid {
    grid-template-columns: 1fr;
  }
}

.programs-mod-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.programs-mod-item:hover {
  border-color: var(--blue-400);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);
}

.programs-mod-item.active {
  border-color: var(--blue-600);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.programs-mod-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: inherit;
}

.programs-mod-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.programs-mod-num {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  color: var(--blue-600);
  font-weight: 900;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.programs-mod-item.active .programs-mod-num {
  background: var(--blue-600);
  color: var(--white);
}

.programs-mod-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 3px 0;
  line-height: 1.35;
}

.programs-mod-info span {
  font-size: 0.825rem;
  color: var(--gray-500);
  font-weight: 500;
}

.programs-mod-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.programs-mod-item.active .programs-mod-chevron {
  background: var(--blue-100);
  color: var(--blue-700);
  transform: rotate(180deg);
}

.programs-mod-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--gray-50);
}

.programs-mod-item.active .programs-mod-collapse {
  max-height: 400px;
}

.programs-mod-body {
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.925rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.programs-mod-body ul {
  margin: 0.5rem 0 0 1.25rem;
  padding: 0;
}

.programs-mod-body li {
  margin-bottom: 0.35rem;
}

/* --- Comparison Table --- */
.programs-compare-section {
  margin-bottom: 4rem;
}

.programs-compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.programs-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--white);
  font-size: 0.95rem;
}

.programs-compare-table th {
  padding: 1.25rem 1.5rem;
  font-weight: 800;
  border-bottom: 1px solid var(--gray-200);
}

.programs-compare-table th.col-feature {
  background: var(--gray-50);
  color: var(--gray-700);
  width: 38%;
}

.programs-compare-table th.col-costech {
  background: var(--blue-600);
  color: var(--white);
  width: 31%;
  text-align: center;
  font-size: 1.05rem;
}

.programs-compare-table th.col-traditional {
  background: var(--gray-100);
  color: var(--gray-800);
  width: 31%;
  text-align: center;
}

.programs-compare-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.programs-compare-table tr:hover td {
  background: #f8fafc;
}

.programs-compare-table td.cell-costech {
  background: rgba(37, 99, 235, 0.04);
  font-weight: 700;
  color: var(--blue-700);
  text-align: center;
}

.programs-compare-table td.cell-traditional {
  text-align: center;
  color: var(--gray-500);
}

/* --- 4-Step Roadmap --- */
.programs-roadmap-section {
  margin-bottom: 4rem;
}

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

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

@media (max-width: 540px) {
  .programs-roadmap-grid {
    grid-template-columns: 1fr;
  }
}

.programs-step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all var(--transition-fast);
}

.programs-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-400);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.programs-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 900;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.programs-step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.programs-step-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* --- Final Enrollment Banner --- */
.programs-cta-card {
  background: linear-gradient(135deg, #091728 0%, #153961 100%);
  border-radius: var(--radius-2xl);
  padding: 3.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(9, 23, 40, 0.4);
  text-align: center;
}

.programs-cta-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.programs-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.programs-cta-inner h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.programs-cta-inner p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.programs-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   ULTRA MODERN CONTACT US PAGE STYLING
   ============================================================ */
.inner-page-card-contact {
  padding: 3.5rem 3rem !important;
  background: var(--white) !important;
  border-radius: var(--radius-2xl) !important;
  box-shadow: 0 10px 35px -5px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04) !important;
  border: 1px solid var(--gray-200) !important;
}

@media (max-width: 768px) {
  .inner-page-card-contact {
    padding: 2rem 1.25rem !important;
    border-radius: var(--radius-xl) !important;
  }
}

.contact-wrapper {
  color: var(--gray-800);
}

/* Header */
.contact-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 3rem auto;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--blue-100);
  margin-bottom: 1rem;
}

.contact-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0 auto;
}

/* Quick Channels Grid */
.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

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

@media (max-width: 540px) {
  .contact-channels-grid {
    grid-template-columns: 1fr;
  }
}

.contact-channel-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-fast);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}

.contact-channel-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-400);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
  color: inherit;
}

.contact-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
}

.contact-channel-card:hover .contact-channel-icon {
  transform: scale(1.08);
}

.contact-channel-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.contact-channel-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  word-break: break-all;
}

.contact-channel-sub {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Main 2-Column Section (Payment & Info + Google Map) */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: stretch;
}

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

/* Contact Map Card */
.contact-map-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.contact-map-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.08);
}

.contact-map-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.contact-map-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-map-header p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

.contact-map-frame {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 340px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.contact-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
  gap: 10px;
}

.contact-map-coords {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

.btn-map-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-map-directions:hover {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Contact Form Box (Optional / Fallback) */
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

@media (max-width: 600px) {
  .contact-form-box {
    padding: 1.75rem 1.25rem;
  }
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-header p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin: 0;
}

.contact-form-group {
  margin-bottom: 1.5rem;
}

.contact-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.contact-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-input-icon {
  position: absolute;
  left: 16px;
  color: var(--gray-400);
  font-size: 1rem;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  padding: 12px 16px 12px 46px;
  font-family: inherit;
  font-size: 0.975rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  outline: none;
}

.contact-form-textarea {
  padding-left: 46px;
  padding-top: 14px;
  min-height: 140px;
  resize: vertical;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  background: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-input-wrap:focus-within .contact-input-icon {
  color: var(--blue-600);
}

.btn-contact-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
  transition: all var(--transition-fast);
}

.btn-contact-submit:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-800) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.contact-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Info Sidebar / Department Cards */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-dept-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: all var(--transition-fast);
}

.contact-dept-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.07);
}

.contact-dept-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.contact-dept-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-dept-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0;
}

.contact-dept-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.contact-dept-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-dept-action:hover {
  color: var(--blue-800);
  text-decoration: underline;
}

/* Mailing Card */
.contact-mail-card {
  background: linear-gradient(135deg, #091728 0%, #153961 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(9, 23, 40, 0.25);
}

.contact-mail-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.contact-mail-inner {
  position: relative;
  z-index: 2;
}

.contact-mail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.12);
  color: #93c5fd;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.contact-mail-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white) !important;
  margin: 0 0 0.5rem 0;
}

.contact-mail-payable {
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 0.85rem;
}

.contact-mail-payable strong {
  color: #60a5fa;
}

.contact-mail-address {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f1f5f9;
  margin-bottom: 1rem;
}

.btn-copy-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-copy-address:hover {
  background: var(--white);
  color: var(--gray-900);
}

/* Bottom FAQ Callout Banner */
.contact-bottom-banner {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-bb-info h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-bb-info p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   JOSHUA'S LAW PAGE STYLES
   Ultra Modern Bento, Checklists, Badges & Timelines
   ============================================================ */
.inner-page-card-joshua {
  padding: 3rem 3rem 4rem !important;
  background: var(--white) !important;
  border-radius: var(--radius-2xl) !important;
}

@media (max-width: 768px) {
  .inner-page-card-joshua {
    padding: 1.75rem 1.25rem 2.5rem !important;
  }
}

.joshua-wrapper {
  color: var(--gray-800);
}

.joshua-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.joshua-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid var(--blue-100);
  margin-bottom: 1rem;
}

.joshua-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.joshua-subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0 auto;
}

/* Quick Stats Ribbon */
.joshua-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

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

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

.joshua-stat-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.joshua-stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-400);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.09);
}

.joshua-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 0.85rem;
}

.joshua-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.joshua-stat-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Pathways Comparison: Age 16 vs Age 17 */
.joshua-pathways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 860px) {
  .joshua-pathways-grid {
    grid-template-columns: 1fr;
  }
}

.joshua-path-card {
  border-radius: var(--radius-2xl);
  padding: 2.25rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.joshua-path-recommended {
  background: linear-gradient(135deg, #091728 0%, #153961 100%);
  color: var(--white);
  border: 2px solid #2563eb;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
}

.joshua-path-standard {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-900);
}

.joshua-path-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  width: fit-content;
}

.joshua-path-recommended .joshua-path-pill {
  background: #059669;
  color: var(--white);
}

.joshua-path-standard .joshua-path-pill {
  background: var(--gray-200);
  color: var(--gray-700);
}

.joshua-path-title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.joshua-path-recommended .joshua-path-title {
  color: var(--white);
}

.joshua-path-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.joshua-path-recommended .joshua-path-desc {
  color: #cbd5e1;
}

.joshua-path-standard .joshua-path-desc {
  color: var(--gray-600);
}

.joshua-path-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.joshua-path-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.925rem;
  line-height: 1.5;
}

.joshua-path-recommended .joshua-path-list li i {
  color: #34d399;
  margin-top: 3px;
  flex-shrink: 0;
}

.joshua-path-standard .joshua-path-list li i {
  color: var(--blue-600);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Section Dividers & Headings */
.joshua-section-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.joshua-section-heading h3 {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.joshua-section-heading p {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 650px;
  margin: 0 auto;
}

/* 6-Step Class D Requirements Grid */
.joshua-reqs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

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

@media (max-width: 600px) {
  .joshua-reqs-grid {
    grid-template-columns: 1fr;
  }
}

.joshua-req-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  position: relative;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.joshua-req-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-300);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

.joshua-req-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.joshua-req-step {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.joshua-req-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.joshua-req-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.joshua-req-text {
  font-size: 0.885rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* Documents Grid */
.joshua-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

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

.joshua-doc-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: all var(--transition-fast);
}

.joshua-doc-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.joshua-doc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.85rem;
}

.joshua-doc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.joshua-doc-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0;
}

.joshua-doc-body {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.joshua-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.65rem;
  font-size: 0.875rem;
}

.joshua-doc-link:hover {
  color: var(--blue-800);
  text-decoration: underline;
}

/* Restrictions & Curfew Box */
.joshua-restrictions-container {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  margin-bottom: 4rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

@media (max-width: 768px) {
  .joshua-restrictions-container {
    padding: 1.75rem 1.25rem;
  }
}

.joshua-curfew-banner {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1.5px solid #fca5a5;
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .joshua-curfew-banner {
    flex-direction: column;
    text-align: center;
  }
}

.joshua-curfew-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: #ef4444;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.joshua-curfew-content h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #991b1b;
  margin: 0 0 0.25rem 0;
}

.joshua-curfew-content p {
  font-size: 0.925rem;
  color: #7f1d1d;
  margin: 0;
  line-height: 1.55;
}

/* Graduated Passenger Scale */
.joshua-passenger-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 800px) {
  .joshua-passenger-timeline {
    grid-template-columns: 1fr;
  }
}

.joshua-timeline-step {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: relative;
  transition: all var(--transition-fast);
}

.joshua-timeline-step:hover {
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.joshua-timeline-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--blue-100);
  color: var(--blue-800);
  margin-bottom: 0.75rem;
}

.joshua-timeline-rule {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.joshua-timeline-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

/* Notes Bento Strip */
.joshua-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 860px) {
  .joshua-notes-grid {
    grid-template-columns: 1fr;
  }
}

.joshua-note-item {
  background: #f8fafc;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.25rem 1.5rem;
}

.joshua-note-item h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.joshua-note-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

/* Joshua CTA Banner */
.joshua-cta-banner {
  background: linear-gradient(135deg, #091728 0%, #153961 100%);
  border-radius: var(--radius-2xl);
  padding: 3rem 2.5rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}

.joshua-cta-banner h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white) !important;
  margin-bottom: 0.75rem;
}

.joshua-cta-banner p {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.joshua-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}