:root {
  --navy:      #0B1E3D;
  --navy-mid:  #152C55;
  --ice-blue:  #1CB8E8;
  --ice-dark:  #0E9AC4;
  --arctic:    #F4F9FF;
  --frost:     #8FA3BD;
  --cta:       #FF6B1A;
  --cta-dark:  #E05A0D;
  --white:     #FFFFFF;
  --text-dark: #1A2B45;
  --text-body: #4A5E78;
  --border:    #D4E3F0;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(11,30,61,.12);
  --shadow-lg: 0 8px 40px rgba(11,30,61,.18);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .3px;
}

a { color: var(--ice-blue); text-decoration: none; }
a:hover { color: var(--ice-dark); }

/* TOP BAR */
.site-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 6px 0;
  letter-spacing: .3px;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--ice-blue); }
.topbar .topbar-right a { border: 1px solid rgba(255,255,255,.2); padding: 2px 10px; border-radius: 20px; }
.topbar .topbar-right a:hover { background: var(--ice-blue); border-color: var(--ice-blue); color: #fff; }

/* NAVBAR */
.main-nav {
  background: var(--navy-mid);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: padding .3s, background .3s;
}
.main-nav.scrolled {
  padding: 8px 0;
  background: rgba(11,30,61,.97);
  backdrop-filter: blur(8px);
}
.navbar-brand { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem;}
.brand-sub   { display: block; font-family: 'Nunito', sans-serif; font-size: .65rem; color: var(--frost); letter-spacing: 1.5px; text-transform: uppercase; margin-top: -4px; }

.nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 600;
  font-size: .93rem;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--white) !important;
  background: rgba(28,184,232,.18);
}
.nav-link.active { color: var(--ice-blue) !important; }

.btn-cta {
  background: var(--cta);
  color: var(--white) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 6px;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
}
.btn-cta:hover { background: var(--cta-dark); transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  /* background: var(--arctic) url('../img/hero-frost-bg.png') center center / cover no-repeat; */
  background: var(--arctic);
  overflow: hidden;
}
.hero .container,
.hero .row {
  position: relative;
  z-index: 2;
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particle {
  position: absolute;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  animation: snowfall linear infinite;
  will-change: transform, opacity;
}
.hero-particle::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  background: url('../img/snowflake.svg') center / contain no-repeat;
  opacity: .9;
  filter: none;
}
@keyframes snowfall {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: var(--op, .9); }
  25%  { transform: translate3d(var(--drift, 0px), 25vh, 0) rotate(calc(var(--rot, 360deg) * .25)); }
  50%  { transform: translate3d(calc(var(--drift, 0px) * -1), 55vh, 0) rotate(calc(var(--rot, 360deg) * .55)); opacity: var(--op_mid, .75); }
  75%  { transform: translate3d(var(--drift, 0px), 85vh, 0) rotate(calc(var(--rot, 360deg) * .85)); opacity: var(--op_mid, .75); }
  100% { transform: translate3d(0, 110vh, 0) rotate(var(--rot, 360deg)); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(28,184,232,.15);
  border: 1px solid rgba(28,184,232,.35);
  color: var(--ice-blue);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  /* color: var(--white); */
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--ice-blue); }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions a {
  position: relative;
  z-index: 3;
}
.btn-hero-primary {
  background: var(--ice-blue);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  letter-spacing: .5px;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(28,184,232,.4);
}
.btn-hero-primary:hover { background: var(--ice-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(28,184,232,.5); }
.btn-hero-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all .2s;
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: #fff; }

.hero-stats {
  display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--ice-blue); line-height: 1; }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }

/* BOOKING SEARCH WIDGET */
.booking-widget {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 30px 28px;
  position: relative;
  z-index: 3;
  margin-top: 20px;
}
.booking-widget h3 {
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ice-blue);
  display: inline-block;
}
.booking-widget .form-label {
  font-weight: 700;
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--navy);
  margin-bottom: 5px;
}
.booking-widget .form-control,
.booking-widget .form-select {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .95rem;
  transition: border-color .2s;
}
.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
  border-color: var(--ice-blue);
  box-shadow: 0 0 0 3px rgba(28,184,232,.15);
}
.btn-search {
  background: var(--cta);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  width: 100%;
  border-radius: 8px;
  border: none;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
  margin-top: 18px;
}
.btn-search:hover { background: var(--cta-dark); transform: translateY(-2px); }

