.vehicle-hero{
  min-height:70vh;
  position:relative;
  display:flex;
  align-items:center;
  padding:140px 0 80px;
  overflow:hidden;
  background:#000;
  color:#fff;
}

.vehicle-hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.vehicle-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246,196,95,.28), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.52));
}

.vehicle-hero .container{
  position:relative;
  z-index:2;
}

.vehicle-hero-content{
  max-width:760px;
}

.vehicle-hero h1{
  font-size:clamp(2.3rem,5vw,4.3rem);
  font-weight:700;
  line-height:1.05;
  letter-spacing:-2px;
  margin-bottom:18px;
}

.vehicle-hero p{
  color:rgba(255,255,255,.78);
  font-size:1.05rem;
  line-height:1.8;
  max-width:640px;
}

.nav-link.active,
.nav-link:focus,
.nav-link:active,
.nav-link.show{
  color:var(--gold) !important;
}

.vehicle-section{
  background:#f7f4ee;
  padding:85px 0 95px;
}

.vehicle-category{
  text-align:center;
  max-width:760px;
  margin:0 auto 32px;
}

.vehicle-category:not(:first-child){
  margin-top:70px;
}

.vehicle-category h2{
  font-size:clamp(1.9rem,4vw,3.2rem);
  font-weight:600;
  letter-spacing:-1px;
  margin-bottom:10px;
}

.vehicle-category p{
  color:#666;
  line-height:1.8;
}

.vehicle-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.vehicle-grid-center{
  max-width:760px;
  margin:0 auto;
  grid-template-columns:repeat(2,1fr);
}

.vehicle-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  transition:.35s ease;
  height:100%;
}

.vehicle-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(0,0,0,.13);
}

.vehicle-img-wrap{
  position:relative;
  height:185px;
  background:#111;
  overflow:hidden;
}

.vehicle-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.45s ease;
}

.vehicle-card:hover .vehicle-img-wrap img{
  transform:scale(1.08);
}

.vehicle-type-tag{
  position:absolute;
  top:14px;
  left:14px;
  background:linear-gradient(135deg,var(--gold),var(--orange));
  color:#111827;
  font-size:.7rem;
  font-weight:600;
  padding:6px 10px;
  border-radius:999px;
}

.vehicle-info{
  padding:18px;
}

.vehicle-info h3{
  font-size:1.05rem;
  font-weight:600;
  margin-bottom:10px;
}

.vehicle-badges{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:14px;
}

.vehicle-badges span{
  background:#fff6e6;
  color:#111827;
  border:1px solid #ffe2ac;
  padding:5px 8px;
  border-radius:999px;
  font-size:.68rem;
  font-weight:600;
}

.vehicle-specs{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  margin-bottom:16px;
}

.vehicle-specs div{
  display:flex;
  align-items:center;
  gap:8px;
  color:#666;
  font-size:.84rem;
  font-weight:700;
}

.vehicle-specs i{
  color:var(--gold);
}

.vehicle-book-btn{
  width:100%;
  border:0;
  height:44px;
  border-radius:14px;
  background:#111;
  color:#fff;
  font-weight:600;
  transition:.3s ease;
}

.vehicle-book-btn:hover{
  background:linear-gradient(135deg,var(--gold),var(--orange));
  color:#111827;
}

.fleet-features{
  padding:90px 0;
  background:#fff;
}

.fleet-features h2{
  font-size:clamp(1.9rem,4vw,3.2rem);
  font-weight:600;
  letter-spacing:-1px;
}

.fleet-feature-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:28px;
  height:100%;
  box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.fleet-feature-card i{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  background:#111;
  color:var(--gold);
  border-radius:18px;
  font-size:1.45rem;
  margin-bottom:18px;
}

.fleet-feature-card h4{
  font-weight:600;
  margin-bottom:10px;
}

.fleet-feature-card p{
  color:#666;
  line-height:1.7;
  margin:0;
}

.vehicle-modal{
  border:0;
  border-radius:24px;
  overflow:hidden;
}

.vehicle-modal .modal-header{
  background:#0b0b0b;
  color:#fff;
  border:0;
  padding:20px 24px;
}

.vehicle-modal .modal-title{
  font-weight:600;
  font-size:1.35rem;
}

.vehicle-modal .modal-header p{
  color:rgba(255,255,255,.65);
  margin:4px 0 0;
  font-size:.88rem;
}

