/* ============================================
   ALS MOTO — Rebuild 2026
   Mobile-first, conversion-optimized
   Palette: Navy (#1e3a5f) + Gold (#c9a84c) + Cream (#faf9f6)
   ============================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* Skip Link */
.skip-link {
  position: absolute; top: -100%;
  left: 50%; transform: translateX(-50%);
  background: #1e3a5f; color: #fff;
  padding: 12px 24px; border-radius: 0 0 8px 8px;
  z-index: 9999; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Container */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1280px) { .container { padding: 0 48px; } }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 100; transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.nav-container {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-icon {
  width: 40px; height: 40px; color: #c9a84c;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 18px; font-weight: 800;
  color: #1e3a5f; line-height: 1.1; letter-spacing: -0.5px;
}
.logo-tagline {
  font-size: 11px; color: #c9a84c;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Nav links */
.main-nav { display: none; }
.nav-list { display: flex; gap: 32px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: #4b5563;
  transition: color 0.2s; position: relative;
}
.nav-link:hover, .nav-link:focus { color: #1e3a5f; }
.nav-link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: #c9a84c;
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-link:hover::after, .nav-link:focus::after { transform: scaleX(1); }

/* Phone button */
.btn-phone {
  display: none; align-items: center; gap: 8px;
  background: #1e3a5f; color: #fff;
  padding: 10px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s;
}
.btn-phone:hover, .btn-phone:focus {
  background: #c9a84c; color: #1e3a5f;
}

/* Menu toggle */
.menu-toggle {
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  padding: 8px; z-index: 110;
}
.menu-bar {
  display: block; width: 24px; height: 2px;
  background: #1e3a5f; border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .menu-bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: 80%; max-width: 320px; height: 100vh;
  background: #fff; z-index: 105;
  padding: 100px 32px 32px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
}
.mobile-menu.active { right: 0; }
.mobile-menu[aria-hidden="true"] { pointer-events: none; }
.mobile-menu[aria-hidden="false"] { pointer-events: all; }

.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block; padding: 14px 0;
  font-size: 18px; font-weight: 600; color: #1e3a5f;
  border-bottom: 1px solid #e8e8e6;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link:focus {
  color: #c9a84c; padding-left: 8px;
}
.mobile-phone-btn {
  margin-top: 24px; justify-content: center;
}

/* Overlay */
.mobile-menu::before {
  content: ''; position: fixed;
  top: 0; left: -100vw; right: 100%;
  bottom: 0; background: rgba(0,0,0,0.4);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.mobile-menu.active::before {
  left: 0; right: 0; opacity: 1; pointer-events: all;
}

/* Desktop nav */
@media (min-width: 1024px) {
  .main-nav { display: block; }
  .btn-phone { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }
  .nav-container { height: 72px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #c9a84c; color: #0f1d2f;
}
.btn-primary:hover, .btn-primary:focus {
  background: #d9bc6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover, .btn-outline:focus {
  border-color: #c9a84c; background: rgba(255,255,255,0.08);
}
.btn-outline-dark {
  background: transparent; color: #1e3a5f;
  border: 2px solid #1e3a5f;
}
.btn-outline-dark:hover, .btn-outline-dark:focus {
  background: #1e3a5f; color: #fff;
}
.btn-outline-light {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: rgba(255,255,255,0.1); border-color: #fff;
}
.btn-full { width: 100%; }
.btn svg { flex-shrink: 0; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,29,47,0.95) 0%,
    rgba(15,29,47,0.88) 40%,
    rgba(15,29,47,0.6) 100%
  );
}
.hero-container {
  position: relative; z-index: 1;
  display: grid; gap: 40px;
  padding-top: 48px; padding-bottom: 48px;
}
.hero-content { max-width: 700px; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 8px 16px;
  color: #fff; font-size: 13px; font-weight: 500;
  margin-bottom: 24px; backdrop-filter: blur(8px);
}
.hero-badge svg { color: #c9a84c; }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 20px;
}
.text-gold { color: #b8941f; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
}

.hero-proof {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.95);
  color: #1e3a5f; padding: 10px 18px;
  border-radius: 999px; font-size: 13px;
  font-weight: 500; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.pill svg { color: #c9a84c; }

/* Floating card */
.hero-floating-card {
  position: relative;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 280px; margin-top: 20px;
}
.floating-icon {
  width: 48px; height: 48px;
  background: #c9a84c; border-radius: 12px;
  display: flex; align-items: center;
  justify-content: center; color: #fff;
  flex-shrink: 0;
}
.floating-title { font-weight: 700; color: #1e3a5f; font-size: 14px; }
.floating-subtitle { font-size: 13px; color: #6b7280; }

/* Hero desktop */
@media (min-width: 1024px) {
  .hero { min-height: 100vh; padding-top: 72px; }
  .hero-container {
    grid-template-columns: 1fr auto;
    align-items: center; gap: 60px;
    padding-top: 80px; padding-bottom: 80px;
  }
  .hero-floating-card {
    position: absolute;
    bottom: 80px; right: 48px;
    margin-top: 0;
  }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: #faf9f6;
  border-bottom: 1px solid #e8e8e6;
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; text-align: center;
}
.stat-item { padding: 16px; }
.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800; color: #1e3a5f;
  line-height: 1; margin-bottom: 8px;
}
.stat-number.text-gold { color: #b8941f; }
.stat-label {
  font-size: 14px; color: #6b7280;
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 64px 0; }
.section-cream { background: #faf9f6; }
.section-navy {
  background: #0f1d2f;
  color: #fff;
}

.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px; color: #c9a84c;
  margin-bottom: 16px;
}
.section-navy .section-label { color: #c9a84c; }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; color: #1a1a1a;
  line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-navy .section-title { color: #fff; }
.section-subtitle {
  font-size: 1.0625rem; color: #6b7280;
  max-width: 600px; margin: 0 auto;
  line-height: 1.7;
}
.section-navy .section-subtitle { color: rgba(255,255,255,0.6); }

@media (min-width: 768px) { .section { padding: 80px 0; } }
@media (min-width: 1024px) { .section { padding: 100px 0; } }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid; gap: 24px;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  background: #fff; border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(201,168,76,0.3);
}
.service-img {
  aspect-ratio: 16/10; overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}
.service-content { padding: 24px; }
.service-title {
  font-size: 18px; font-weight: 700;
  color: #1a1a1a; margin-bottom: 10px;
}
.service-desc {
  font-size: 14px; color: #6b7280;
  line-height: 1.65; margin-bottom: 16px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: #1e3a5f; transition: color 0.2s, gap 0.2s;
}
.service-link:hover, .service-link:focus {
  color: #c9a84c; gap: 10px;
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-col {
  display: grid; gap: 40px;
}
.two-col-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px; line-height: 1.75;
}
.section:not(.section-navy) .two-col-content p {
  color: #4b5563;
}
.two-col-image {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.two-col-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.two-col-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: center; gap: 64px;
  }
  .two-col-reverse {
    direction: rtl;
  }
  .two-col-reverse > * {
    direction: ltr;
  }
}

/* Checklist */
.checklist { margin-bottom: 32px; }
.checklist li {
  display: flex; align-items: flex-start;
  gap: 12px; padding: 10px 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.checklist li svg {
  color: #c9a84c; flex-shrink: 0; margin-top: 2px;
}

/* Badges row */
.badges-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.badge {
  background: rgba(201,168,76,0.15);
  color: #c9a84c; padding: 8px 16px;
  border-radius: 999px; font-size: 13px;
  font-weight: 600;
}

/* Features list */
.features-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: rgba(255,255,255,0.03);
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.06);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.15);
  border-radius: 12px; display: flex;
  align-items: center; justify-content: center;
  color: #c9a84c; flex-shrink: 0;
}
.feature-title { font-weight: 700; color: #fff; font-size: 15px; margin-bottom: 4px; }
.feature-desc { font-size: 14px; color: rgba(255,255,255,0.5); }

/* Features on light backgrounds (Moto Taxi section fix) */
.section:not(.section-navy) .feature-title { color: #1e3a5f; }
.section:not(.section-navy) .feature-desc { color: #6b7280; }

/* ============================================
   USP CARDS (Pourquoi ALS)
   ============================================ */
.usp-grid {
  display: grid; gap: 24px;
}
@media (min-width: 640px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }

.usp-card {
  background: #fff; border-radius: 16px;
  padding: 32px 24px; text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid #e8e8e6;
  transition: all 0.3s ease;
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: rgba(201,168,76,0.3);
}
.usp-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center;
  justify-content: center;
  color: #c9a84c; margin: 0 auto 20px;
}
.usp-title {
  font-size: 18px; font-weight: 700;
  color: #1a1a1a; margin-bottom: 10px;
}
.usp-desc {
  font-size: 14px; color: #6b7280;
  line-height: 1.65;
}

/* ============================================
   ATELIER GALLERY
   ============================================ */
.atelier-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 48px;
}
.atelier-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.atelier-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.atelier-img:hover img { transform: scale(1.05); }
.atelier-img-large { grid-column: span 2; aspect-ratio: 16/9; }
.atelier-img:not(.atelier-img-large) { aspect-ratio: 1; }
.atelier-img-portrait { grid-row: span 2; }

@media (min-width: 768px) {
  .atelier-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .atelier-img-large { grid-column: span 2; grid-row: span 2; }
  .atelier-img-portrait { grid-row: span 2; }
}

.atelier-story {
  background: #fff; border-radius: 16px;
  padding: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.story-title {
  font-size: 22px; font-weight: 700;
  color: #1a1a1a; margin-bottom: 16px;
}
.story-text {
  font-size: 15px; color: #4b5563;
  line-height: 1.75; margin-bottom: 12px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.process-step {
  text-align: center; max-width: 320px;
  padding: 32px 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.process-number {
  font-size: 48px; font-weight: 800;
  color: rgba(201,168,76,0.2);
  line-height: 1; margin-bottom: 16px;
}
.process-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center;
  justify-content: center;
  color: #c9a84c; margin: 0 auto 20px;
}
.process-step-title {
  font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.process-step-desc {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.process-arrow {
  color: #c9a84c;
  transform: rotate(90deg);
}

@media (min-width: 1024px) {
  .process-grid {
    flex-direction: row;
    justify-content: center; align-items: stretch;
  }
  .process-arrow {
    transform: rotate(0deg);
    align-self: center;
  }
  .process-step { flex: 1; }
}

/* ============================================
   ZONE D'INTERVENTION
   ============================================ */
.communes { margin-bottom: 24px; }
.communes-title {
  font-size: 16px; font-weight: 600;
  color: #1a1a1a; margin-bottom: 12px;
}
.communes-list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.commune-tag {
  background: #fff; border: 1px solid #e8e8e6;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; color: #4b5563;
  font-weight: 500;
  transition: all 0.2s;
}
.commune-tag:hover {
  border-color: #c9a84c; color: #1e3a5f;
  background: rgba(201,168,76,0.05);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid; gap: 24px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: #fff; border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-left: 4px solid #c9a84c;
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.review-stars {
  display: flex; gap: 4px;
  color: #c9a84c; margin-bottom: 16px;
}
.review-text {
  font-size: 15px; color: #4b5563;
  line-height: 1.7; font-style: italic;
  margin-bottom: 20px;
}
.review-author { display: flex; flex-direction: column; align-items: center; text-align: center; }
.review-name { font-weight: 700; color: #1a1a1a; font-size: 15px; }
.review-type { font-size: 13px; color: #9ca3af; }

.reviews-cta { text-align: center; margin-top: 40px; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e8e8e6;
}
.faq-question {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  width: 100%; padding: 24px 0;
  font-size: 16px; font-weight: 600;
  color: #1a1a1a; text-align: left;
  transition: color 0.2s;
}
.faq-question:hover, .faq-question:focus { color: #c9a84c; }
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-icon { transition: transform 0.3s ease; flex-shrink: 0; }
.faq-answer {
  padding-bottom: 24px;
  color: #6b7280; line-height: 1.7;
  font-size: 15px;
}
.faq-answer[hidden] { display: none; }
.faq-answer a { color: #1e3a5f; text-decoration: underline; }
.faq-answer a:hover { color: #c9a84c; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid; gap: 48px;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.info-block {
  display: flex; align-items: flex-start;
  gap: 16px; padding: 20px 0;
  border-bottom: 1px solid #e8e8e6;
}
.info-block:last-child { border-bottom: none; }
.info-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex; align-items: center;
  justify-content: center;
  color: #c9a84c; flex-shrink: 0;
}
.info-title {
  font-size: 14px; font-weight: 700;
  color: #1a1a1a; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.info-text { font-size: 15px; color: #4b5563; line-height: 1.7; }
.info-note { font-size: 13px; color: #9ca3af; margin-top: 4px; }
.info-phone {
  font-size: 20px; font-weight: 700;
  color: #1e3a5f; display: block; margin-bottom: 4px;
  transition: color 0.2s;
}
.info-phone:hover { color: #c9a84c; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  padding: 12px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  margin-top: 12px; transition: all 0.2s;
}
.btn-whatsapp:hover {
  background: #128c7e; transform: translateY(-2px);
}

/* Contact form */
.contact-form-wrapper {
  background: #fff; border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.form-title {
  font-size: 20px; font-weight: 700;
  color: #1a1a1a; margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 14px;
  font-weight: 600; color: #1a1a1a;
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px;
  background: #faf9f6;
  border: 1px solid #e8e8e6;
  border-radius: 12px;
  font-size: 15px; color: #1a1a1a;
  transition: all 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 13px; color: #9ca3af;
  text-align: center; margin-top: 12px;
}

/* Map */
.map-container {
  margin-top: 48px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final { text-align: center; }
.cta-container { max-width: 700px; margin: 0 auto; }
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 32px;
}
.cta-buttons {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 12px;
  margin-bottom: 32px;
}
.cta-badges {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 16px;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0a1525; color: #fff;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 40px; height: 40px; color: #c9a84c;
  flex-shrink: 0;
}
.footer-logo-name {
  display: block; font-size: 18px;
  font-weight: 800; line-height: 1.1;
}
.footer-logo-tagline {
  display: block; font-size: 11px;
  color: #c9a84c; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-desc {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-title {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px; color: #fff;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-link:hover, .footer-link:focus { color: #c9a84c; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; }
.footer-text { font-size: 14px; color: rgba(255,255,255,0.5); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px; color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

/* ============================================
   STICKY BOTTOM CTA (Mobile)
   ============================================ */
.sticky-bottom {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: flex; gap: 8px; padding: 10px 12px;
  background: #0f1d2f;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  z-index: 90;
}
.sticky-btn {
  flex: 1; display: flex; align-items: center;
  justify-content: center; gap: 8px;
  padding: 14px; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s;
}
.sticky-btn-primary {
  background: #c9a84c; color: #0f1d2f;
}
.sticky-btn-primary:hover, .sticky-btn-primary:focus {
  background: #d9bc6a;
}
.sticky-btn-secondary {
  background: #fff; color: #0f1d2f;
}
.sticky-btn-secondary:hover, .sticky-btn-secondary:focus {
  background: #f0f0f0;
}

/* Hide sticky bottom on desktop */
@media (min-width: 1024px) {
  .sticky-bottom { display: none; }
  /* Add padding to body for mobile sticky */
}
body { padding-bottom: 70px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* ============================================
   WHATSAPP FAB (Desktop)
   ============================================ */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366; color: #fff;
  border-radius: 50%;
  display: none; align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 80;
  transition: all 0.3s ease;
}
.whatsapp-fab:hover, .whatsapp-fab:focus {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
@media (min-width: 1024px) {
  .whatsapp-fab { display: flex; }
}

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

/* Stagger delays */
.reveal[data-delay="0"] { transition-delay: 0ms; }
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }
.reveal[data-delay="500"] { transition-delay: 500ms; }
.reveal[data-delay="600"] { transition-delay: 600ms; }

/* Gold override for dark sections (keep original gold on navy) */
.section-navy .text-gold,
.hero .text-gold,
.stats .text-gold { color: #c9a84c; }

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0f1d2f; color: #fff;
  padding: 16px 20px; z-index: 200;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 12px;
}
.cookie-banner-text {
  font-size: 14px; color: rgba(255,255,255,0.85);
  flex: 1; min-width: 280px;
}
.cookie-banner-text a {
  color: #c9a84c; text-decoration: underline;
}
.cookie-banner-buttons {
  display: flex; gap: 8px; flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.2s;
}
.cookie-btn-accept {
  background: #c9a84c; color: #0f1d2f;
}
.cookie-btn-accept:hover { background: #d9bc6a; }
.cookie-btn-refuse {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.cookie-btn-refuse:hover { background: rgba(255,255,255,0.1); }

/* Urgency counter in contact */
.urgency-counter {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; padding: 16px 20px;
  margin-bottom: 24px; text-align: center;
}
.urgency-counter-number {
  font-size: 32px; font-weight: 800; color: #c9a84c;
  line-height: 1;
}
.urgency-counter-text {
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.section:not(.section-navy) .urgency-counter {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.15);
}
.section:not(.section-navy) .urgency-counter-number { color: #b8941f; }
.section:not(.section-navy) .urgency-counter-text { color: #6b7280; }

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1; transform: none;
    transition: none;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .nav, .sticky-bottom, .whatsapp-fab,
  .hero-bg, .mobile-menu { display: none !important; }
  .hero { min-height: auto; padding-top: 20px; }
  .hero-overlay { background: none; }
  .hero-title, .hero-subtitle { color: #000; }
  body { padding-bottom: 0; }
}
/* === GLOBAL TEXT CENTERING === */
* { text-align: center !important; }

.logo-img, .footer-logo-img { height: 40px; width: auto; object-fit: contain; }
