/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF5C1A;
  --orange-light: #FF8C55;
  --orange-dark: #D94400;
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --grey: #2E2E2E;
  --light-grey: #F5F3F0;
  --white: #FFFFFF;
  --text-muted: #888;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
}

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

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover, .nav-links a.active { color: var(--orange); }

@keyframes pulse-btn {
  0%   { box-shadow: 0 0 0 0 rgba(255,92,26,0.6), 0 4px 15px rgba(255,92,26,0.35); }
  70%  { box-shadow: 0 0 0 10px rgba(255,92,26,0), 0 4px 15px rgba(255,92,26,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(255,92,26,0), 0 4px 15px rgba(255,92,26,0.35); }
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(255,92,26,0.35);
  animation: pulse-btn 2s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px) !important;
  animation: none !important;
  box-shadow: 0 8px 25px rgba(255,92,26,0.55) !important;
}

.nav-cta:active {
  transform: translateY(0px) !important;
  box-shadow: 0 2px 8px rgba(255,92,26,0.3) !important;
}

/* Pulse applicable à n'importe quel bouton */
.pulse-cta-btn {
  animation: pulse-btn 2s ease-in-out infinite;
}
.pulse-cta-btn:hover {
  animation: none !important;
  transform: translateY(-2px);
}

/* Pulse noir pour btn-dark */
@keyframes pulse-btn-dark {
  0%   { box-shadow: 0 0 0 0 rgba(13,13,13,0.7), 0 4px 15px rgba(13,13,13,0.35); }
  70%  { box-shadow: 0 0 0 10px rgba(13,13,13,0), 0 4px 15px rgba(13,13,13,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(13,13,13,0), 0 4px 15px rgba(13,13,13,0.35); }
}
.btn-dark.pulse-cta-btn {
  animation: pulse-btn-dark 2s ease-in-out infinite;
}

/* Pulse blanc pour btn-outline */
@keyframes pulse-btn-white {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7), 0 4px 15px rgba(255,255,255,0.2); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0), 0 4px 15px rgba(255,255,255,0.2); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 4px 15px rgba(255,255,255,0.2); }
}
.btn-outline.pulse-cta-btn {
  animation: pulse-btn-white 2s ease-in-out infinite;
}

/* Hero tag glow */
@keyframes glow-tag {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,92,26,0.35); }
  50%       { box-shadow: 0 0 14px 5px rgba(255,92,26,0.25); }
}
.hero-tag { animation: glow-tag 2.5s ease-in-out infinite; }

/* Dot voyageur — horizontal (étapes) */
@keyframes travel-h {
  0%   { left: 14%; opacity: 1; }
  85%  { left: 86%; opacity: 1; }
  95%  { left: 86%; opacity: 0; }
  96%  { left: 14%; opacity: 0; }
  100% { left: 14%; opacity: 1; }
}
.steps-travel-dot {
  position: absolute;
  top: 28px;
  left: 14%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(255,92,26,0.25), 0 0 14px rgba(255,92,26,0.7);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.steps-grid.start-anim .steps-travel-dot {
  opacity: 1;
  animation: travel-h 7s ease-in-out infinite;
}

/* Dot voyageur — vertical (timeline) */
@keyframes travel-v {
  0%   { top: calc(100% - 8px); }
  100% { top: 8px; }
}
.timeline::after {
  content: '';
  position: absolute;
  left: -2px;
  top: calc(100% - 8px);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,92,26,0.25), 0 0 14px rgba(255,92,26,0.7);
  opacity: 0;
  pointer-events: none;
}
.timeline.start-anim::after {
  opacity: 1;
  animation: travel-v 10s ease-in-out 1 forwards;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,92,26,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

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

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--grey);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(255,92,26,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,92,26,0.1) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,92,26,0.15);
  border: 1px solid rgba(255,92,26,0.3);
  color: var(--orange-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  display: flex;
  gap: 2rem;
  z-index: 2;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ===== SECTIONS ===== */
section { padding: 6rem 4rem; }

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--light-grey);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--grey);
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2E2E2E 0%, #1A1A1A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-content .section-sub { margin-bottom: 2rem; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-item::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== SERVICE CARDS ===== */
.services-section { background: var(--white); }

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

