/* ==========================================================================
   Safe Drive Paris — design tokens
   ========================================================================== */
:root{
  --cream:        #FDFAF2;
  --cream-deep:    #F6F0DE;
  --card:          #FFFFFF;
  --anthracite:    #2B2B2E;
  --anthracite-70: rgba(43,43,46,.7);
  --anthracite-45: rgba(43,43,46,.45);
  --gold:          #C9A24B;
  --gold-deep:     #A8823A;
  --gold-pale:     rgba(201,162,75,.14);
  --near-black:    #17171A;

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

  --container: 1180px;
  --radius: 2px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--anthracite);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family: var(--font-display); font-weight: 500; margin:0; color: var(--anthracite); }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }
input, textarea{ font-family: inherit; }

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

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

.skip-link{
  position:absolute; left:-999px; top:0;
  background: var(--anthracite); color: var(--cream);
  padding: .8rem 1.4rem; z-index: 200;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

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

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Buttons & links
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.9rem;
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.btn-gold{
  background: var(--gold);
  color: var(--near-black);
  border-color: var(--gold);
}
.btn-gold:hover{
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}
.btn-large{ padding: 1.05rem 2.6rem; font-size: .85rem; }
.btn-block{ width: 100%; }

.link-underline{
  position: relative;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--anthracite);
  padding-bottom: .3rem;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 1px;
  transition: background-size .35s var(--ease), color .35s var(--ease);
}
.link-underline:hover{
  background-size: 100% 1px;
  color: var(--gold-deep);
}

/* ==========================================================================
   Eyebrow / section heads / divider
   ========================================================================== */
.eyebrow{
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}
.section-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-title{
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.25;
}
.section-lead{
  margin-top: 1.2rem;
  color: var(--anthracite-70);
  font-size: 1.02rem;
}
.divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  margin: 1.1rem auto 0;
  width: 180px;
  color: var(--gold);
}
.divider span{ flex:1; height:1px; background: var(--gold); opacity:.5; }
.divider i{ font-style: normal; font-size: .6rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 1.4rem 0;
}
.site-header.is-scrolled{
  background: rgba(253, 250, 242, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(43,43,46,.08);
  padding: .85rem 0;
}
.header-inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 0 1.5rem;
}
.main-nav{ grid-column: 2; justify-self: center; }

.logo{
  display: flex;
  align-items: center;
  gap: .85rem;
}
.logo-frame{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  outline: 1px solid var(--gold);
  outline-offset: 3px;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.logo-frame--light{
  color: var(--gold);
  border-color: var(--gold);
  outline-color: var(--gold);
}
.logo-title{
  display:block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .01em;
  color: var(--gold-deep);
}
.site-header.is-scrolled .logo-title{ font-size: 1.05rem; transition: font-size .4s var(--ease); }
.logo-tagline{
  display:block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: .1rem;
}

.main-nav ul{
  display: flex;
  gap: 2.4rem;
}
.main-nav a{
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--gold);
  position: relative;
  padding-bottom: .3rem;
}
.main-nav a::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after{ transform: scaleX(1); transform-origin: left; }

.header-actions{
  display: flex;
  align-items: center;
  gap: 1.2rem;
  grid-column: 3;
  justify-self: end;
}

.lang-switch{
  display: flex;
  align-items: center;
  border: 1px solid var(--gold);
  overflow: hidden;
}
.lang-btn{
  background: none;
  border: none;
  padding: .4rem .7rem;
  font-family: var(--font-body);
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--anthracite-70);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.lang-btn[aria-pressed="true"]{
  background: var(--gold);
  color: var(--near-black);
}
.lang-btn:not([aria-pressed="true"]):hover{
  color: var(--gold-deep);
}
.lang-switch--mobile{ display: none; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span{
  display:block; height: 1px; width: 100%;
  background: var(--anthracite);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--near-black);
  display: flex;
  flex-direction: column;
}
.hero-media{
  position: absolute; inset: 0;
  background-color: var(--near-black);
  background-size: cover;
  background-position: center 65%;
  filter: brightness(1.18);
}
.hero-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,19,.45) 0%, rgba(17,17,19,.4) 40%, rgba(17,17,19,.72) 100%),
    linear-gradient(90deg, rgba(17,17,19,.55) 0%, rgba(17,17,19,.15) 55%, rgba(17,17,19,.05) 100%);
}
.hero-eyebrow-wrap{
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  padding-top: 9rem;
}
.hero-brand{
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .02em;
  color: #FBF7EA;
  margin: 0 0 .5rem;
}
@media (min-width: 641px){
  .hero-eyebrow-wrap{ text-align: center; }
  .hero-brand{ font-size: 1.72rem; margin-bottom: .7rem; }
  .hero-eyebrow-wrap .eyebrow{ font-size: 1rem; }
}
.hero-center{
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
}
.hero-center-inner{
  max-width: 640px;
  text-align: center;
}
.hero-subtitle{
  font-size: 1.18rem;
  color: rgba(251,247,234,.78);
  max-width: 520px;
  margin: 0 auto 2.4rem;
}
.hero .eyebrow{ color: var(--gold); }
.hero-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}
.hero-actions .link-underline{
  color: #FBF7EA;
  background-image: linear-gradient(var(--gold), var(--gold));
}
.hero-actions .link-underline:hover{ color: var(--gold); }