/* SECTION UTILITIES */
.section-pad { padding: 80px 0; background: var(--arctic);}
.section-sm   { padding: 52px 0; }
.section-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--ice-blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.section-title { font-size: clamp(1.9rem, 3vw, 2.8rem); color: var(--text-dark); margin-bottom: 16px; }
.section-sub { color: var(--text-body); max-width: 580px; font-size: 1.05rem; }
.divider-blue { width: 55px; height: 4px; background: var(--ice-blue); border-radius: 2px; margin-bottom: 20px; }

/* WHY CHOOSE US CARDS */
.why-section { background: var(--arctic); }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid transparent;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--ice-blue); }
.why-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(28,184,232,.12), rgba(28,184,232,.25));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--ice-blue);
}
.why-card h4 { font-size: 1.25rem; margin-bottom: 10px; color: var(--navy); }
.why-card p  { font-size: .93rem; color: var(--text-body); margin: 0; }

/* FLEET CARDS */
.fleet-section { background: var(--white); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter-tab {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 30px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-body);
  cursor: pointer;
  background: transparent;
  transition: all .2s;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--ice-blue);
  border-color: var(--ice-blue);
  color: var(--white);
}

.vehicle-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vehicle-card.is-clickable { cursor: pointer; }
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--ice-blue); }
.vehicle-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.vehicle-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.vehicle-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ice-blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.temp-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(11,30,61,.85);
  color: var(--ice-blue);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: flex; align-items: center; gap: 4px;
}
.vehicle-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vehicle-card-body h4 { 
  font-size: 1.18rem; 
  margin-bottom: 6px; 
}
.vehicle-card-description {
  color: var(--text-body);
  margin-bottom: 14px;
}
.vehicle-card-summary {
  background: linear-gradient(135deg, rgba(244,249,255,.95), rgba(255,255,255,.95));
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 18px;
  padding: 14px 16px;
}
.vehicle-card-summary-section {
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: .7px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.vehicle-card-summary-section-spaced {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 12px;
}
.vehicle-card-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: .88rem;
  padding: 3px 0;
}
.vehicle-card-summary-row span {
  color: var(--text-body);
}
.vehicle-card-summary-row strong {
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
}
.vehicle-meta{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px 30px;
    margin:20px 0;
}

.vehicle-meta-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:.95rem;
    color:#3f5368;
    line-height:1.5;
}

.vehicle-meta-item i{
    color:#17a9e6;
    width:18px;
    text-align:center;
    margin-top:3px;
    flex-shrink:0;
}

