/* --- HERO VIDEO STYLE --- */
  .page-hero-video { 
    position: relative; 
    min-height: 60vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
    padding-top: 120px; 
    padding-bottom: 60px;
  }
  .bg-video-absolute { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .overlay-absolute { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 10, 0.65); z-index: 1; }
  .hero-content-front { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; padding: 0 20px; }

  @media(max-width: 960px) {
    .page-hero-video { min-height: 45vh; padding-top: 100px; padding-bottom: 40px; } 
    .booking-split { display: grid; grid-template-columns: 1fr; gap: 40px; }
  }

  /* --- SPECIFIC HOURLY STYLES --- */
  .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
  .feature-box { background: var(--black-lacquer); border: 1px solid var(--line-white); padding: 40px 30px; border-radius: 4px; }
  .feature-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--gold); margin-bottom: 30px; border-bottom: 1px solid var(--line-white); padding-bottom: 15px; }
  .feature-box.dark-box { border-color: #333; background: #0F0F0F; }
  .feature-box.dark-box h3 { color: var(--cream); }
  
  .feature-box ul { list-style: none; display: flex; flex-direction: column; gap: 25px; }
  .feature-box li { display: grid; grid-template-columns: 15px 1fr; column-gap: 15px; row-gap: 4px; align-items: start; font-size: 14px; line-height: 1.5; }
  .feat-icon { color: var(--gold); font-size: 14px; margin-top: 2px; }
  .feat-title { color: var(--cream); font-weight: 600; display: block; }
  .feature-box.dark-box .feat-title { color: var(--cream-dim); }
  .feat-desc { color: var(--cream-dim); font-weight: 300; display: block; grid-column: 2; }

  @media(max-width: 600px) {
    .feature-box li { grid-template-columns: 15px 1fr; }
    .feat-desc { grid-column: 2; margin-top: -5px; }
  }

  .use-cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
  .uc-card { background: var(--black-soft); padding: 30px; border: 1px solid var(--line); text-align: center; border-radius: 2px; transition: all 0.3s; }
  .uc-card:hover { border-color: var(--gold); transform: translateY(-5px); }
  .uc-icon { font-size: 32px; margin-bottom: 15px; }
  .uc-card h3 { color: var(--cream); font-size: 18px; margin-bottom: 10px; font-weight: 600; margin-top: 0; }
  .uc-card p { color: var(--cream-dim); font-size: 13px; line-height: 1.6; font-weight: 300; margin: 0; }

  /* --- FORM STYLES FIX --- */
  .vertical-booking { background: var(--black-lacquer); border: 1px solid var(--gold); padding: 40px; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); position: sticky; top: 100px; }
  .form-group input, .form-group select, .form-group textarea, .form-input { box-sizing: border-box !important; width: 100% !important; max-width: 100% !important; }
  .price-box-live { margin-top: 25px; padding: 20px; background: rgba(201,169,97,0.05); border: 1px solid var(--gold); text-align: center; border-radius: 2px; }
  .price-box-live span { display: block; font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
  .price-box-live strong { font-family: 'Cormorant Garamond', serif; font-size: 38px; color: var(--cream); font-weight: 600; }

  /* FAQ Accordéon */
  .faq-box { border: 1px solid var(--line-white); border-radius: 4px; }
  .faq-item { border-bottom: 1px solid var(--line-white); }
  .faq-item:last-child { border-bottom: none; }
  .faq-question { padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--gold); font-size: 16px; font-weight: 500; background: var(--black-soft); transition: background 0.3s; }
  .faq-question:hover { background: var(--black-lacquer); }
  .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: var(--black-soft); color: var(--cream-dim); font-size: 14px; line-height: 1.6; }
  .faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 500px; }
  .faq-icon { font-size: 20px; transition: transform 0.4s; }
  .faq-item.active .faq-icon { transform: rotate(45deg); }

  @media(max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .vertical-booking { position: relative; top: 0; padding: 25px 20px; }
    .vehicle-options { display: grid !important; grid-template-columns: 1fr 1fr; gap: 10px; }
    .vehicle-card { padding: 15px 5px; display: flex; flex-direction: column; justify-content: flex-start; margin-bottom: 0; }
    .vehicle-card img { height: 55px; object-fit: contain; transform: none !important; margin-bottom: 12px; }
    .vehicle-card.selected img { transform: none !important; }
    .vehicle-title { font-size: 12px; position: relative; z-index: 2; }
    .vehicle-cap { font-size: 10px; }
    .btn-gold { padding: 18px 20px !important; font-size: 13px !important; }
  }