.scroll-cue{
  position: absolute;
  left: 50%; bottom: 2.4rem;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid rgba(251,247,234,.5);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span{
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: cue-bounce 1.8s var(--ease) infinite;
}
@keyframes cue-bounce{
  0%{ transform: translate(-50%,0); opacity:1; }
  70%{ transform: translate(-50%,14px); opacity:0; }
  100%{ opacity:0; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services{ padding: 8rem 0; }
.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.service-card{
  display: block;
  background: var(--card);
  border: 1px solid rgba(43,43,46,.08);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(43,43,46,.22);
  border-color: var(--gold);
}
.service-image{
  position: relative;
  height: 170px;
  background-color: var(--cream-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.service-image::before{
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, transparent 46%, var(--gold) 47%, var(--gold) 48%, transparent 49%),
    linear-gradient(135deg, transparent 0%, rgba(201,162,75,.12) 100%);
  pointer-events: none;
}
.service-body{ padding: 1.8rem 1.7rem 2.1rem; }
.service-icon{
  width: 34px; height: 34px;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.service-body h3{
  font-size: 1.18rem;
  margin-bottom: .7rem;
}
.service-body p{
  font-size: .92rem;
  color: var(--anthracite-70);
  line-height: 1.65;
}
.service-body p.service-note{
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(201,162,75,.25);
  font-size: .82rem;
  font-style: italic;
  color: var(--gold-deep);
}

/* ==========================================================================
   Vehicles
   ========================================================================== */
.vehicles{ padding: 8rem 0; background: var(--cream-deep); }
.vehicles-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.vehicle-card{
  background: var(--card);
  border: 1px solid rgba(43,43,46,.08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.vehicle-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(43,43,46,.22);
  border-color: var(--gold);
}
.vehicle-image{
  position: relative;
  height: 170px;
  background-color: var(--cream);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.vehicle-image::before{
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, transparent 46%, var(--gold) 47%, var(--gold) 48%, transparent 49%),
    linear-gradient(135deg, transparent 0%, rgba(201,162,75,.12) 100%);
  pointer-events: none;
}
.vehicle-body{ padding: 1.8rem 1.7rem 2.1rem; }
.vehicle-icon{
  width: 34px; height: 34px;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.vehicle-body h3{
  font-size: 1.18rem;
  margin-bottom: .7rem;
}
.vehicle-body p{
  font-size: .92rem;
  color: var(--anthracite-70);
  line-height: 1.65;
}

.vehicles-onrequest{
  max-width: 760px;
  margin: 4rem auto 0;
  text-align: center;
}
.vehicles-onrequest-title{
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.6rem;
}
.onrequest-list{
  display: flex;
  flex-direction: column;
}
.onrequest-list li{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(43,43,46,.1);
}
.onrequest-list li:last-child{ border-bottom: 1px solid rgba(43,43,46,.1); }
.onrequest-name{
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--anthracite);
}
.onrequest-desc{
  font-size: .9rem;
  color: var(--anthracite-70);
}

/* ==========================================================================
   Why us
   ========================================================================== */
.why{
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
  background-color: var(--near-black);
}
.why-media{
  position: absolute; inset: 0;
  background-color: var(--near-black);
  background-size: cover;
  background-position: center;
}
.why-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,19,.55) 0%, rgba(17,17,19,.8) 65%, rgba(17,17,19,.9) 100%);
}
.why .container{ position: relative; z-index: 2; }
.why .eyebrow{ color: var(--gold); }
.why .section-title{ color: #FBF7EA; }
.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}
.why-icon-frame{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px; height: 84px;
  border: 1px solid var(--gold);
  outline: 1px solid var(--gold);
  outline-offset: 6px;
  margin-bottom: 1.8rem;
  color: var(--gold);
}
.why-icon-frame svg{ width: 34px; height: 34px; }
.why-item h3{
  font-size: 1.25rem;
  margin-bottom: .8rem;
  color: #FBF7EA;
}
.why-item p{
  font-size: .94rem;
  color: rgba(251,247,234,.78);
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   Tarifs
   ========================================================================== */
.tarifs{ padding: 8rem 0; }
.tarifs .section-head{ max-width: 620px; }
.tarifs-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 1rem;
}
.tarif-card{
  position: relative;
  padding: 2.6rem 2rem;
  text-align: center;
  border: 1px solid rgba(43,43,46,.1);
  background: var(--card);
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.tarif-card:hover{ transform: translateY(-4px); border-color: var(--gold); }
.tarif-card--featured{
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-pale), transparent 60%);
}
.tarif-badge{
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--near-black);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
}
.tarif-card h3{ font-size: 1.2rem; margin-bottom: .9rem; }
.tarif-card p{
  font-size: .92rem;
  color: var(--anthracite-70);
  margin-bottom: 1.6rem;
  line-height: 1.65;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact{ padding: 8rem 0; background: var(--cream-deep); }
.contact-inner{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}
.contact-info .section-lead{ margin-bottom: 2.2rem; }
.contact-list{ display: flex; flex-direction: column; gap: 1.2rem; }
.contact-list li{
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .98rem;
}
.contact-list svg{ width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; }
.contact-list a{ transition: color .3s var(--ease); }
.contact-list a:hover{ color: var(--gold-deep); }
.contact-phone-link{
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .01em;
}

.contact-form{
  background: var(--card);
  padding: 2.6rem;
  border: 1px solid rgba(43,43,46,.08);
}
.form-row{ margin-bottom: 1.3rem; }
.form-row label{
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--anthracite-70);
  margin-bottom: .5rem;
}
.form-row input, .form-row textarea, .form-row select{
  width: 100%;
  padding: .8rem .9rem;
  background: var(--cream);
  border: 1px solid rgba(43,43,46,.15);
  border-radius: var(--radius);
  color: var(--anthracite);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  resize: vertical;
}
.form-row select{
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9 L12 15 L18 9' fill='none' stroke='%23A8823A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 16px;
  padding-right: 2.4rem;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}
.form-conditional{
  display: flex;
  flex-direction: column;
}
.form-conditional[hidden]{ display: none; }

.form-checkbox-row{ margin-bottom: .9rem; }
.checkbox-label{
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  cursor: pointer;
  font-size: .95rem;
  color: var(--anthracite);
  line-height: 1.55;
}
.checkbox-label input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: .2rem;
  background: var(--cream);
  border: 1px solid rgba(43,43,46,.3);
  border-radius: var(--radius);
  position: relative;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.checkbox-label input[type="checkbox"]:checked{
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox-label input[type="checkbox"]:checked::after{
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--near-black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-label input[type="checkbox"]:focus-visible{
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}
.checkbox-note{
  display: inline;
  margin-left: .3rem;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
}
.checkbox-note::before{ content: '— '; }
.form-info-note{
  margin-top: -.3rem;
  margin-bottom: 1.3rem;
  padding: .8rem 1rem;
  background: var(--gold-pale);
  border-left: 2px solid var(--gold);
  font-size: .86rem;
  color: var(--anthracite-70);
}
.form-info-note[hidden]{ display: none; }

.form-row select:disabled{
  background-color: var(--cream-deep);
  color: var(--anthracite-70);
  cursor: not-allowed;
  opacity: .9;
}

/* ==========================================================================
   Page hero (service detail pages)
   ========================================================================== */
.page-hero{
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--near-black);
  padding: 9rem 2rem 4rem;
  text-align: center;
}
.page-hero-media{
  position: absolute; inset: 0;
  background-color: var(--near-black);
  background-size: cover;
  background-position: center;
}
.page-hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,19,.5) 0%, rgba(17,17,19,.78) 100%);
}
.page-hero-content{
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero .eyebrow{ color: var(--gold); }
.page-hero-title{
  font-family: var(--font-display);
  color: #FBF7EA;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.2;
  margin: .9rem 0 1.4rem;
}
.page-hero-desc{
  color: rgba(251,247,234,.85);
  font-size: 1.05rem;
  line-height: 1.8;
}
@media (max-width: 640px){
  .page-hero{ min-height: 44vh; padding: 8rem 1.4rem 3rem; }
}

.form-stops{ display: flex; flex-direction: column; }
#add-stop-row{ align-items: flex-start; margin-bottom: 1.3rem; }
.form-stop-inputwrap{ display: flex; align-items: center; gap: .7rem; }
.form-stop-inputwrap input{ flex: 1; }
.btn-remove-stop{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid rgba(43,43,46,.15);
  border-radius: var(--radius);
  color: var(--anthracite-70);
  font-size: 1.2rem;
  line-height: 1;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.btn-remove-stop:hover{ border-color: var(--gold); color: var(--gold-deep); }

.btn-add-stop{
  display: inline-flex;
  align-items: center;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  padding: .65rem 1.3rem;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.btn-add-stop:hover{ background: var(--gold); color: var(--near-black); }
.btn-add-stop:disabled{
  border-color: rgba(43,43,46,.15);
  color: var(--anthracite-45);
  cursor: not-allowed;
}
.btn-add-stop:disabled:hover{ background: none; color: var(--anthracite-45); }

#children-ages-container{ display: flex; flex-direction: column; }
.form-feedback{
  margin-top: 1rem;
  font-size: .88rem;
  line-height: 1.5;
  min-height: 1.2em;
  color: var(--gold-deep);
}
.form-feedback.is-success{ color: #4C7A4A; }
.form-feedback.is-error{ color: #A6432E; }

.btn:disabled{ opacity: .7; cursor: not-allowed; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--near-black);
  color: rgba(251,247,234,.7);
  padding: 4.5rem 0 2.2rem;
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(251,247,234,.12);
}
.footer-brand{ display: flex; align-items: center; gap: 1rem; }
.footer-title{
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #FBF7EA;
}
.footer-tagline{ font-size: .78rem; color: rgba(251,247,234,.55); margin-top: .2rem; }

.footer-nav{ display: flex; flex-direction: column; gap: .8rem; }
.footer-nav a{ font-size: .9rem; transition: color .3s var(--ease); }
.footer-nav a:hover{ color: var(--gold); }

.footer-social{ display: flex; gap: 1rem; justify-content: flex-start; }
@media (min-width: 641px){
  .footer-social{ justify-content: flex-end; }
}
.footer-social a{
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.footer-social svg{ width: 17px; height: 17px; }
.footer-social a:hover{ background-color: var(--gold); color: var(--near-black); transform: translateY(-2px); }

.footer-legal{
  padding-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(251,247,234,.45);
}
.footer-legal-link{
  color: rgba(251,247,234,.6);
  text-decoration: underline;
  text-decoration-color: rgba(201,162,75,.4);
  text-underline-offset: 3px;
  transition: color .3s var(--ease), text-decoration-color .3s var(--ease);
}
.footer-legal-link:hover{
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float{
  position: fixed;
  right: 1.5rem;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), opacity .3s var(--ease);
}
.whatsapp-float svg{ width: 30px; height: 30px; }
.whatsapp-float:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0,0,0,.32);
}
body.nav-open .whatsapp-float{
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px){
  .whatsapp-float{
    right: 1.1rem;
    bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg{ width: 28px; height: 28px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .vehicles-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .footer-social{ grid-column: 1 / -1; }
}

@media (max-width: 860px){
  .main-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(340px, 80vw);
    background: var(--cream);
    box-shadow: -12px 0 40px rgba(43,43,46,.15);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    padding: 7rem 2.5rem 2.5rem;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; gap: 1.8rem; }
  .main-nav a{ font-size: 1.05rem; }
  .nav-toggle{ display: flex; }

  .why-grid{ grid-template-columns: 1fr; gap: 3.5rem; }
  .tarifs-grid{ grid-template-columns: 1fr; }
  .contact-inner{ grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px){
  .container{ padding: 0 1.4rem; }
  .services-grid{ grid-template-columns: 1fr; }
  .vehicles-grid{ grid-template-columns: 1fr; }
  .services, .tarifs, .contact{ padding: 5.5rem 0; }
  .vehicles{ padding: 5.5rem 0; }
  .why{ padding: 4.5rem 0 5.5rem; }
  .onrequest-list li{ flex-direction: column; align-items: center; gap: .2rem; }
  .hero-actions{ gap: 1.4rem; }
  .hero-eyebrow-wrap .eyebrow{ font-size: .66rem; letter-spacing: .08em; }
  .hero-brand{ font-size: 1.05rem; }
  .hero-subtitle{ display: none; }
  .contact-form{ padding: 1.8rem; }
  .footer-inner{ grid-template-columns: 1fr; text-align: left; }
  .logo-title{ font-size: 1rem; }

  .header-inner{ padding: 0 1.2rem; }
  .header-actions{ gap: .6rem; }
  .logo-tagline{ display: none; }
  .btn-gold:not(.btn-large){ padding: .7rem 1.1rem; font-size: .74rem; }
  .lang-btn{ padding: .35rem .55rem; font-size: .68rem; }

  .header-actions > .lang-switch{ display: none; }
  .lang-switch--mobile{
    display: flex;
    margin-top: 2.2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(43,43,46,.1);
    align-self: flex-start;
  }
}

@media (max-width: 380px){
  .btn-gold:not(.btn-large){ padding: .6rem .8rem; font-size: .68rem; }
  .hero-eyebrow-wrap .eyebrow{ font-size: .58rem; letter-spacing: .06em; }
  .hero-brand{ font-size: .96rem; }
}