.vehicle-meta-item span{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.enquiry-link{
  display:block;
  margin-top:4px;
  color:var(--ice-blue);
  font-size:.80rem;
  text-decoration:none;
  line-height:1.2;
  font-weight: 750;
}

.vehicle-meta-item a{
  color:var(--ice-dark);
  text-decoration:none;
}

.fleet-page-grid .is-featured-result .vehicle-card-body h4{
  align-items:center;
  background: linear-gradient(90deg, var(--navy) 0%, #0b2d63 100%);
  border-radius:12px 12px 0 0;
  color:#fff;
  display:flex;
  font-family:'Barlow Condensed', sans-serif;
  font-size:1.05rem;
  font-weight:800;
  gap:10px;
  letter-spacing:.6px;
  margin:0;
  padding:10px 14px;
  text-transform:uppercase;
}
.fleet-page-grid .is-featured-result .vehicle-meta{
  display:block;
  margin:0 0 16px;
  border:1px solid #dbe6f3;
  border-top:0;
  border-radius:0 0 12px 12px;
  overflow:hidden;
}
.fleet-page-grid .is-featured-result .vehicle-meta-item{
  align-items:center;
  border-bottom:1px solid #dbe6f3;
  color:var(--text-dark);
  display:grid;
  font-size:.93rem;
  gap:0;
  grid-template-columns:45% 55%;
  line-height:1.45;
  padding:10px 14px;
}
.fleet-page-grid .is-featured-result .vehicle-meta-item:nth-child(odd){
  background:#f4f8ff;
}
.fleet-page-grid .is-featured-result .vehicle-meta-item:last-child{
  border-bottom:0;
}
.fleet-page-grid .is-featured-result .vehicle-meta-item i{
  display:none;
}
.fleet-page-grid .is-featured-result .vehicle-meta-item span{
  display:block;
}
.fleet-page-grid .is-featured-result .vehicle-meta-item::before{
  color:var(--navy);
  font-weight:700;
}
.fleet-page-grid .is-featured-result .vehicle-meta-temp::before{ content:'Temperature'; }
.fleet-page-grid .is-featured-result .vehicle-meta-fuel::before{ content:'Fuel Type'; }
.fleet-page-grid .is-featured-result .vehicle-meta-license::before{ content:'License'; }
.fleet-page-grid .is-featured-result .vehicle-meta-transmission::before{ content:'Transmission'; }
.fleet-page-grid .is-featured-result .vehicle-meta-standby::before{ content:'Standby'; }
.fleet-page-grid .is-featured-result .vehicle-meta-access::before{ content:'Access'; }

@media (max-width:768px){
  .vehicle-meta{
      grid-template-columns:1fr;
  }
}
.home-fleet-grid .vehicle-card-featured-only { display: none; }
.home-fleet-grid .is-featured-result .vehicle-card-featured-only { display: block; }
.fleet-section #fleetGrid:not(.home-fleet-grid) .vehicle-card-featured-only { display: none; }
.fleet-section #fleetGrid:not(.home-fleet-grid) .is-featured-result .vehicle-card-featured-only { display: block; }
.home-fleet-grid .is-featured-result .vehicle-card{
  display:grid;
  grid-template-columns: 60% 38%;
  gap:28px;
  padding:20px;
  align-items:stretch;      
}
.fleet-section #fleetGrid:not(.home-fleet-grid) .is-featured-result .vehicle-card{
  display:flex;
  flex-direction:column;
  gap:0;
  padding:0;
  align-items:stretch;
}
.home-fleet-grid .is-featured-result .vehicle-card-img{
  height:clamp(420px, 36vw, 670px);
  min-height:0;
  max-height:570px;
  border-radius:22px;
  overflow:hidden;
}
.fleet-section #fleetGrid:not(.home-fleet-grid) .is-featured-result .vehicle-card-img{
  height:clamp(260px, 34vw, 420px);
  min-height:0;
  max-height:420px;
  border-radius:0;
  overflow:hidden;
}

.home-fleet-grid .is-featured-result .vehicle-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:22px;
}
.fleet-section #fleetGrid:not(.home-fleet-grid) .is-featured-result .vehicle-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:0;
}

.home-fleet-grid .is-featured-result .vehicle-card-body{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  height:100%;
  border:2px solid var(--border);
  border-radius:16px;
  padding:24px;
}
.fleet-section #fleetGrid:not(.home-fleet-grid) .is-featured-result .vehicle-card-body{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  height:auto;
  border-top:2px solid var(--border);
  border-radius:0;
  padding:24px;
}

.fleet-section #fleetGrid:not(.home-fleet-grid) .is-featured-result .vehicle-price{
  margin-top:12px;
}

