/* ===== Moveo Plus - Design System ===== */
:root {
  --navy: #1B3A5C;
  --navy-dark: #122943;
  --navy-light: #2a5285;
  --orange: #FF6B00;
  --orange-light: #ff8533;
  --orange-dark: #e05c00;
  --cream: #fcfbf8;
  --gray-50: #f8f9fb;
  --gray-100: #eef1f6;
  --gray-200: #dde3ec;
  --gray-500: #6b7689;
  --gray-700: #3a4456;
  --text: #1a2233;
  --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(27, 58, 92, 0.12);
  --shadow-lg: 0 20px 48px rgba(27, 58, 92, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: .6rem; }

p { color: var(--gray-700); margin-bottom: .8rem; }

/* ===== Top bar ===== */
.topbar {
  background: var(--navy-dark);
  color: #cfd8e6;
  font-size: .88rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: #cfd8e6; }
.topbar a:hover { color: var(--orange); }
.topbar .pill { background: var(--orange); color: white; padding: 2px 10px; border-radius: 20px; font-weight: 700; }

/* ===== Language switcher ===== */
.lang-switch { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; }
.lang-switch a {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #cfd8e6;
  transition: all var(--transition);
}
.lang-switch a:hover { background: rgba(255,255,255,.08); color: #fff; }
.lang-switch a.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ===== Header ===== */
.header {
  background: white;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 100;
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 24px;
}
.logo img { height: 56px; width: auto; }

.nav { display: flex; gap: 8px; align-items: center; }
.nav a {
  font-weight: 600; padding: 10px 16px; border-radius: 10px; color: var(--navy);
  font-size: .95rem;
}
.nav a:hover, .nav a.active { background: var(--gray-100); color: var(--orange); }

.nav-cta {
  background: var(--orange); color: white !important;
  padding: 12px 22px !important; border-radius: 10px !important;
  box-shadow: 0 6px 16px rgba(255,107,0,.35);
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.burger { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--navy); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  overflow: hidden;
  padding: 60px 0 80px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,107,0,.18), transparent 50%);
  pointer-events: none;
}
.hero .container {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px;
  align-items: center; position: relative;
}
.hero-content h1 { color: white; }
.hero-content h1 span { color: var(--orange); }
.hero-content p.lead {
  font-size: 1.15rem; color: #d8e0ec; margin: 18px 0 28px; max-width: 540px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 6px 14px; border-radius: 30px; font-size: .85rem; backdrop-filter: blur(6px);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px; font-weight: 700;
  font-family: 'Poppins', sans-serif; cursor: pointer; border: none;
  transition: all var(--transition); font-size: 1rem;
}
.btn-primary { background: var(--orange); color: white; box-shadow: 0 8px 22px rgba(255,107,0,.4); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); color: white; }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--navy); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-dark); color: white; transform: translateY(-2px); }

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,.1);
  transform: rotate(-1deg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Quote form ===== */
.quote-section {
  background: var(--cream);
  padding: 60px 0;
}
.quote-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 40px;
  max-width: 980px; margin: 0 auto;
  border-top: 6px solid var(--orange);
}
.quote-card h2 { text-align: center; }
.quote-card .sub { text-align: center; color: var(--gray-500); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-weight: 600; font-size: .9rem;
  color: var(--navy); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-family: inherit; font-size: .95rem;
  background: var(--gray-50); transition: all var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
  background: white; box-shadow: 0 0 0 4px rgba(255,107,0,.12);
}
.field textarea { min-height: 90px; resize: vertical; }
.form-submit { text-align: center; margin-top: 24px; }

/* ===== Sections ===== */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head .eyebrow {
  display: inline-block; color: var(--orange); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; font-size: .85rem; margin-bottom: 10px;
}
.section-head p { font-size: 1.05rem; }

/* ===== Services grid ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.service-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card .img { height: 200px; overflow: hidden; }
.service-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .img img { transform: scale(1.06); }
.service-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { color: var(--navy); }
.service-card p { font-size: .95rem; flex: 1; }
.service-card .more {
  margin-top: 14px; color: var(--orange); font-weight: 700; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ===== Reasons ===== */
