/* ---- SKIP LINK (accessibility) ---- */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--red); color: var(--white);
  padding: 8px 16px; z-index: 999; font-weight: 700;
  text-decoration: none; border-radius: 0 0 4px 0;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ==============================================
   MICKA TAXI — mickataxi.fr
   Palette : #c41e1e (rouge) · #111 (noir) · #fff
   ============================================== */

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

:root {
  --red:        #c41e1e;
  --red-dark:   #9e1818;
  --red-light:  #e02828;
  --black:      #111111;
  --dark:       #1c1c1c;
  --white:      #ffffff;
  --gray:       #6b6b6b;
  --gray-light: #f4f4f4;
  --text:       #2a2a2a;
  --border:     #e0e0e0;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(0,0,0,.1);
  --font:       'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; background: var(--white); }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
address { font-style: normal; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ---- HEADER ---- */
header {
  background: var(--black);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1100px; margin: 0 auto; gap: 16px;
  position: relative;
}
.logo {
  display: flex; align-items: center; gap: 2px;
  color: var(--white); font-size: 1.35rem; font-weight: 900;
  letter-spacing: 2px; text-decoration: none; white-space: nowrap;
}
.logo span { color: var(--red); }

nav { display: flex; }
nav ul { display: flex; gap: 4px; list-style: none; }
nav ul li { position: relative; }
nav ul li a {
  display: block; padding: 8px 12px;
  color: #ccc; font-size: .88rem; font-weight: 500;
  white-space: nowrap; text-decoration: none;
}
nav ul li a:hover, nav ul li a.active { color: var(--white); text-decoration: none; }

/* Dropdown */
.has-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 2px); left: 0;
  background: #1e1e1e; min-width: 210px;
  border-top: 2px solid var(--red);
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 200;
  border-radius: 0 0 var(--radius) var(--radius);
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  padding: 10px 16px; border-bottom: 1px solid #333;
  font-size: .85rem; color: #bbb;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: rgba(196,30,30,.15); color: var(--white); }

.header-phone a {
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 8px 18px; border-radius: 30px;
  font-weight: 700; font-size: .95rem; white-space: nowrap;
  transition: background .2s; text-decoration: none;
}
.header-phone a:hover { background: var(--red-light); text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform .3s, opacity .3s; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark); max-height: 0; overflow: hidden;
    transition: max-height .35s; flex-direction: column;
  }
  nav.open { max-height: 500px; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li a { padding: 13px 20px; border-bottom: 1px solid #333; }
  .has-dropdown > a::after { content: ' ›'; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    background: #252525; border-top: none; border-left: 3px solid var(--red);
    margin-left: 16px; border-radius: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s;
  }
  .has-dropdown.open .dropdown-menu { max-height: 300px; }
  .dropdown-menu li a { padding: 10px 16px; }
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #2d0a0a 100%);
  color: var(--white); padding: 90px 20px 70px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,30,30,.25) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(196,30,30,.2); border: 1px solid rgba(196,30,30,.45);
  color: #ff9090; padding: 5px 16px; border-radius: 20px;
  font-size: .78rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 18px;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero p { font-size: 1.1rem; color: #ccc; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 40px; font-weight: 700;
  font-size: .95rem; transition: transform .2s, box-shadow .2s;
  text-decoration: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 20px rgba(196,30,30,.4);
}
.btn-primary:hover { background: var(--red-light); box-shadow: 0 6px 28px rgba(196,30,30,.5); }
.btn-outline {
  background: transparent; border: 2px solid rgba(255,255,255,.3); color: var(--white);
}
.btn-outline:hover { border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--red); color: var(--white); padding: 13px 20px; }
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600; }

/* ---- SECTIONS ---- */
section { padding: 64px 20px; }
.section-dark { background: var(--gray-light); }
.section-black { background: var(--black); color: var(--white); }

.section-header { text-align: center; margin-bottom: 44px; }
.section-header h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 800; color: var(--black); margin-bottom: 10px; }
.section-black .section-header h2 { color: var(--white); }
.section-header p { color: var(--gray); font-size: .98rem; max-width: 580px; margin: 0 auto; }
.divider { width: 48px; height: 4px; background: var(--red); margin: 14px auto 0; border-radius: 2px; }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
  border-top: 4px solid var(--red); transition: transform .2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: .88rem; line-height: 1.6; }