.vehicle-size-box{
  margin-top:8px;
  padding-top:16px;
  border-top:2px solid var(--border);
}
.vehicle-size-box-head {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  justify-content: flex-start;
  letter-spacing: .7px;
  margin-bottom: 10px;
  padding: 0 10px;
  text-transform: uppercase;
}
.vehicle-size-box-head i {
  color: var(--ice-blue);
  margin-right: 8px;
}
.vehicle-size-list {
  padding: 0 10px 12px;
}
.vehicle-size-row {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 7px 0;
}
.vehicle-size-row span {
  color: var(--text-body);
  font-size: .8rem;
}
.vehicle-size-row strong {
  color: #1c5bc0;
  font-size: .82rem;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .vehicle-card-featured {
    grid-template-columns: 1fr;
  }
  .vehicle-card-featured .vehicle-card-img {
    height: 220px;
    min-height: 220px;
  }
  .vehicle-card-featured .vehicle-meta {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .home-fleet-grid .is-featured-result .vehicle-card {
    grid-template-columns: 1fr;
  }
  .fleet-section #fleetGrid:not(.home-fleet-grid) .is-featured-result .vehicle-card {
    grid-template-columns: 1fr;
  }
  .home-fleet-grid .is-featured-result .vehicle-card-img {
    height: 220px;
    min-height: 220px;
  }
  .fleet-section #fleetGrid:not(.home-fleet-grid) .is-featured-result .vehicle-card-img {
    height: 220px;
    min-height: 220px;
  }
  .home-fleet-grid .is-featured-result .vehicle-meta {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .fleet-section #fleetGrid:not(.home-fleet-grid) .is-featured-result .vehicle-meta {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}
.feature-tag {
  font-size: .73rem;
  background: var(--arctic);
  color: var(--navy-mid);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.vehicle-price { 
  margin-top: 12px; 
  border-top: 1px solid var(--border); 
  display: flex; 
  align-items: flex-end; 
  justify-content: space-between; 
}
.price-from { font-size: .75rem; color: var(--text-body); }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-per { font-size: .78rem; color: var(--text-body); margin-left: 2px; }
.fleet-detail-link {
  align-items: center;
  gap: 5px;
  color: #6e87a8;
  transition: color .2s, transform .15s;
}
.fleet-detail-link i {
  color: #89a8c7;
  font-size: 1rem;
}
.fleet-detail-link:hover {
  color: var(--ice-blue);
  transform: translateX(2px);
}
.fleet-detail-link:hover i {
  color: var(--ice-blue);
}
.btn-book {
  background: var(--ice-blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 7px;
  border: none;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
}
.btn-book:hover { background: var(--ice-dark); color: #fff; transform: translateY(-1px); }

/* HOME SERVICES (homepage) */
.home-service-card {
  background: var(--frost);
  border-radius: 18px;
  /* border: 6px solid #fff; */
  box-shadow: 0 14px 34px rgba(9, 25, 52, .14);
  padding: 32px 28px;
  height: 100%;
}
.home-service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 2.1rem;
  margin-bottom: 18px;
}
.home-service-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  letter-spacing: .4px;
  color: var(--navy);
  margin-bottom: 12px;
}
.home-service-body {
  color: rgba(0,0,0,.72);
  font-size: 1.02rem;
  line-height: 1.7;
}
@media (max-width: 575px) {
  .home-service-card { padding: 26px 22px; }
  .home-service-heading { font-size: 1.9rem; }
}

/* TESTIMONIALS */
.testimonials-section { background: var(--white); }
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  border-left: 4px solid var(--ice-blue);
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--ice-blue);
  opacity: .15;
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-stars { color: #FFC107; margin-bottom: 12px; }
.testimonial-body { font-style: italic; color: var(--text-body); margin-bottom: 18px; font-size: .95rem; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: .92rem; }
.testimonial-company { font-size: .8rem; color: var(--frost); }

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
}
.testimonial-slide {
  min-width: calc(33.333% - 16px);
  margin-right: 24px;
}
.testimonials-overflow {
  overflow: hidden;
}
/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--ice-blue) 0%, #0e7cae 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; font-size: 2.5rem; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.88); font-size: 1.08rem; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.btn-cta-white {
  background: var(--white);
  color: var(--ice-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  transition: all .2s;
  letter-spacing: .5px;
}
.btn-cta-white:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* BOOKING PROCESS PAGE */
.booking-steps {
  display: flex; gap: 0;
  margin-bottom: 36px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
}
.booking-step-tab {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-body);
  background: var(--arctic);
  border-right: 1px solid var(--border);
  position: relative;
  letter-spacing: .3px;
}
.booking-step-tab:last-child { border-right: none; }
.booking-step-tab.active { background: var(--ice-blue); color: #fff; }
.booking-step-tab.done   { background: var(--navy); color: #fff; }

/* VEHICLE DETAIL PAGE */
.vehicle-detail-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #edf6ff, #dbeefd);
  border: 1px solid var(--border);
  aspect-ratio: 270 / 191;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-detail-img img:active { cursor: grabbing; }
.vehicle-detail-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.vehicle-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vehicle-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
}
.vehicle-thumb-btn {
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.vehicle-thumb-btn img {
  width: 100%;
  aspect-ratio: 403 / 228;
  object-fit: contain;
  background: linear-gradient(135deg, #edf6ff, #dbeefd);
  display: block;
  padding: 8px;
}
.vehicle-thumb-btn:hover,
.vehicle-thumb-btn.active {
  border-color: var(--ice-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.spec-table td { padding: 9px 14px; font-size: .93rem; }
.spec-table tr:nth-child(odd) td { background: var(--arctic); }
.sidebar-booking {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.price-display {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-display .cents { font-size: 1rem; }

/* LOCATIONS PAGE */
.location-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  height: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.location-card:hover { border-color: var(--ice-blue); box-shadow: var(--shadow); }
.location-card h4 { color: var(--navy); margin-bottom: 10px; }
.location-card .loc-info { font-size: .9rem; color: var(--text-body); line-height: 1.8; }
.location-card .loc-info i { color: var(--ice-blue); width: 18px; }

/* CONTACT PAGE */
.contact-form-wrap {
  background: var(--white);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.contact-info-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 36px;
  color: var(--white);
  height: 100%;
}
.contact-info-card h4 { color: var(--ice-blue); margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(28,184,232,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ice-blue);
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: .88rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 3px; }
.contact-info-text span { color: var(--white); font-size: .95rem; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--ice-blue), transparent);
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 8px; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,.6); font-size: .88rem; }
.page-hero .breadcrumb-item.active { color: var(--ice-blue); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* FOOTER */
.site-footer {
  background: #070F1E;
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}
.footer-brand { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; }
.footer-tagline { font-size: .92rem; max-width: 300px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  margin-right: 8px;
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--ice-blue); color: #fff; }
.footer-heading { color: var(--white); font-size: 1rem; font-family: 'Barlow Condensed', sans-serif; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: 8px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--ice-blue); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; margin-bottom: 12px; }
.footer-contact i { color: var(--ice-blue); margin-top: 3px; flex-shrink: 0; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge-pill {
  background: rgba(28,184,232,.12);
  border: 1px solid rgba(28,184,232,.3);
  color: var(--ice-blue);
  font-size: .75rem;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
}
.footer-bottom {
  background: rgba(0,0,0,.3);
  margin-top: 48px;
  padding: 18px 0;
  font-size: .83rem;
}
.footer-bottom-links a { color: rgba(255,255,255,.45); margin-left: 20px; }
.footer-bottom-links a:hover { color: var(--ice-blue); }

/* AUTH PAGES */
.auth-page { min-height: 80vh; display: flex; align-items: center; background: var(--arctic); padding: 40px 0; }
.auth-card { background: var(--white); border-radius: 14px; padding: 40px; box-shadow: var(--shadow-lg); max-width: 460px; width: 100%; }
.auth-card h2 { color: var(--navy); margin-bottom: 6px; }
.auth-card .form-label { font-weight: 700; font-size: .83rem; text-transform: uppercase; letter-spacing: .8px; color: var(--navy); }

/* BOOKING SUMMARY */
.booking-summary-card {
  background: var(--arctic);
  border: 2px solid var(--ice-blue);
  border-radius: 14px;
  padding: 26px;
}
.summary-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .93rem; }
.summary-line:last-child { border-bottom: none; }
.summary-total { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); }

.booking-detail-section {
  padding-top: 56px;
}
.booking-detail-card {
  height: auto;
  display: block;
}
.booking-detail-card:hover {
  transform: none;
}
.booking-detail-card .summary-line {
  gap: 24px;
}
.booking-detail-card .summary-line > :last-child {
  text-align: right;
}
.booking-detail-vehicle .vehicle-card-body {
  flex: none;
  display: block;
}
.booking-detail-vehicle .vehicle-price {
  margin-top: 16px;
}
.booking-edit-card {
  overflow: hidden;
}
.booking-edit-toggle {
  align-items: center;
  background: #fff;
  border: 0;
  color: var(--navy);
  display: flex;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: .2px;
  padding: 20px 24px;
  text-align: left;
  width: 100%;
}
.booking-edit-toggle:hover {
  background: var(--arctic);
}
.booking-edit-chevron {
  color: var(--ice-blue);
  transition: transform .2s;
}
.booking-edit-toggle:not(.collapsed) .booking-edit-chevron {
  transform: rotate(180deg);
}

/* VEHICLE PAGE UTILS */
.form-label-caps { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .8px; }
.text-body-soft { color: var(--text-body); }
.text-frost { color: var(--frost); }
.sidebar-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 4px; }
.price-unit { color: var(--frost); font-size: .8rem; }
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.price-block {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px 12px;
  background: var(--arctic);
}
.price-block-label {
  color: var(--frost);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .75rem;
}
@media (min-width: 992px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hint-frost { font-size: .78rem; color: var(--frost); margin-top: 6px; }
.spec-key { 
  font-weight: 700; 
  color: var(--navy); 
}
.spec-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.spec-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(90deg, var(--navy) 0%, #0b2d63 100%);
  color: #fff;
}

/* .spec-panel-header.spec-panel-header-alt {
   background: #1c5bc0;
} */
.spec-panel-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.14);
}
.spec-panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.spec-panel-body { padding: 0; }
.spec-panel-table td {
  padding: 10px 30px;
  font-size: .93rem;
  border-color: #dbe6f3;
}
.spec-panel-table tr:nth-child(odd) td { background: #f4f8ff; }
.vehicle-size-spec-panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-height: 0;
  max-width: none;
  width: 100%;
}
.vehicle-size-spec-panel .spec-panel-header.spec-panel-header-alt {
  align-items: center;
  background: #1c5bc0;
  color: #fff;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 70%) minmax(0, 30%);
  padding: 10px 14px;
}
.vehicle-size-header-main {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}
.vehicle-size-spec-panel .spec-panel-title {
  color: #fff;
  display: inline-flex;
  width: auto;
}
.vehicle-size-header-capacity {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  justify-self: start;
  letter-spacing: .6px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.vehicle-size-spec-panel .spec-panel-body {
  display: block;
  padding: 0;
}
/* .vehicle-size-spec-panel .spec-panel-table td {
  border-color: #dbe6f3;
  padding: 10px 14px;
} */
.vehicle-size-spec-panel .spec-panel-table tr:nth-child(odd) td {
  background: #f4f8ff;
}
@media (max-width: 575px) {
  .vehicle-size-spec-panel .spec-panel-header.spec-panel-header-alt {
    align-items: flex-start;
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .vehicle-size-header-main {
    width: 100%;
  }

  .vehicle-size-header-capacity {
    padding-left: 38px;
    white-space: normal;
  }
}
.spec-note {
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px dashed rgba(28,184,232,.45);
  background: rgba(28,184,232,.08);
  border-radius: 12px;
  color: var(--text-body);
  font-size: .92rem;
}
.spec-note strong { color: var(--navy); }

/* UTILS */
.bg-navy   { background: var(--navy); }
.text-ice  { color: var(--ice-blue); }
.text-navy { color: var(--navy); }
.btn-ice {
  background: var(--ice-blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 8px;
  border: none;
  transition: background .2s;
}
.btn-ice:hover { background: var(--ice-dark); color: #fff; }
.btn-outline-ice {
  border: 2px solid var(--ice-blue);
  color: var(--ice-blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 8px;
  background: transparent;
  transition: all .2s;
}
.btn-outline-ice:hover { background: var(--ice-blue); color: #fff; }

/* Scroll to top */
#scrollTop {
  position: fixed; bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--ice-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
  z-index: 999;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 60px 0; }
  .hiw-connector { display: none; }
  .booking-widget { margin-top: 30px; }
}
@media (max-width: 767px) {
  .topbar .topbar-right { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .section-pad { padding: 52px 0; }
  .booking-widget { padding: 22px 18px; }
  .cta-banner h2 { font-size: 1.9rem; }
  .contact-form-wrap { padding: 24px; }
}
/* Img moving */
.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 18s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(50%);
  transition: filter .3s;
}
.marquee-img:hover {
  filter: grayscale(0%) opacity(100%);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.transmission-icon svg {
  display: block;
}

.transmission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
