/* ============================================
   TAXI LA CÔTE — Feuille de style principale
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --gold: #c9a14a;
  --gold-light: #e8c570;
  --gold-dim: #8a7038;
  --cream: #f5f3ef;
  --white: #ffffff;
  --grey: #9a958c;
  --grey-dark: #4a473f;
  --line: rgba(201, 161, 74, 0.25);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius: 4px;
  --shadow-gold: 0 8px 30px rgba(201, 161, 74, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ============ HEADER ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 52px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.main-nav a {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

nav.main-nav a:hover {
  color: var(--gold-light);
}

nav.main-nav a.active {
  color: var(--gold-light);
}

nav.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-call-header:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-content .eyebrow {
  color: var(--gold-light);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin: 14px 0 18px;
  max-width: 16ch;
}

.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p.lede {
  font-size: 1.15rem;
  color: var(--cream);
  max-width: 48ch;
  margin-bottom: 36px;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 243, 239, 0.3);
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(245, 243, 239, 0.15);
  padding-top: 28px;
}

.trust-item {
  color: var(--cream);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--grey);
}

/* ============ SECTIONS GÉNÉRALES ============ */

section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-top: 12px;
  color: var(--black);
}

.section-head p {
  margin-top: 16px;
  color: var(--grey-dark);
  font-size: 1.05rem;
}

.section-dark {
  background: var(--black);
  color: var(--cream);
}

.section-dark .section-head h2 {
  color: var(--white);
}

.section-dark .section-head p {
  color: var(--grey);
}

/* ============ SERVICES GRID ============ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card .img-wrap {
  height: 190px;
  overflow: hidden;
}

.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body .eyebrow {
  margin-bottom: 8px;
}

.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--grey-dark);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 18px;
}

.service-card-body a.link {
  color: var(--gold-dim);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-body a.link:hover {
  color: var(--gold);
}

/* ============ TMR BANNER ============ */

.tmr-banner {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 52px;
}

.tmr-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.tmr-banner h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.tmr-banner p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* ============ POURQUOI NOUS ============ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  text-align: left;
  padding-top: 20px;
  border-top: 2px solid var(--gold);
}

.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--grey-dark);
}

.section-dark .feature-item p {
  color: var(--grey);
}

/* ============ ZONE DESSERVIE ============ */

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.zone-tag {
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
}

/* ============ CTA STRIP ============ */

.cta-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 56px 0;
}

.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-strip h2 {
  color: var(--black);
  font-size: 1.6rem;
}

.cta-strip p {
  color: rgba(10,10,10,0.7);
  margin-top: 6px;
}

.cta-strip .btn-primary {
  background: var(--black);
  color: var(--gold-light);
}

.cta-strip .btn-primary:hover {
  background: var(--black-soft);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* ============ FOOTER ============ */

.site-footer {
  background: var(--black);
  color: var(--grey);
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--grey);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(245,243,239,0.1);
  padding-top: 24px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ STICKY MOBILE CALL BAR ============ */

.mobile-call-bar {
  display: none;
}

/* ============ PAGE HEADER (sous-pages) ============ */

.page-banner {
  background: var(--black);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}

.page-banner .eyebrow {
  color: var(--gold-light);
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
}

.page-banner p {
  color: var(--grey);
  margin-top: 14px;
  max-width: 56ch;
  font-size: 1.05rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--gold-light);
}

/* ============ DETAIL SERVICE PAGE ============ */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail.reverse .service-detail-img {
  order: 2;
}

.service-detail-img img {
  border-radius: var(--radius);
  width: 100%;
}

.service-detail-text .eyebrow {
  margin-bottom: 10px;
}

.service-detail-text h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.service-detail-text p {
  color: var(--grey-dark);
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  margin: 22px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.96rem;
  color: var(--black);
}

.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============ FORM (contact) ============ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-form {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 36px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

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

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.form-note {
  font-size: 0.82rem;
  color: var(--grey-dark);
  margin-top: 14px;
  text-align: center;
}

.contact-info-card {
  background: var(--black);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-line .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201,161,74,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
  font-size: 1.1rem;
}

.contact-line strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.contact-line span, .contact-line a {
  font-size: 0.92rem;
  color: var(--grey);
}

.contact-line a:hover {
  color: var(--gold-light);
}

.form-success {
  display: none;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}

.form-success.show {
  display: block;
}

.form-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 980px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-inner.nav-open nav.main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-top: 1px solid var(--line);
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse .service-detail-img { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .tmr-banner { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 640px) {
  .header-call .btn-call-header span.label { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-content { padding: 56px 20px 20px; }
  .hero-trust { gap: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  section { padding: 60px 0; }

  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--black);
    border-top: 1px solid var(--line);
  }
  .mobile-call-bar a {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-weight: 700;
    font-size: 0.88rem;
  }
  .mobile-call-bar a.call {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
  }
  .mobile-call-bar a.whatsapp {
    color: var(--cream);
  }
  body { padding-bottom: 58px; }
}