.vehicle-modal .modal-body{
  padding:24px;
  max-height:78vh;
  overflow-y:auto;
}

.selected-vehicle-box{
  display:flex;
  align-items:center;
  gap:16px;
  background:#f8f8f8;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  padding:14px;
  margin-bottom:22px;
}

.selected-vehicle-box img{
  width:120px;
  height:80px;
  object-fit:cover;
  border-radius:15px;
}

.selected-vehicle-box h4{
  font-weight:600;
  margin-bottom:4px;
}

.selected-vehicle-box p{
  color:#666;
  font-weight:700;
  margin:0;
}

.vehicle-modal label{
  display:block;
  font-size:.84rem;
  font-weight:600;
  margin-bottom:7px;
}

.vehicle-modal input,
.vehicle-modal select{
  width:100%;
  height:49px;
  border:1px solid #ddd;
  border-radius:14px;
  padding:0 14px;
  font-weight:700;
  outline:none;
}

.vehicle-modal input:focus,
.vehicle-modal select:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(246,196,95,.18);
}

.vehicle-accommodation-extra{
  display:none;
}

.vehicle-accommodation-extra.show{
  display:block;
}

.vehicle-child-note{
  background:#fff6e6;
  border:1px solid #ffe2ac;
  padding:12px 14px;
  border-radius:15px;
  font-size:.85rem;
  font-weight:600;
  margin-top:14px;
}

.vehicle-submit-btn{
  width:100%;
  height:56px;
  border:0;
  border-radius:18px;
  margin-top:20px;
  background:#111;
  color:#fff;
  font-weight:600;
  transition:.3s ease;
}

.vehicle-submit-btn:hover{
  background:linear-gradient(135deg,var(--gold),var(--orange));
  color:#111827;
}

.preview-modal{
  border:0;
  border-radius:24px;
  overflow:hidden;
}

.preview-modal .modal-header{
  background:#111;
  color:#fff;
}

.preview-modal .modal-body p{
  margin-bottom:9px;
  font-weight:600;
}

.preview-modal .modal-body strong{
  color:#000;
}

body.modal-open .bottom-bar{
  display:none !important;
}

.highlight-vehicle .vehicle-card{
  outline:3px solid var(--gold);
  box-shadow:0 0 0 6px rgba(246,196,95,.25), 0 22px 55px rgba(0,0,0,.16);
}

@media(max-width:1199px){
  .vehicle-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:991px){
  .vehicle-hero{
    min-height:auto;
    padding:125px 0 70px;
    text-align:center;
  }

  .vehicle-hero-content,
  .vehicle-hero p{
    margin:auto;
  }

  .vehicle-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:575px){
  .vehicle-hero{
    padding:110px 0 55px;
  }

  .vehicle-hero h1{
    font-size:2.2rem;
    letter-spacing:-1px;
  }

  .vehicle-section{
    padding:60px 0 75px;
  }

  .vehicle-grid,
  .vehicle-grid-center{
    grid-template-columns:1fr;
  }

  .vehicle-img-wrap{
    height:210px;
  }

  .selected-vehicle-box{
    align-items:flex-start;
  }

  .selected-vehicle-box img{
    width:95px;
    height:70px;
  }

  .vehicle-modal .modal-body{
    padding:18px;
  }
}
/* MOBILE MENU COLORS */

.offcanvas-body a{
    display:block !important;
    padding:14px 0 !important;
    text-decoration:none !important;
    color:#ffffff !important;
    font-weight:600 !important;
    border-bottom:1px solid rgba(255,255,255,.08) !important;
    transition:.3s !important;
}

.offcanvas-body a:hover{
    color:var(--gold) !important;
}

.offcanvas-body a.active-mobile{
    color:var(--gold) !important;
    font-weight:600 !important;
}

.offcanvas-body a.active-mobile::before{
    content:"" !important;
    width:4px !important;
    height:18px !important;
    background:var(--gold) !important;
    display:inline-block !important;
    margin-right:10px !important;
    border-radius:10px !important;
    vertical-align:middle !important;
}
.footer-credit{
    margin-top:20px;
    font-size:.95rem;
    color:rgba(255,255,255,.65);
    font-weight:500;
}

.footer-credit a{
    color:var(--gold) !important;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.footer-credit a:hover{
    color:#ffffff !important;
}
