/* ============================================
   LIQUID SUNSET — Location Voiture Toulouse
   Warm gradients, morphing blobs, glassmorphism
   ============================================ */

/* === CSS Variables === */
:root {
  /* Primary Palette */
  --sunset-orange: #FF6B35;
  --sunset-light: #FF8C5A;
  --deep-purple: #7B2CBF;
  --purple-light: #9D4EDD;
  --rose-pink: #FF8FAB;
  --ocean-blue: #3A86FF;
  --cream: #FFFCF2;
  --cream-dark: #FFF3E0;

  /* Gradients */
  --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #FF8FAB 50%, #7B2CBF 100%);
  --gradient-warm: linear-gradient(135deg, #FF8FAB 0%, #FF6B35 100%);
  --gradient-cool: linear-gradient(135deg, #3A86FF 0%, #7B2CBF 100%);
  --gradient-blob1: linear-gradient(135deg, #FF6B35 0%, #FF8FAB 100%);
  --gradient-blob2: linear-gradient(135deg, #7B2CBF 0%, #3A86FF 100%);
  --gradient-blob3: linear-gradient(135deg, #FF8FAB 0%, #7B2CBF 100%);

  /* Semantic Colors */
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A68;
  --text-light: #8888A0;
  --bg-primary: #FFFCF2;
  --bg-glass: rgba(255, 255, 255, 0.25);
  --border-glass: rgba(255, 255, 255, 0.4);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(123, 44, 191, 0.1);
  --shadow-md: 0 8px 24px rgba(123, 44, 191, 0.15);
  --shadow-lg: 0 16px 48px rgba(123, 44, 191, 0.2);
  --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;

  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s ease;
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

/* === Container === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Section Styles === */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title span {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   HEADER
   Floating transparent with blur
   ============================================ */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1200px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--sunset-orange);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-sunset);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--sunset-orange);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    gap: 1rem;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ============================================
   HERO — MORPHING BLOBS
   Animated gradient blobs with glassmorphism widget
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Hero Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 252, 242, 0.85) 0%, rgba(255, 252, 242, 0.7) 50%, rgba(255, 252, 242, 0.9) 100%);
}

/* Animated Blobs */
.blob-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-blob1);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--gradient-blob2);
  bottom: -150px;
  left: -100px;
  animation-delay: -7s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--gradient-blob3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(30px, -50px) scale(1.1) rotate(5deg);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95) rotate(-5deg);
  }

  75% {
    transform: translate(50px, 30px) scale(1.05) rotate(3deg);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  color: var(--deep-purple);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--sunset-orange);
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .gradient-text {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-sunset);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-med);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: transform var(--transition-fast);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

/* === GLASSMORPHISM WIDGET === */
.hero-widget {
  position: relative;
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Animated border */
.glass-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-sunset);
  border-radius: 34px;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 31px;
  z-index: -1;
}

.widget-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.widget-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.widget-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.widget-field {
  position: relative;
}

.widget-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.widget-field input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 16px;
  font-size: 1rem;
  background: var(--cream);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.widget-field input:hover {
  border-color: var(--rose-pink);
}

.widget-field input:focus {
  outline: none;
  border-color: var(--sunset-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.widget-field .field-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 20px;
  height: 20px;
  fill: var(--sunset-orange);
}

.widget-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.125rem 1.5rem;
  background: var(--gradient-sunset);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 16px;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.widget-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.widget-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.widget-btn:hover::before {
  left: 100%;
}

.widget-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(123, 44, 191, 0.1);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--deep-purple);
}

/* ============================================
   FEATURES
   Gradient bordered cards
   ============================================ */
.features {
  background: white;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-med);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-sunset);
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-sunset);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   FLEET — Floating cards with glow
   ============================================ */
.fleet {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.fleet::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: var(--gradient-blob2);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  top: -400px;
  right: -400px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.fleet-card {
  position: relative;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-med);
  cursor: pointer;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.fleet-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.1);
}

.fleet-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-warm);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fleet-content {
  padding: 1.5rem;
}

.fleet-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.fleet-name {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.fleet-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.fleet-detail {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.fleet-detail svg {
  width: 16px;
  height: 16px;
  fill: var(--deep-purple);
}

.fleet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(123, 44, 191, 0.1);
}

.fleet-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fleet-price span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  -webkit-text-fill-color: var(--text-secondary);
}

.fleet-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-sunset);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.fleet-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.fleet-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   ROUTES
   ============================================ */
.routes {
  background: white;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.route-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.route-card:hover img {
  transform: scale(1.1);
}

.route-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
}

.route-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--gradient-warm);
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1rem;
}

.route-tag svg {
  width: 14px;
  height: 14px;
  fill: white;
}

.route-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.route-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.route-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   TIPS & INSURANCE
   ============================================ */
.tips,
.insurance {
  background: var(--cream);
}

.tips-grid,
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tip-card,
.insurance-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  border: 1px solid transparent;
}

.tip-card:hover,
.insurance-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-pink);
}

.tip-icon,
.insurance-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-sunset);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.tip-icon svg,
.insurance-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.tip-title,
.insurance-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.tip-text,
.insurance-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  transition: all var(--transition-med);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--sunset-orange);
}

.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-sunset);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.review-name {
  font-weight: 600;
  color: var(--text-primary);
}

.review-date {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--sunset-orange);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--deep-purple);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  background: var(--gradient-sunset);
}

.faq-item.active .faq-icon svg {
  fill: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--gradient-sunset);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-section::before {
  top: -200px;
  left: -100px;
}

.cta-section::after {
  bottom: -200px;
  right: -100px;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  color: white;
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--sunset-orange);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-med);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--sunset-orange);
  transition: transform var(--transition-fast);
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-primary);
  color: white;
  position: relative;
}

.footer-main {
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--sunset-orange);
}

/* ============================================
   UTILITIES & ANIMATIONS
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in:nth-child(1) {
  transition-delay: 0s;
}

.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-in:nth-child(4) {
  transition-delay: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .widget-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .blob-1,
  .blob-2,
  .blob-3 {
    filter: blur(80px);
    opacity: 0.5;
  }
}