.service-card {
  background: var(--light-grey);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 18px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255,92,26,0.2);
  border-color: var(--orange);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-price { color: var(--white); }

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
  transition: color 0.3s;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.service-card:hover .service-desc { color: rgba(255,255,255,0.8); }

.service-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  transition: color 0.3s;
}

.service-card:hover .service-price { color: var(--white); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--black); }

.testimonials .section-title { color: var(--white); }
.testimonials .section-tag { color: var(--orange-light); }

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

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}

.testi-card:hover {
  background: rgba(255,92,26,0.1);
  border-color: rgba(255,92,26,0.3);
  transform: translateY(-4px);
}

.stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testi-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.testi-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.testi-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--orange);
  text-align: center;
  padding: 6rem 4rem;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  padding: 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo { font-size: 1.3rem; margin-bottom: 1rem; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 240px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  background: var(--black);
  padding: 1.5rem 4rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
  animation: none;
}
.whatsapp-float svg {
  width: 30px; height: 30px;
  fill: #fff;
}
@keyframes pulse-wa {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 4px 20px rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,0.45); }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--black);
  padding: 10rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255,92,26,0.15) 0%, transparent 70%);
}

.page-header-content { position: relative; z-index: 1; }

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-header h1 em {
  font-style: normal;
  color: var(--orange);
}

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.7;
}

/* ===== FORM ===== */
.form-section { background: var(--light-grey); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.form-box {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,92,26,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,92,26,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

.info-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* ===== BOOKING CALENDAR ===== */
.calendar-section { background: var(--white); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.calendar-box {
  background: var(--white);
  border: 2px solid #F0F0F0;
  border-radius: 24px;
  padding: 2rem;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cal-month {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cal-nav {
  display: flex;
  gap: 0.5rem;
}

.cal-nav button {
  width: 36px; height: 36px;
  border: 2px solid #E8E8E8;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cal-nav button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
}

.cal-day-name {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.cal-day:not(.empty):not(.past):hover {
  border-color: var(--orange);
  color: var(--orange);
}

.cal-day.available { background: rgba(255,92,26,0.08); }
.cal-day.selected {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
}

.cal-day.past, .cal-day.empty { color: #CCC; cursor: default; }

.time-slots {
  margin-top: 1.5rem;
}

.time-slots h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.slot {
  padding: 0.6rem;
  border: 2px solid #E8E8E8;
  border-radius: 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.slot:hover, .slot.selected {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.booking-summary {
  background: var(--black);
  border-radius: 24px;
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.booking-summary h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.summary-label { color: rgba(255,255,255,0.5); }
.summary-value { font-weight: 600; }
.summary-value.highlight { color: var(--orange); }

.summary-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 1.5rem 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.summary-total span:last-child { color: var(--orange); font-size: 1.3rem; }

.booking-summary .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 1rem;
  padding: 1rem;
}

/* ===== FAQ ===== */
.faq-section { background: var(--light-grey); }

.faq-list { margin-top: 3rem; max-width: 720px; }

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--orange); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 1rem;
}

.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.2s;
  font-weight: 400;
}

.faq-item.open .faq-toggle {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 900px;
  padding: 0 1.5rem 1.3rem;
}

/* ===== MAP PLACEHOLDER ===== */
.map-box {
  background: var(--dark);
  border-radius: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

/* ===== PROCESS STEPS ===== */
.process-section { background: var(--white); }

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--orange-light));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 24px rgba(255,92,26,0.4);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  footer { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
}

@media (max-width: 768px) {
  nav { padding: 0.5rem 1.5rem; }
  nav .logo img { height: 55px !important; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  nav.open {
    bottom: 0;
    z-index: 9999;
    background: var(--white);
    align-items: flex-start;
  }

  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.2rem;
    z-index: 1;
  }

  nav.open .hamburger {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 2;
  }

  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-stats { position: static; margin-top: 3rem; justify-content: flex-start; }
  section { padding: 4rem 1.5rem; }
  .about-strip { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .footer-bottom { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 8rem 1.5rem 3rem; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 4rem 1.5rem; }
}