.bg-light { background: var(--gray-50); }
.bg-navy { background: var(--navy); color: white; }
.bg-navy h2, .bg-navy h3 { color: white; }
.bg-navy p { color: #c5cfe0; }

.reasons {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.reason {
  background: white; padding: 28px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); text-align: center;
}
.reason .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white; font-weight: 800; font-size: 1.4rem; margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

/* ===== Pricing ===== */
.pricing {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
  max-width: 800px; margin: 0 auto;
}
.price-card {
  background: white; border-radius: var(--radius); padding: 32px;
  text-align: center; box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-100);
}
.price-card.featured {
  border-color: var(--orange); transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.price-card .price {
  font-size: 2.6rem; font-weight: 800; color: var(--orange);
  font-family: 'Poppins', sans-serif; margin: 10px 0;
}
.price-card .price small { font-size: 1rem; color: var(--gray-500); }
.price-card ul { list-style: none; text-align: left; margin: 20px 0; }
.price-card li { padding: 6px 0; color: var(--gray-700); }
.price-card li::before { content: "✓ "; color: var(--orange); font-weight: 800; margin-right: 4px; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.step {
  background: white; padding: 32px; border-radius: var(--radius);
  position: relative; box-shadow: var(--shadow-sm);
}
.step .step-num {
  position: absolute; top: -20px; left: 24px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: white; display: flex;
  align-items: center; justify-content: center;
  font-weight: 800; font-family: 'Poppins', sans-serif;
}

/* ===== Locations / zones ===== */
.zones {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.zone-block {
  background: white; padding: 32px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.zone-block h3 {
  border-bottom: 3px solid var(--orange); padding-bottom: 10px; margin-bottom: 18px;
}
.zone-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px;
  list-style: none;
}
.zone-list li {
  padding: 6px 0; font-size: .95rem; color: var(--navy); font-weight: 500;
  border-bottom: 1px dashed var(--gray-100);
}
.zone-list li::before { content: "▸ "; color: var(--orange); font-weight: 800; }
.zone-block .center { text-align: center; margin-top: 22px; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white; padding: 50px 0; text-align: center;
}
.cta-banner h2 { color: white; }
.cta-banner p { color: rgba(255,255,255,.95); font-size: 1.1rem; margin-bottom: 24px; }
.cta-banner .btn-navy { background: white; color: var(--navy); }
.cta-banner .btn-navy:hover { background: var(--navy); color: white; }

/* ===== Testimonials ===== */
.testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.testimonial {
  background: white; padding: 28px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); position: relative;
}
.testimonial .stars { color: #ffc107; font-size: 1.1rem; margin-bottom: 10px; }
.testimonial p { font-style: italic; color: var(--gray-700); }
.testimonial .who {
  margin-top: 14px; font-weight: 700; color: var(--navy); font-style: normal;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark); color: #c5cfe0; padding: 60px 0 20px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { color: white; margin-bottom: 16px; font-size: 1.05rem; }
.footer ul { list-style: none; }
.footer li { padding: 4px 0; }
.footer a { color: #c5cfe0; }
.footer a:hover { color: var(--orange); }
.footer-logo img { height: 50px; margin-bottom: 14px; filter: brightness(1.2); }
.footer-message p { color: #ffffff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
  text-align: center; font-size: .85rem;
}

/* ===== Page hero (subpages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white; padding: 70px 0 60px; text-align: center;
}
.page-hero h1 { color: white; }
.page-hero p { color: #d8e0ec; font-size: 1.15rem; max-width: 700px; margin: 14px auto 0; }
.breadcrumb { color: var(--orange); font-size: .9rem; margin-bottom: 8px; }
.breadcrumb a { color: #d8e0ec; }

/* ===== Article body ===== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 36px; }
.prose ul { margin-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; color: var(--gray-700); }
.prose .lead { font-size: 1.15rem; color: var(--gray-700); }
.prose img { border-radius: var(--radius); margin: 24px 0; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; transform: none; }
  .form-grid { grid-template-columns: 1fr; }
  .zones { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
         background: white; flex-direction: column; padding: 16px;
         box-shadow: var(--shadow-md); align-items: stretch; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; }
  .burger { display: block; }
  .header .container { position: relative; }
  .quote-card { padding: 24px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .zone-list { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
}

/* Styles pour les pages Zones de service */
.page-hero p { color: #d8e0ec; font-size: 1.15rem; max-width: 700px; margin: 14px auto 0; }
.breadcrumb { color: var(--orange); font-size: .9rem; margin-bottom: 8px; }
.breadcrumb a { color: #d8e0ec; }

/* ===== Article body ===== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 36px; }
.prose ul { margin-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; color: var(--gray-700); }
.prose .lead { font-size: 1.15rem; color: var(--gray-700); }
.prose img { border-radius: var(--radius); margin: 24px 0; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; transform: none; }
  .form-grid { grid-template-columns: 1fr; }
  .zones { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
         background: white; flex-direction: column; padding: 16px;
         box-shadow: var(--shadow-md); align-items: stretch; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; }
  .burger { display: block; }
  .header .container { position: relative; }
  .quote-card { padding: 24px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .zone-list { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
}

/* === Long distance pages additions === */
.cta-band{background:linear-gradient(135deg,#1B3A5C 0%,#2a5a8c 100%);padding:60px 0;margin-top:40px}
.btn-white-outline{background:transparent;color:#fff;border:2px solid #fff;padding:14px 28px;border-radius:8px;font-weight:600;text-decoration:none;display:inline-block;transition:all .2s}
.btn-white-outline:hover{background:#fff;color:#1B3A5C}
.page-hero .breadcrumb{font-size:.9rem;color:#64748b;margin-bottom:14px}
.page-hero .breadcrumb a{color:orange;text-decoration:none}
.page-hero .breadcrumb a:hover{color:#FF6B00}


/* === Detailed service area pages === */
.area-hero { text-align: left; padding: 64px 0; }
.area-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); align-items: center; gap: 42px; }
.area-hero-copy h1, .area-hero-copy p { text-align: left; margin-left: 0; }
.area-hero-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,.16); }
.area-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 44px; align-items: start; }
.area-content { max-width: 900px; }
.area-content .lead { font-size: 1.16rem; color: var(--gray-700); }
.area-content h2 { margin-top: 42px; }
.area-content h3 { margin-top: 22px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0; }
.feature-card, .side-card, .quote-mini { background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 24px; border: 1px solid var(--gray-100); }
.feature-card h3 { margin-top: 0; }
.wide-photo { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); margin: 26px 0; }
.check-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; margin: 18px 0 24px; }
.check-list li { color: var(--gray-700); padding-left: 26px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.price-table { width: 100%; border-collapse: collapse; background: white; min-width: 680px; }
.price-table th { background: var(--navy); color: white; text-align: left; padding: 14px 16px; font-family: 'Poppins', sans-serif; }
.price-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.price-table tr:nth-child(even) td { background: var(--gray-50); }
.note { background: var(--gray-50); border-left: 4px solid var(--orange); padding: 14px 16px; border-radius: 8px; }
.inline-steps { margin-top: 28px; }
.faq-list { display: grid; gap: 12px; margin-top: 18px; }
.faq-list details { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.faq-list summary { cursor: pointer; color: var(--navy); font-weight: 800; font-family: 'Poppins', sans-serif; }
.faq-list p { margin: 12px 0 0; }
.area-sidebar { position: sticky; top: 100px; display: grid; gap: 18px; }
.quote-mini .btn { width: 100%; margin: 10px 0; }
.phone-link { display: block; text-align: center; font-weight: 800; color: var(--orange); margin-top: 8px; }
.related-links { display: grid; gap: 8px; }
.related-links a { padding: 10px 0; border-bottom: 1px dashed var(--gray-100); font-weight: 700; }
.zone-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.zone-card-link a { display: block; height: 100%; background: white; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.zone-card-link a:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.zone-card-link span { color: var(--orange); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.zone-card-link h3 { margin: 8px 0; }
.zone-card-link p { margin: 0; }
.zone-list a { font-weight: 700; }
@media (max-width: 960px) { .area-hero-grid, .area-layout { grid-template-columns: 1fr; } .area-sidebar { position: static; } .feature-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .area-hero { text-align: center; } .area-hero-copy h1, .area-hero-copy p { text-align: center; } .check-list { grid-template-columns: 1fr; } .area-hero-photo img { aspect-ratio: 16 / 10; } }