/* ---- ZONES GRID ---- */
.zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.zone-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 22px 16px;
  text-align: center; transition: transform .2s;
  will-change: transform;
  text-decoration: none; color: var(--text); display: block;
}
.zone-card:hover { border-color: var(--red); transform: translateY(-3px); color: var(--red); text-decoration: none; }
.zone-card .zone-icon { font-size: 1.8rem; margin-bottom: 8px; }
.zone-card h3 { font-size: .98rem; font-weight: 700; }
.zone-card p { font-size: .8rem; color: var(--gray); margin-top: 4px; }

/* ---- HIGHLIGHT BOXES ---- */
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 1100px; margin: 0 auto; }
.highlight-box {
  background: var(--black); color: var(--white);
  border-radius: var(--radius); padding: 36px 32px;
  position: relative; overflow: hidden;
}
.highlight-box::after {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 140px; height: 140px;
  background: rgba(196,30,30,.15); border-radius: 50%;
}
.highlight-box .icon { font-size: 2.5rem; margin-bottom: 16px; position: relative; z-index: 1; }
.highlight-box h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; }
.highlight-box p { color: #aaa; font-size: .93rem; margin-bottom: 24px; line-height: 1.7; position: relative; z-index: 1; }
.price-tag {
  display: inline-block; background: var(--red); color: var(--white);
  padding: 4px 14px; border-radius: 20px; font-weight: 700;
  font-size: .85rem; margin-bottom: 16px; position: relative; z-index: 1;
}

/* ---- WHY US ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.why-item { text-align: center; padding: 20px 16px; }
.why-icon {
  width: 66px; height: 66px; background: rgba(196,30,30,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
}
.why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.why-item p { color: var(--gray); font-size: .88rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white); text-align: center; padding: 70px 20px;
}
.cta-banner h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 10px; }
.cta-banner p { font-size: 1rem; opacity: .9; margin-bottom: 28px; }
.cta-phone { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 900; letter-spacing: 2px; display: block; margin-bottom: 20px; }
.cta-phone a { color: var(--white); text-decoration: none; }
.cta-phone a:hover { text-decoration: underline; }

/* ---- PAGE HERO (subpages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--black), #2d0a0a);
  color: var(--white); padding: 64px 20px 52px; text-align: center;
}
.breadcrumb { font-size: .8rem; color: #777; margin-bottom: 12px; }
.breadcrumb a { color: #777; }
.breadcrumb a:hover { color: var(--white); text-decoration: none; }
.breadcrumb span { color: #555; margin: 0 6px; }
.page-hero h1 { font-size: clamp(1.7rem, 4.5vw, 2.7rem); font-weight: 900; margin-bottom: 14px; }
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero p { color: #bbb; font-size: 1rem; max-width: 600px; margin: 0 auto 24px; }

/* ---- CONTENT + SIDEBAR LAYOUT ---- */
.content-wrapper {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; padding: 64px 20px;
}
@media (max-width: 768px) { .content-wrapper { grid-template-columns: 1fr; } }

.content-main h2 { font-size: 1.45rem; font-weight: 800; color: var(--black); margin: 32px 0 12px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin: 20px 0 8px; }
.content-main p { color: var(--text); line-height: 1.75; margin-bottom: 14px; font-size: .95rem; }
.content-main ul { list-style: none; margin-bottom: 20px; }
.content-main ul li { padding: 5px 0 5px 22px; position: relative; color: var(--text); font-size: .94rem; }
.content-main ul li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ---- SIDEBAR ---- */
.sidebar-card {
  background: var(--black); color: var(--white);
  border-radius: var(--radius); padding: 28px 24px;
  position: sticky; top: 90px; height: fit-content;
}
.sidebar-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--red); }
.sidebar-info-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: .88rem; color: #ccc; align-items: flex-start; }
.sidebar-info-item .si-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.sidebar-info-item strong { display: block; color: var(--white); font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.sidebar-card .btn + .btn { margin-top: 10px; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: .97rem; color: var(--black);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--red); font-weight: 400; flex-shrink: 0; margin-left: 12px; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 4px 18px; color: var(--gray); font-size: .93rem; line-height: 1.7; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail .cd-icon {
  width: 46px; height: 46px; background: rgba(196,30,30,.1);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.cd-text .label { font-size: .78rem; color: var(--gray); text-transform: uppercase; font-weight: 700; letter-spacing: .5px; margin-bottom: 4px; }
.cd-text .value { font-size: 1rem; color: var(--text); font-weight: 600; }
.cd-text a { color: var(--text); }
.cd-text a:hover { color: var(--red); text-decoration: none; }

/* ---- FOOTER ---- */
footer { background: var(--black); color: #999; padding: 52px 20px 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto 36px; }
.footer-col h3, .footer-col h4 { color: var(--white); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col p { font-size: .84rem; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #999; font-size: .84rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-logo { color: var(--white); font-size: 1.3rem; font-weight: 900; letter-spacing: 2px; margin-bottom: 12px; display: block; }
.footer-logo span { color: var(--red); }
.footer-bottom {
  border-top: 1px solid #2a2a2a; padding-top: 20px;
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: .8rem;
}
.footer-bottom a { color: #999; }
.footer-bottom a:hover { color: var(--white); }

/* ---- VEHICLE PHOTOS ---- */
.vehicle-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.vehicle-photos img {
  width: 100%; height: 260px;
  object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.vehicle-photos img:hover { transform: scale(1.02); }
@media (max-width: 640px) {
  .vehicle-photos { grid-template-columns: 1fr; }
  .vehicle-photos img { height: 220px; }
}

/* ---- HERO BG IMAGE ---- */
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .18; z-index: 0;
}

/* ---- REVIEWS ---- */
.reviews-section { padding: 64px 20px; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.review-card { background: var(--gray-light); border-radius: var(--radius); padding: 24px; border-top: 3px solid var(--red); }
.review-stars { color: #f4b400; font-size: 1.1rem; margin-bottom: 10px; }
.review-text { color: var(--text); font-size: .93rem; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.review-author { font-size: .82rem; font-weight: 700; color: var(--black); }
.review-source { font-size: .78rem; color: var(--gray); }

/* ---- RESERVATION FORM (sidebar dark) ---- */
.resa-separator { text-align: center; color: #555; font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; margin: 16px 0 14px; position: relative; }
.resa-separator::before, .resa-separator::after { content: ''; position: absolute; top: 50%; width: 38%; height: 1px; background: #333; }
.resa-separator::before { left: 0; }
.resa-separator::after { right: 0; }
.resa-form-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #888; margin-bottom: 12px; }
.resa-field { margin-bottom: 8px; }
.resa-field label { display: block; font-size: .72rem; color: #888; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px; }
.resa-field input {
  width: 100%; background: #1a1a1a; border: 1px solid #3a3a3a;
  border-radius: 6px; color: var(--white); font-size: .85rem;
  padding: 8px 10px; font-family: var(--font); transition: border-color .2s;
}
.resa-field input:focus { outline: none; border-color: var(--red); }
.resa-field input::placeholder { color: #555; }
.resa-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.resa-submit {
  width: 100%; margin-top: 10px; padding: 11px 20px;
  background: var(--red); color: var(--white); border: none;
  border-radius: 40px; font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: background .2s;
  font-family: var(--font);
}
.resa-submit:hover { background: var(--red-light); }
.resa-success {
  background: #0d2e0d; border: 1px solid #1f5e1f; color: #6fdf6f;
  padding: 10px 12px; border-radius: 6px; font-size: .85rem;
  margin-top: 10px; display: none;
}
.resa-error {
  background: #2e0d0d; border: 1px solid #5e1f1f; color: #ff9090;
  padding: 10px 12px; border-radius: 6px; font-size: .85rem;
  margin-top: 10px; display: none;
}
.resa-success.show, .resa-error.show { display: block; }
.resa-note { font-size: .72rem; color: #555; text-align: center; margin-top: 6px; }

/* ---- ZONE CARD DISABLED ---- */
.zone-card--disabled {
  color: #595959; border-color: #ccc;
  cursor: default; pointer-events: none;
}
.zone-card--disabled:hover { transform: none; border-color: #ccc; color: #595959; text-decoration: none; }
.zone-card--disabled .zone-icon { filter: grayscale(60%); opacity: .7; }

/* ---- UTILS ---- */
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-4 { margin-top: 4px; }
.mb-0 { margin-bottom: 0 !important; }
.fw-700 { font-weight: 700; }

@media (max-width: 480px) {
  .hero { padding: 56px 16px 44px; }
  section { padding: 44px 16px; }
  .cta-banner { padding: 50px 16px; }
}
