
@import 'bootstrap.min.css';
@import 'normalize.css';
@font-face {
    font-family: 'FiraGO';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/FiraGO-Regular.ttf) format('woff');
  }
  @font-face {
    font-family: "Gilroy GEO Heavy";
    src: url("https://db.onlinewebfonts.com/t/e8265e33dfba2c2751ec163c68553e74.eot");
    src: url("https://db.onlinewebfonts.com/t/e8265e33dfba2c2751ec163c68553e74.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/e8265e33dfba2c2751ec163c68553e74.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/e8265e33dfba2c2751ec163c68553e74.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/e8265e33dfba2c2751ec163c68553e74.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/e8265e33dfba2c2751ec163c68553e74.svg#Gilroy GEO Heavy")format("svg");
}
  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'FiraGO';
   
     }
     
     h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
       font-feature-settings: 'case' on;
       font-family: "Gilroy GEO Heavy";
     }
   
   
   
  :root{
    --topbar:#12305C;      /* dark blue */
    --accent:#C80136;      /* red button */
    --text:#0f172a;
    --navy:#0e2d55;
    --muted:#6b7280;
    --border:rgba(15,23,42,.10);
    --soft:#f3f5f9;
    --sale:#c8102e;
    --green:#10b981;
    --orange:#ff6b3d;
    --navy:#0e2d55;
    --navy2:#071b37;
    --red:#CE2653;
   
   
   
  }

  /* Top info bar */
  .topbar{
    background: var(--topbar);
    color: #fff;
    font-size: 14px;
    line-height: 1;
  }
  .topbar .top-item{
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: 10px 0;
    white-space: nowrap;
    opacity: .95;
    margin-right: 25px;
  }
  .topbar .top-item i{
    font-size: 16px;
    opacity: .95;
  }
  .topbar .top-sep{
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,.18);
    margin: 0 18px;
  }

  /* Main header */
  .main-header{
    background:#fff;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
  }
  .brand-logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
  }
  .brand-logo .logo-box{
    height: 34px;
    width: 240px;          /* replace with your real logo image */
    background: #0b2b56;
    color:#fff;
    display:flex;
    align-items:center;
    padding:0 14px;
    font-weight:800;
    letter-spacing:.5px;
    border-radius: 4px;
    text-transform: uppercase;
  }

  .navbar-nav .nav-link{
    color: var(--text);
    font-weight: 400;
    padding: 22px 14px;
  }
  .navbar-nav .nav-link:hover{
    color:#0b2b56;
  }

  .lang-btn{
    border:0;
    background: transparent;
    font-weight: 500;
    color: var(--text);
    padding: 0;
    display:inline-flex;
    align-items:center;
    gap: .35rem;
    text-decoration: none;
  }
  .lang-btn i{
    font-size: 14px;
    opacity: .9;
  }

  .btn-contact{
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: bold;
    padding: 10px 22px;
    border-radius: 10px;
  }
  .btn-contact:hover{
    filter: brightness(.95);
    color:#fff;
  }

  /* Make it look like screenshot on larger screens */
  @media (min-width: 992px){
    .navbar .container{
      max-width: 1320px;
    }
  }

  .nav-link {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    padding-right: 15px!important;
    padding-left: 15px!important;
  }

  .hero-rent{
    position: relative;
    min-height: 601px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 290px 0 0px;
  }

  .hero-bg{
    position:absolute; inset:0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
  }

  .hero-overlay{
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(25, 28, 51, 0) 0%, #191C33 83.44%);

  }

  .hero-content{
    position: relative;
    z-index: 2;
  }

  .hero-title{
    color:#fff;
    font-weight: 900;
    letter-spacing: .5px;
    font-size: 48px;
    text-transform: uppercase;
    text-shadow: 0 10px 40px rgba(0,0,0,.35);
   
  }
  .hero-title span{ color:#E2405B; }

  .hero-sub{
    color: rgba(255,255,255,.9);
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 10px 30px rgba(0,0,0,.35);
  }

  /* ===== CARD ===== */
  .hero-card{
    margin: 20px auto 0;
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    max-width: 1080px;
    border: 1px solid rgba(15,23,42,.08);
  }

  .hero-label{
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: capitalize;
    color: #3b4453;
    margin-bottom: 8px;
  }

  .hero-input .input-group-text{
    background:#fff;
    border-right: 0;
    color:#6b7280;
    border-color: rgba(15,23,42,.12);
    padding: 10px 10px;
  }

  .hero-input .form-select,
  .hero-input .form-control{
    border-left: 0;
    border-color: rgba(15,23,42,.12);
    padding: 10px 10px;
    box-shadow: none;
  }

  .hero-input .form-select:focus,
  .hero-input .form-control:focus{
    box-shadow: none;
    border-color: rgba(15,23,42,.22);
  }

  .hero-btn{
    height: 46px;
    font-weight: 800;
    border-radius: 10px;
    border: 0;
    color:#fff;
    background: linear-gradient(90deg, #CE2653 0%, #C80136 100%);
    box-shadow: 0px 4px 12px 0px #E9456033;
    white-space: nowrap;
  }
  .hero-btn:hover{ filter: brightness(.98); color:#fff; }

  /* Make button column wider on desktop like screenshot */
  @media (min-width: 992px){
    .hero-card .col-lg-1{ flex: 0 0 auto; width: 20%; }
    .hero-card .col-lg-2{ width: 20%; }
    .hero-card .col-lg-3{ width: 20%; }
  }

  @media (max-width: 991.98px){
    .hero-rent{ min-height: 700px; }
    .hero-card{ padding: 18px; }
    .hero-btn{ height: 52px; }
  }

  .hero-title {
    margin: 0px!important;
  }

  .form-select {
    color:#8B8B8B;
    font-size: 14px;
  }

  .cars-section{ background:#fff; }

  /* chips */
  .chip{
    border: 1px solid var(--border);
    background:#fff;
    color:#0f172a;
    border-radius: 999px;
    padding: 5px 15px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    transition:.15s ease;
  }
  .chip .chip-ico{
    width:34px;height:34px;border-radius:999px;
    display:inline-flex;align-items:center;justify-content:center;
    color:var(--navy);
  }
  .chip.active{
    background: var(--navy);
    border-color: var(--navy);
    color:#fff;
  }
  .chip.active .chip-ico{  color:#fff; }

  .muted{ color: var(--muted); font-weight: 500; }

  /* view buttons */
  .view-btn{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #E94560;
    background: #fff;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #E94560;
  }
  .view-btn.active{
    background: var(--navy);
    border-color: var(--navy);
    color:#fff;
  }

  /* card */
  .car-card{
    position: relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15,23,42,.06);
    height: 100%;
  }

  .badge-sale{
    position:absolute;
    left:0; top:0;
    background: var(--sale);
    color:#fff;
    padding: 12px 14px;
    border-bottom-right-radius: 14px;
    z-index: 2;
    min-width: 88px;
  }
  .badge-sale .big{ font-size:20px; font-weight:900; line-height:1; }
  .badge-sale .small{ font-size:12px; letter-spacing:.6px; opacity:.9; }

  .img-wrap{
    padding: 38px 22px 12px;
    background:#fff;
  }
  .car-img-home{
    width:100%;
    height: 193px;
    object-fit: contain;
    display:block;
    padding: 10px;
  }

  .car-body{ padding: 0px 10px 22px 18px; }

  .car-title{
    font-weight: 900;
    letter-spacing: .3px;
    margin: 6px 0 6px;
    font-size: 22px;
  }
  

  .meta{
    color:#64748b;
    font-weight: 500;
    display:flex;align-items:center;gap:10px;
    margin-bottom: 14px;
  }
  
  .meta i{  }
  .dot{ opacity:.4; }
.meta span {
  font-size: 14px;
  color:  #0E2C56;

}.loc {
  background-color: #F1F1F1;

border-radius: 100px;
padding-top: 4px;
padding-right: 7px;
padding-bottom: 4px;
padding-left: 7px;
color: #6B7280!important;

}
  .specs{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 7px 0 8px;
    border-top: 1px solid rgba(15,23,42,.08);
    border-bottom: 1px solid rgba(15,23,42,.08);
  }
  .spec{
    display:flex;align-items:center;gap:10px;
    background:#fff;
    padding: 6px 6px;
  }
  .spec i{ color: var(--navy); font-size: 18px; }
  .spec b{ display:block; font-weight: 800; line-height:1.1;color: #102C57; }
  .spec span{ display:block; color: #102C57; font-size: 12px; margin-top:2px; }

  .icons-row{
    display:flex; gap:10px; flex-wrap:wrap;
    padding: 12px 0 10px;
  }
  /* .i-pill{
    width:34px; height:34px;
    border-radius: 8px;
    border: 1px solid rgba(15,23,42,.08);
    background:#f8fafc;
    display:inline-flex;align-items:center;justify-content:center;
    color:#64748b;
  } */

  .price-row{
    display:flex; align-items:baseline; justify-content:space-between;
    gap: 12px;
    padding: 10px 0 10px;
    
  }
  .from{ color:#94a3b8; font-weight: 600; }
  .price{
    color: var(--navy);
    font-weight: 900;
    font-size: 34px;
    line-height: 1;
    white-space: nowrap;
  }
  .price span{ font-size: 14px; font-weight: 700; color:#64748b; margin-left:4px; }
  .save{
    text-align:right;
    font-size: 12px;
    color:#94a3b8;
    line-height: 1.1;
  }
  .save b{ color: var(--green); }

  .perks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 0 14px;
    border-top: 1px solid rgba(15, 23, 42, .06);
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
    flex-direction: row;
}
  .perk i{ margin-right:6px; }
  .perk.orange{ color: var(--orange); }

  .btn-check{
    background: var(--navy);
    color:#fff;
    font-weight: 800;
    border-radius: 10px;
    padding: 12px 14px;
    position: relative;
    pointer-events: all;
  }
  .btn-check:hover{ filter:brightness(.98); color:#fff; }
  .btn-check svg {
    margin-top: -3px;
    margin-right: 5px;
  }
  /* ===== LIST VIEW ===== */
  .list-view .car-col{ width: 100%; }
  @media (min-width: 992px){
    .list-view .car-col{ flex: 0 0 auto; width: 100%; }
    .list-view .car-card{
      display:grid;
      grid-template-columns: 360px 1fr;
      align-items: stretch;
    }
    .list-view .img-wrap{ padding: 36px 20px; border-right: 1px solid rgba(15,23,42,.08); }
    .list-view .car-img{ height: 220px; }
  }

  @media (max-width: 575.98px){
    .specs{ grid-template-columns: repeat(2, 1fr); }
    .car-img{ height: 180px; }
  }
  .cars-counts div{
    font-size: 16px;
    color:#6B7280;
  }

  

  .cars-counts div b {
    color: #000000;

  }
  .icons {
    opacity: 1;
    border-radius: 5px;
    background: #F3F4F6;
    width: 30px;
    height: 30px;
    padding-left: 5px;
    padding-top: 3px;
}

.techs b{
font-size: 15px;
}

.techs span{
  font-size: 12px;
  margin-top: -2px;

}
.save {
  text-align: right;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.1;
  max-width: 200px;
  margin-top: -10px;
}

.explore-btn{
  background: var(--navy);
  color:#fff;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(14,45,85,.18);
  border: 2px solid rgba(255,255,255,.9);
  margin-top: 30px;
}
.explore-btn:hover{ color:#fff; filter:brightness(.98); }
.explore-btn .pill{
  margin-left: 10px;
  background: #26426C;
  color: #ff5b6a;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
 
}

/* Help banner */
.help-banner{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 55px rgba(15,23,42,.12);
}
.help-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.help-overlay{
  position:absolute; inset:0;
  background: #102C5799;
}
.help-inner{
  position: relative;
  z-index: 2;
  padding: 52px 46px;
}

.help-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 46px);
}
.help-text{
  color: rgba(255,255,255,.88);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.5;
  max-width: 720px;
}

.btn-call{
  background: var(--red);
  color:#fff;
  font-weight: 800;
  border-radius: 12px;
  padding: 12px 22px;
  border: 0;
  min-width: 190px;
}
.btn-call:hover{ color:#fff; filter:brightness(.98); }

.btn-wa{
  background: rgba(255,255,255,.08);
  color:#fff;
  font-weight: 800;
  border-radius: 12px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.35);
  min-width: 170px;
}
.btn-wa:hover{ color:#fff; background: rgba(255,255,255,.12); }

/* Trust section */
.trust-title{
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #0b1220;
  font-size: clamp(22px, 2.6vw, 34px);
}
.trust-sub{
  color: var(--muted);
  font-weight: 600;
}

.stat{
  padding: 22px 10px;
}
.stat-num{
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-label{
  margin-top: 8px;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
}

.feat-pill{
  background:#fff;
  /* border: 1px solid var(--border); */
  border-radius: 12px;
  padding: 14px 14px;
  font-weight: 700;
  color: #1f2a3a;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(15,23,42,.06);
}
.feat-ico{
  width:34px;height:34px;border-radius:10px;
  background: rgba(23,178,106,.10);
  color: var(--green);
  display:inline-flex;align-items:center;justify-content:center;
  border: 1px solid rgba(23,178,106,.18);
  font-size: 18px;
}

@media (max-width: 575.98px){
  .help-inner{ padding: 36px 20px; }
  .help-text{ text-transform: none; font-size: 13px; }
  .btn-call,.btn-wa{ width: 100%; }
  .stat-num{ font-size: 36px; }
}

.explore-btn svg {
  padding: 1px;
    margin-top: -2px;
    margin-right: 2px;
}
.btn-call svg {
  padding: 4px;
}
.btn-wa svg {
  padding: 2px;
}

.cr-footer{
  background: #102C57;
  color: var(--text);
  padding-top: 8px;
  margin-top: 50px;
}

.cr-brand{
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color:#fff;
  text-decoration:none;
  font-size: 26px;
}
.cr-brand:hover{ color:#fff; opacity:.95; }

.cr-status{
  display:flex;
  align-items:center;
  gap:10px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.cr-status .dot{
  width:7px;height:7px;border-radius:999px;
  background: #17c964;opacity: 1;
  box-shadow: 0 0 0 4px rgba(23,201,100,.18);
}

.cr-social{ display:flex; gap:10px; }
.soc{
  width:32px;height:32px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,.08);
  
  color:#fff;
  text-decoration:none;
}
.soc:hover{ color:#fff; background: rgba(255,255,255,.12); }

.cr-divider{
  height: 1px;
  border-bottom: 1px solid #FFFFFF4D
}

.cr-title{
  font-weight: 800;
  margin: 0 0 10px;
  color:#fff;
  font-size: 14px;
}

.cr-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}
.cr-list a{
  color: #C8C8C8;
  text-decoration:none;
  font-weight: 600;
  font-size: 13px;
}
.cr-list a:hover{ color:#fff; }

.cr-list-muted .k{
  color: #C8C8C8;
  font-weight: 600;
  font-size: 13px;
  display:inline-block;
}

/* category cards */
.cat-card{
  display:block;
  height: 177px;
  border-radius: 5px;
  background: #26426C;

  overflow: hidden;
  position: relative;
  text-decoration:none;
  padding: 12px 12px 0;
}
.cat-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position: relative;
  z-index: 2;
}
.cat-name{
  color:#fff;
  font-weight: 900;
  letter-spacing:.5px;
  font-size: 14px;
}
.cat-arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cat-img{
  position:absolute;
  right: -14px;
  bottom: -10px;
  width: 120px;
  height: 86px;
  object-fit: contain;
  border-radius: 10px;
  opacity: .95;
  filter: saturate(1.05) contrast(1.03);
}

.cat-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.18);
}

.cr-copy{
  color:#C8C8C8;
  font-weight: 600;
  font-size: 13px;
}
.cr-bottom-links a{
  color: #C8C8C8;
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
}
.cr-bottom-links a:hover{ color:#fff; }
.cr-bottom-links .sep{
  color: rgba(255,255,255,.35);
  margin: 0 10px;
}

@media (max-width: 575.98px){
  .cr-status{ white-space: normal; }
  .cat-card{ height: 132px; }
  .cat-img{ width: 140px; height: 92px; }
}
.go-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #102C57;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999; /* Always on top */
}
.go-top-btn:hover {
  background: #CE2653;
  transform: translateY(-3px) scale(1.05);
}
.go-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.rates-card{
 


  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 18px 60px rgba(15,23,42,.10);
  border: 1px solid #EBEBEB;
  background: #F9FAFB;

}

.rates-title{
  text-align:center;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 14px;
  margin:0;
}
.rates-sub{
  text-align:center;
  color:#5b6577;
  font-weight: 600;
  font-size: 12px;
}

.rates-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 5px;
  margin-top: 5px;
}

.cell{
  border-radius: 10px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  min-width: 81px;
}

.cell.label{
  background:#E5E7EB;
  color: #253046;
  font-weight: 800;
}

.cell.old{
  background: #9CA3AF;
  color:#fff;
  position: relative;
  font-weight: 900;
}
.cell.old::after{
  content:"";
  position:absolute;
  left: 18%;
  right: 18%;
  height: 2px;
  background: rgba(255,255,255,.9);
  transform: rotate(-10deg);
  opacity: .95;
}

.cell.new{
  color:#fff;
  font-weight: 900;
}
.cell.new.navy{ background: #102C57; }
.cell.new.navy2{ background: var(--navy2); }
.cell.new.red{ background: var(--red); }

.rates-note{
  background: #E5F3EF;
  color: var(--green);
  border-radius: 10px;
  padding: 6px 7px;
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  margin-top: 7px;
  margin-bottom: 7px;
}

.rates-btn{
  background: var(--navy);
  border: 0;
  color: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(14, 45, 85, .22);
}
.rates-btn:hover{ color:#fff; filter: brightness(.98); }


@media (max-width: 360px){
  .rates-card{ padding: 22px 16px; }
  .cell{ padding: 12px 10px; font-size: 14px; }
}
.rates-card {
  display: none;
}
.list-view .rates-card {
  display: block;
}

.list-view .car-card {
  grid-template-columns: 4fr 5fr 2fr;
}
.list-view .btn-check {
  display: none;
}
.list-view .price-row {
  display: none;
}
.list-view .car-title {
  margin-top:28px
}

.btn-check{
  background: var(--navy);
  color:#fff;
  font-weight: 800;
  border-radius: 10px;
  padding: 12px 18px;
  border:0;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.btn-check:hover{ color:#fff; filter:brightness(.98); }

/* ===== MODAL STYLE ===== */
.modal-backdrop.show{ opacity: .55; }
.avail-modal .modal-dialog{
  max-width: 1040px;
}
.avail-modal .modal-content{
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.avail-modal .btn-close{
  filter: invert(1);
  opacity: .9;
}

.avail-modal .modal-header{
  border:0;
  padding: 0;
}

.avail-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 560px;
  background:#fff;
}

/* Left side */
.left-side{
  position: relative;
  padding: 26px 28px 22px;
  background: #fff;
}

.sale-badge{
  position:absolute;
  left:0; top:0;
  background: var(--red);
  color:#fff;
  padding: 14px 16px;
  border-bottom-right-radius: 14px;
  z-index: 2;
  min-width: 92px;
}
.sale-badge .big{ font-size:22px; font-weight: 900; line-height: 1; }
.sale-badge .small{ font-size:12px; letter-spacing:.6px; opacity:.95; }

.car-img-wrap{
  padding: 48px 10px 10px;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: 290px;
}
.car-imgs{
  width: 100%;
  /* max-width: 520px;
  height: 260px; */
  object-fit: contain;
  height: 325px;
  padding-top: 20px;
  margin-top: 30px;
}

.car-name{
  font-weight: 900;
  color:#0b1220;
  letter-spacing: .2px;
  font-size: 34px;
  margin: 6px 0 6px;
  text-transform: uppercase;
}
.car-meta{
  display:flex;
  gap: 12px;
  align-items:center;
  color:#64748b;
  font-weight: 600;
  margin-bottom: 14px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f5f9;
  color:#475569;
  border: 1px solid rgba(15,23,42,.06);
  font-size: 12px;
  font-weight: 800;
}

.specs{
  /* display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(15,23,42,.08);
  border-bottom: 1px solid rgba(15,23,42,.08);
  margin-top: 10px; */
}
.spec{
  /* display:flex;
  align-items:center;
  gap:10px;
  padding: 6px 6px; */
}
/* .spec i{ color: var(--navy); font-size: 18px; }
.spec b{ display:block; font-weight: 900; color:#0b1220; line-height:1.1; }
.spec span{ display:block; color:#6b7280; font-size: 12px; margin-top:2px; } */

.mini-icons{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.mini{
  display:inline-flex;align-items:center;gap:8px;
  color:#64748b;font-weight:700;font-size:12px;
}
.mini i{ color:#94a3b8; }

.ins-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding-top: 14px;
}
.ok-pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23,178,106,.10);
  color: var(--green);
  border: 1px solid rgba(23,178,106,.20);
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

/* Right side */
.right-side{
  background:#fbfcfe;
  border-left: 1px solid rgba(15,23,42,.08);
  padding: 22px 22px 20px;
  position: relative;
}

.modal-x{
  position:absolute;
  right: 14px;
  top: 14px;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  color:#0b1220;
  cursor:pointer;
}
.modal-x:hover{ background:#f6f7fb; }

.field-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}

.f-label{
  font-size: 11px;
  letter-spacing: .6px;
  font-weight: 900;
  color:#475569;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.f-input{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 10px;
  padding: 10px 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  color:#0b1220;
  font-weight: 700;
}
.f-input i{ color:#94a3b8; }
.f-input input, .f-input select{
  border:0;
  outline:0;
  width:100%;
  font-weight: 700;
  background: transparent;
}

.trip-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin: 16px 0 10px;
  color:#475569;
  font-weight: 900;
  font-size: 12px;
}

.rate-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.rate-box{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 10px;
  padding: 10px 10px;
  text-align:center;
  min-height: 74px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 3px;
  color:#64748b;
  font-weight: 800;
  position: relative;
}
.rate-box .d{ font-size: 11px; font-weight: 900; color:#64748b; }
.rate-box .old{
  font-size: 12px;
  color:#94a3b8;
  text-decoration: line-through;
  font-weight: 900;
}
.rate-box .new{
  font-size: 16px;
  color:#0b1220;
  font-weight: 900;
}
.rate-box.active{
  border-color: rgba(23,178,106,.55);
  box-shadow: 0 10px 25px rgba(23,178,106,.12);
}
.rate-box.active .new{ color: var(--green); }
.your-rate{
  position:absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(23,178,106,.12);
  border: 1px solid rgba(23,178,106,.35);
  color: var(--green);
  font-weight: 900;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.summary{
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 12px;
  padding: 14px 14px;
}
.summary .s-title{
  font-weight: 900;
  color:#0b1220;
  font-size: 12px;
  margin-bottom: 10px;
}
.row-line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight: 700;
  color:#64748b;
  font-size: 12px;
  margin-bottom: 6px;
}
.row-line b{ color:#0b1220; }
.row-line .strike{ text-decoration: line-through; opacity:.6; margin-right:8px; }
.total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(15,23,42,.08);
  font-weight: 900;
  color:#0b1220;
}
.total .t{
  font-size: 22px;
  color: var(--navy);
}

.save-bar{
  background: rgba(23,178,106,.10);
  border: 1px solid rgba(23,178,106,.22);
  color: var(--green);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 12px;
  text-align:center;
  margin: 12px 0 12px;
}

.btn-book{
  background: var(--red);
  border: 0;
  color:#fff;
  font-weight: 900;
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 18px;
  box-shadow: 0 16px 40px rgba(225,58,76,.25);
}
.btn-book:hover{ color:#fff; filter:brightness(.98); }

/* Responsive */
@media (max-width: 991.98px){
  .avail-grid{ grid-template-columns: 1fr; }
  .right-side{ border-left:0; border-top: 1px solid rgba(15,23,42,.08); }
  .field-grid{ margin-top: 18px; }
  .car-name{ font-size: 28px; }
  .specs{ grid-template-columns: repeat(2, 1fr); }
}

.modal-backdrop {
  background: #102c57;
  opacity: 0.7 !important;
}

.breadcrumb {
  background: transparent;
  font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 8px;
  color: #aaa;
}

.breadcrumb a {
  color: #999;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #000;
}

.breadcrumb-item.active {
  color: #000;
  font-weight: 500;
}


.wrap{padding:30px 0;}

.ui-card{

  box-shadow: var(--shadow);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 12px;
  margin-bottom: 25px;
}


.hero{
  position:relative;
  padding:22px 22px 18px;
/* 
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 12px; */
}

.discount-badge{
  position:absolute; left:0; top:0;
  width:120px; height:120px;
  z-index:3;
}
.discount-badge .shape{
  width:96px; height:96px;
  background:var(--accent);
  border-bottom-right-radius:18px;
  border-top-right-radius:0;
  border-top-left-radius:18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-left:18px;
  box-shadow:0 14px 28px rgba(216,27,58,.20);
}
.discount-badge .shape b{
  color:#fff; font-size:28px; line-height:1; font-weight:900;
}
.discount-badge .shape span{
  color:#fff; font-size:14px; letter-spacing:.2px; opacity:.95;
}

.car-img{
  width:100%;
  height: 325px;
  object-fit:contain;
  display:block;
  margin: 18px auto 12px;
  filter: drop-shadow(0 24px 22px rgba(2, 6, 23, .16));
}

.hero-bottom{
  padding: 8px 6px 4px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin-top: 20px;
}

.car-title-inside{
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
  font-size: 32px;
  margin:0 0 6px 0;
}

.metas{
  display:flex; gap:18px; flex-wrap:wrap;
  color:var(--muted);
  font-size:15px;
  align-items:center;
}
.metas .item{display:flex; align-items:center; gap:8px;color:#6B72806B7280}
.metas i{color:#6B7280;}

.review{
  /* max-width: 420px;
  margin-left:auto; */
  text-align:left;
  max-width: 350px;
}
.stars{
  color:var(--star);
  letter-spacing:2px;
  font-size:16px;
  margin-bottom:6px;
}
.review p{
  margin:0;
  font-style:italic;
  color:#0E2C56;;
  opacity:.85;
  line-height:1.35;
  font-size:15px;
}

/* --- specs card --- */
.specs-inside{
  padding:22px;
}
.specs-head{
  display:flex;
  align-items:center;
  gap:12px;
  padding:6px 6px 16px;
  font-weight:900;
  font-size:18px;
}
.specs-head .head-ico{
  width:44px;
  height:44px;
  border-radius:14px;
  /* border:1px solid rgba(15,23,42,.08); */
  display:grid;place-items:center;
  /* background:#fff; */
  color:#111827;
}

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

.spec-box{
  background:#F9FAFB;
  /* border:1px solid rgba(15,23,42,.06); */
  border-radius:16px;
  padding:14px 14px;
  display:flex;
  align-items:center;
  gap:14px;
  /* min-height:86px; */
}
.spec-box .ico{
  width:37px;
  height:37px;
  border-radius:14px;
  background:#fff;
  box-shadow: 0px 2px 4px 0px #0000000D;

  display:grid;place-items:center;
  color:var(--navy);
  flex:0 0 auto;
  font-size:22px;
}
.spec-box .lbl{
  color:#8b95a3;
  font-size:14px;
  margin-bottom:2px;
}
.spec-box .val{
  font-weight:900;
  font-size:15px;
  color:#0f172a;
}

/* responsive */
@media (max-width: 991.98px){
  .hero{min-height:auto;}
  .car-title{font-size:34px;}
  .review{max-width:100%; margin-left:0;}
  .spec-grid{grid-template-columns:1fr;}
}

.section-pad{padding:26px;}

.section-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size:18px;
  margin:0 0 18px;
}
.section-title .icon{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:12px;
  /* background:#fff;
  border:1px solid rgba(15,23,42,.08); */
}

/* Included Features items */
.feature-item{
  background: #F9FAFB;
  /* border: 1px solid rgba(15, 23, 42, .06); */
  border-radius: 16px;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  
  
}
.feature-item .check{
  width:24px;height:24px;
  border-radius:50%;
  display:grid;place-items:center;

  color:var(--green);
  font-size:20px;
  flex:0 0 auto;
  background: #12B981;

}
.feature-item .check i {
  color: #fff;
  font-size: 15px;
  margin-top: 2px;
}
.feature-item .txt{
  font-weight:800;
  font-size:15px;
  color:#111827;
}

/* About block */
.about-text{
  color:#4b5563;
  font-size:14px;
  line-height:1.75;
  margin: 0 0 18px;
}
.about-subtitle{
  font-weight:900;
  margin:22px 0 10px;
  font-size:14px;
  color:#111827;
}

/* bullet style like screenshot */
.about-list{
  padding-left: 18px;
  margin: 0 0 12px;
  color:#4b5563;
  font-size:14px;
  line-height:1.75;
}
.about-list li{
  margin: 6px 0;
}

@media (max-width: 991.98px){
  .section-pad{padding:20px;}
  .feature-item .txt{font-size:16px;}
}

.rates-wrap{
  background:#fff;


  overflow:hidden;
}
.rates-head{
  background:#f6f8fb;
  color:#5b6472;
  font-weight:800;
  font-size:14px;
}
.rates-row{
  border-top:1px solid rgba(15,23,42,.06);
  background:#fff;
}
.rates-row.alt{ background:#f6f7f9; }
.rates-cell{
  padding:9px 19px;
  display:flex;
  align-items:center;
  min-height:54px;
  font-size: 14px;
}
.dur{
  font-weight:800;
  color:#4b5563;
}
.badge-sales{
  font-size:12px;
  font-weight:900;
  padding:3px 10px;
  border-radius:8px;
  background:var(--red);
  color:#fff;
  margin-left:10px;
  letter-spacing:.3px;
}
.badge-best{
  font-size:12px;
  font-weight:900;
  padding:3px 10px;
  border-radius:8px;
  background:var(--green);
  color:#fff;
  margin-left:10px;
  letter-spacing:.2px;
}
.old-price{
  color:#9aa5b1;
  text-decoration:line-through;
  font-weight:800;
  margin-right:16px;
}
.new-price{
  font-weight:900;
  color:var(--navy);
  font-size:18px;
}
.new-price.red{ color:var(--red); }
.save{
  font-weight:900;
  color:var(--green);
}

/* --- Accordion style --- */
.faq-box{
  border:1px solid rgba(15,23,42,.06);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}
.accordion-item{
  border:0;
  border-top:1px solid rgba(15,23,42,.06);
}
.accordion-item:first-child{ border-top:0; }
.accordion-button{
  padding:18px 20px;
  font-weight:900;
  color:#0f172a;
  background:#fff;
  box-shadow:none !important;
}
.accordion-button:not(.collapsed){
  background:#fff;
  color:#0f172a;
}
.accordion-button::after{
  background-image:none;
  content:"\F282"; /* bi-chevron-down */
  font-family:"bootstrap-icons";
  font-size:18px;
  transform:none;
  color:#111827;
}
.accordion-button:not(.collapsed)::after{
  content:"\F286"; /* bi-chevron-up */
}
.accordion-body{
  padding:0 20px 18px;
  color:#4b5563;
  line-height:1.7;
  font-size:15px;
}

@media (max-width: 991.98px){
  .rates-cell{ padding:14px 14px; }
  .new-price{ font-size:18px; }
  .old-price{ margin-right:10px; }
}
.accordion-button:not(.collapsed)::after {
 background: none;
}
.cr-footer {
  margin-top: 0px;
}
.trust-block {
  margin-bottom:50px;
}

.booking-sticky-wrapper{
  /* position: sticky;
  top: 20px; */
}
@media (max-width: 991.98px){
  .booking-sticky-wrapper{
    position: static;
  }
}

/* ===== Card Base ===== */
.booking-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  overflow:hidden;
  border:1px solid #e9eef5;
}

/* ===== Header ===== */
.booking-header{
  position:relative;
  padding:22px;
  background:linear-gradient(135deg,#0b2a5b,#1f4f8f);
  color:#fff;
}
.booking-header small{
  opacity:.85;
  margin-right: 15px;
}
.booking-price{
  font-size:36px;
  font-weight:900;
  line-height:1;
}
.booking-old{
  opacity:.75;
  text-decoration:line-through;
  font-size:14px;
}

/* Ribbon */
.booking-discount{
  position:absolute;
  top:0;
  right:0;
  width:110px;
  height:110px;
  overflow:hidden;
}
.booking-discount span{
  position: absolute;
  right: -45px;
  top: 19px;
  width: 160px;
  background: #ef3b53;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: 900;
  transform: rotate(45deg);
  font-size:14px;
}

/* ===== Form ===== */
.booking-body{
  padding:20px 22px;
}
.booking-label{
  font-size:12px;
  font-weight:800;
  color:#7a869a;
  margin-bottom:6px;
  text-transform:uppercase;
}
.booking-input{
  height:44px;
  border-radius:12px;
  border:1px solid #dfe5ef;
  font-weight:700;
  font-size: 14px;
}

/* ===== Calculation Box ===== */
.booking-summary{
  margin-top:16px;
  background:#f7f9fc;
  border-radius:14px;
  padding:14px;
}
.booking-row{
  display:flex;
  justify-content:space-between;
  padding:6px 4px;
  font-size:13px;
}
.booking-row strong{
  color:#0f172a;
}
.booking-divider{
  height:1px;
  background:#e5e9f2;
  margin:10px 0;
}
.booking-total{
  font-size:15px;
  font-weight:900;
  display:flex;
  justify-content:space-between;
}

/* Save note */
.booking-save{
  margin-top:12px;
  background:#eaf7f0;
  color:#19a974;
  font-weight:800;
  font-size:13px;
  padding:10px;
  border-radius:10px;
  text-align:center;
}

/* Button */
.booking-btn{
  margin-top: 14px;
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: none;
  font-weight: 900;
  background: linear-gradient(90deg, #DA3D55 0%, #C72C44 100%);
  box-shadow: 0px 2px 8px 0px #D63A5233;
  color: #fff;
  font-size: 14px;
}

/* ===== Footer Features ===== */
.booking-footer{
  padding:18px 22px;
  border-top:1px solid #e9eef5;
}
.booking-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 14px;
  font-size:13px;
  color:#6b7280;
}
.booking-feature{
  display:flex;
  gap:8px;
}
.booking-feature i{
  color:#19a974;
}

/* ===== Support Box ===== */
.help-card{
  margin-top:16px;
  padding:18px;
  background:#fff;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
}
.help-card h5{
  font-weight:900;
  margin-bottom:14px;
  font-size: 14px;
}
.help-whatsapp{
  width:100%;
  height:44px;
  border-radius:14px;
  background:#25D366;
  color:#fff;
  font-weight:900;
  border:none;
}
.help-phone{
  width:100%;
  height:44px;
  border-radius:14px;
  background:#f3f5f8;
  border:1px solid #e1e6ef;
  font-weight:900;
  margin-top:10px;
}

.cr-hero{
  position:relative;
  /* padding:30px 0; */
  overflow:hidden;
  border-radius:0;
  background: linear-gradient(90deg, #153563 0%, #224C8A 100%);

}

.cr-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 500px at 60% 35%, rgba(0,0,0,.18), rgba(0,0,0,0) 60%);
  pointer-events:none;
}

.cr-hero-inner{
  position:relative;
  z-index:2;
}

.cr-hero-title{
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:#fff;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height:1.05;
  margin:0 0 14px 0;
  font-size: 40px;
}

.cr-hero-desc{
  max-width: 620px;
  color: rgba(255,255,255,.85);
  font-size: 16px;
  line-height: 1.55;
  margin:0 0 22px 0;
}

.cr-hero-badges{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
  margin-top: 8px;
}

.cr-hero-badge{
  display:flex;
  align-items:center;
  gap:10px;
  color:#16c784;
  font-weight:900;
  font-size:16px;
  letter-spacing:.2px;
  text-transform:none;
  opacity:.95;
  white-space:nowrap;
}
.cr-hero-badge i{
  font-size:18px;
}

/* Right phone image */
.cr-hero-phone{
  position:relative;
  height: 100%;
  min-height: 320px;
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.cr-hero-phone img{
  /* width:min(430px, 100%);
  max-height: 520px; */
  object-fit:contain;
  /* transform: rotate(18deg); */
  filter: drop-shadow(0 35px 35px rgba(0,0,0,.35));
  margin-right: -20px;
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .cr-hero{ padding:46px 0; }
  .cr-hero-phone{
    margin-top: 26px;
    justify-content:center;
  }
  .cr-hero-phone img{
    margin-right:0;
  }
  .cr-hero-badge{ font-size:15px; }
}

.hiw-section{
  padding:70px 0 80px;
  background:#fff;
}
.hiw-title{
  font-weight:1000;
  font-size: 48px;
  line-height:1.05;
  margin:0;
  color:#0f172a;
  letter-spacing:-.5px;
}
.hiw-subtitle{
  margin-top:10px;
  color:#6b7280;
  font-size:16px;
}

/* tabs */
.hiw-tabs{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}
.hiw-tabbtn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:10px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  color:#111827;
  font-weight:800;
  box-shadow:0 10px 25px rgba(15,23,42,.05);
  cursor:pointer;
  transition:.18s ease;
  user-select:none;
}
.hiw-tabbtn .ico{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:8px;
  /* border:1px solid rgba(15,23,42,.12);
  background:#f7f9fc; */
  color:#0b2a5b;
  flex:0 0 auto;
  font-size:18px;
}
.hiw-tabbtn.active{
  background:#0b2a5b;
  border-color:#0b2a5b;
  color:#fff;
}
.hiw-tabbtn.active .ico{
  background:#0b2a5b;
  border-color: rgba(255,255,255,.22);
  color:#fff;
}

.hiw-note{
  margin-top:18px;
  text-align:center;
  color:#6b7280;
  font-style:italic;
}

/* timeline line */
.hiw-linewrap{
  position:relative;
  margin-top: 46px;
  margin-bottom: 10px;
}
.hiw-linewrap:before{
  content:"";
  position:absolute;
  left: 9%;
  right: 9%;
  top: 70px;
  height: 2px;
  background: rgba(15,23,42,.10);
}

/* step */
.hiw-step{
  text-align:center;
  padding: 0 18px;
}
.hiw-ill{
  width:92px;height:92px;
  margin:0 auto 16px;
  border-radius:20px;
  background: #F9FAFB;

  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 16px 30px rgba(15,23,42,.08);
  display:grid;
  place-items:center;
  position:relative;
  z-index:2;
}
.hiw-ill img{
  width:72px;height:72px;
  object-fit:contain;
}

.hiw-num{
  width:34px;height:34px;
  margin: 0 auto 12px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:#ef3b53;
  color:#fff;
  font-weight:1000;
  box-shadow:0 12px 18px rgba(239,59,83,.18);
}

.hiw-h{
  font-weight:1000;
  font-size:24px;
  margin:0 0 8px;
  color:#0f172a;
  letter-spacing:-.2px;
}
.hiw-p{
  margin:0 auto 18px;
  max-width: 320px;
  color:#6b7280;
  font-size:15px;
  line-height:1.55;
}

.hiw-card{
  background: #F9FAFB;

  border-radius:14px;
  box-shadow:0 16px 28px rgba(15,23,42,.06);
  padding:18px 18px;
  max-width: 360px;
  margin:0 auto;
  text-align:left;
}
.hiw-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
  color:#374151;
  font-size:14px;
}
.hiw-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  line-height:1.35;
}
.hiw-list i{
  color:#19a974;
  font-size:16px;
  margin-top:2px;
  flex:0 0 auto;
}

@media (max-width: 991.98px){
  .hiw-linewrap:before{ display:none; }
  .hiw-step{ padding: 0 10px; }
  .hiw-h{ font-size:22px; }
  .hiw-ill{ width:84px; height:84px; }
  .hiw-ill img{ width:64px; height:64px; }
}

.wyn-wrap{
  padding:80px 0 90px;
  background:#f7f8fb;
  overflow:hidden;
}

.wyn-title{
  text-align:center;
  font-weight:1000;
  letter-spacing:-.7px;
  font-size: 45px;
  margin:0;
  color:#0f172a;
}

.wyn-sub{
  text-align:center;
  color:#6b7280;
  font-size:16px;
  margin-top:12px;
}

.wyn-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  border-radius:18px;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  padding:34px 28px 28px;
  height:100%;
  text-align:center;
  transition:.18s ease;
}
.wyn-card:hover{
  transform: translateY(-2px);
  box-shadow:0 22px 55px rgba(15,23,42,.10);
}

.wyn-ico{
  width:78px;
  height:78px;
  border-radius:22px;
  margin:0 auto 16px;
  display:grid;
  place-items:center;
  background: #E7E9EF;

  color:#111827;
  border: 1px solid #E5E7EB
}
.wyn-ico i{ font-size:34px; }

.wyn-h{
  font-weight:1000;
  font-size:20px;
  margin:10px 0 10px;
  color:#0f172a;
  letter-spacing:-.2px;
}

.wyn-p{
  color:#6b7280;
  font-size:14px;
  line-height:1.7;
  max-width: 320px;
  margin:0 auto 18px;
}

.wyn-pill{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  font-weight:900;
  font-size:14px;
  line-height:1;
  background:#19a974;
  color:#fff;
  box-shadow:0 14px 20px rgba(25,169,116,.18);
}

/* spacing like screenshot */
.wyn-row{
  margin-top:44px;
}

@media (max-width: 991.98px){
  .wyn-wrap{ padding:56px 0 64px; }
  .wyn-sub{ font-size:16px; }
  .wyn-card{ padding:28px 20px; }
  .wyn-h{ font-size:22px; }
}

.cmp-section{
  padding:80px 0 90px;
  background:#fff;
}
.cmp-title{
  text-align:center;
  font-weight:1000;
  letter-spacing:-.6px;
  font-size: 48px;
  margin:0;
  color:#0f172a;
}
.cmp-sub{
  text-align:center;
  color:#6b7280;
  font-size:16px;
  margin-top:12px;
}

.cmp-tablewrap{
  margin-top:34px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  background:#fff;
}

.cmp-table{
  margin:0;
  width:100%;
}

.cmp-table thead th{
  background:#123a5b;
  color:#fff;
  font-weight:900;
  padding:18px 18px;
  font-size:16px;
  border:0 !important;
}
.cmp-table thead th:first-child{
  text-align:left;
  width:52%;
}
.cmp-table thead th:nth-child(2),
.cmp-table thead th:nth-child(3){
  text-align:center;
  width:24%;
}

.cmp-table tbody td{
  padding:20px 18px;
  border-color: rgba(15,23,42,.08) !important;
  font-size:16px;
  color:#111827;
  vertical-align:middle;
}
.cmp-feature{
  font-weight:800;
  color:#334155;
}

/* green column background */
.cmp-table tbody td:nth-child(2){
  background: rgba(25,169,116,.06);
  text-align:center;
}
.cmp-table tbody td:nth-child(3){
  text-align:center;
}

.cmp-yes{
  color:#19a974;
  font-size:22px;
  font-weight:900;
  line-height:1;
}
.cmp-no{
  color:#9aa5b1;
  font-size:22px;
  font-weight:900;
  line-height:1;
}

/* Rounded corners on header */
.cmp-table thead th:first-child{ border-top-left-radius:18px; }
.cmp-table thead th:last-child{ border-top-right-radius:18px; }

/* nicer row hover */
.cmp-table tbody tr:hover td{
  background-color: rgba(15,23,42,.02);
}
.cmp-table tbody tr:hover td:nth-child(2){
  background-color: rgba(25,169,116,.09);
}

/* mobile scroll */
.cmp-scroll{
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}
@media (max-width: 767.98px){
  .cmp-table{ min-width: 720px; }
  .cmp-section{ padding:56px 0 64px; }
}

.faq-grid-section{
  padding:80px 0 90px;
  background: #F9FAFB;
}

.faq-grid-title{
  text-align:center;
  font-weight:1000;
  font-size:48px;
  margin:0;
  color:#000;
}

.faq-grid-sub{
  text-align:center;
  color:#6b7280;
  font-size:16px;
  margin-top:12px;
}

/* cards */
.faq-grid-row{
  margin-top:46px;
}

.faq-card{
  background:#fff;
  border-radius:14px;
  border:1px solid #e9edf3;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
  padding:26px 26px;
  height:100%;
  transition:.18s ease;
}

.faq-card:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 55px rgba(0,0,0,.08);
}

.faq-card-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}

.faq-icon{
  width:26px;
  height:26px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:2px solid #ef3b53;
  color:#ef3b53;
  font-size:14px;
  flex:0 0 auto;
}

.faq-q{
  font-weight:900;
  font-size:18px;
  color:#111;
}

.faq-a{
  color:#4b5563;
  font-size:15px;
  line-height:1.65;
  margin-left:38px;
}

/* view all */
.faq-viewall{
  margin-top:42px;
  text-align:center;
}

.faq-viewall a{
  font-weight:900;
  color:#000;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-bottom:2px solid #000;
  padding-bottom:4px;
}

.faq-viewall a i{
  font-size:18px;
}

@media (max-width: 991.98px){
  .faq-grid-section{padding:60px 0;}
  .faq-q{font-size:16px;}
}
.cta-hero-wrap{
  position:relative;
  padding:154px 0;
  overflow:hidden;
  background:#0b2a5b;
}

.cta-hero-bg{
  position:absolute;
  inset:0;
  background-image:url('../images/how_it_works/why_we_cover.png');
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  filter: saturate(1.05);
}

.cta-hero-overlay{
  position:absolute;
  inset:0;
  background: #12305C4D;

}

.cta-hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
}

.cta-hero-title{
  font-weight:1000;
  letter-spacing:-.6px;
  font-size: 48px;
  line-height:1.05;
  margin:0 0 12px;
  text-shadow:0 10px 28px rgba(0,0,0,.35);
}

.cta-hero-desc{
  font-size:16px;
  color:rgba(255,255,255,.85);
  max-width: 820px;
  margin:0 auto 24px;
  line-height:1.6;
  text-shadow:0 10px 24px rgba(0,0,0,.35);
}

.cta-hero-btn{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 26px;
  border-radius:14px;
  background:#ef3b53;
  color:#fff;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 18px 38px rgba(239,59,83,.25);
  transition:.18s ease;
}

.cta-hero-btn:hover{
  transform: translateY(-2px);
  color:#fff;
  box-shadow:0 24px 55px rgba(239,59,83,.30);
}

.cta-hero-btn i{
  font-size:18px;
}

@media (max-width: 991.98px){
  .cta-hero-wrap{ padding:62px 0; }
  .cta-hero-desc{ font-size:16px; padding:0 10px; }
  .cta-hero-btn{ width: auto; }
}

.faqp-hero{
  background:#123a5b;
  color:#fff;
  padding:62px 0 56px;
  text-align:center;
}
.faqp-hero h1{
  margin:0;
  font-weight:1000;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size: clamp(28px, 3.8vw, 44px);
}
.faqp-hero p{
  margin:10px 0 0;
  color:rgba(255,255,255,.85);
  font-weight:600;
  font-size:14px;
}

.faqp-page{
  background:#f6f8fb;
  padding:34px 0 80px;
}

/* left menu */
.faqp-side{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  padding:14px;
}

.faqp-side-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:12px;
  padding:14px 14px;
  background:#fff;
  font-weight:800;
  color:#111827;
  margin-bottom:10px;
  transition:.15s ease;
}
.faqp-side-btn:hover{ background:#f7f9fc; }
.faqp-side-btn.active{
  background:#123a5b;
  border-color:#123a5b;
  color:#fff;
}
.faqp-side-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.faqp-side-ico{
  width:26px;height:26px;
  border-radius:50%;
  display:grid;place-items:center;
  border:2px solid rgba(17,24,39,.45);
  color:rgba(17,24,39,.65);
  font-size:14px;
  flex:0 0 auto;
  background:#fff;
}
.faqp-side-btn.active .faqp-side-ico{
  border-color:rgba(255,255,255,.55);
  color:#fff;
  background:transparent;
}
.faqp-side-title{
  text-align:left;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  font-size:13px;
}
.faqp-side-count{
  width:28px;height:22px;
  border-radius:999px;
  display:grid;place-items:center;
  font-size:12px;
  font-weight:900;
  background:#e9edf3;
  color:#334155;
  flex:0 0 auto;
}
.faqp-side-btn.active .faqp-side-count{
  background:rgba(255,255,255,.18);
  color:#fff;
}

/* right content */
.faqp-main{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  padding:22px 22px 30px;
}

.faqp-section-head{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 4px 14px;
  border-bottom:1px solid rgba(15,23,42,.08);
  margin-bottom:16px;
}
.faqp-badge{
  width:34px;height:34px;
  border-radius:12px;
  display:grid;place-items:center;
  background:#fde9ee;
  color:#ef3b53;
  border:1px solid rgba(239,59,83,.18);
  font-size:18px;
  flex:0 0 auto;
}
.faqp-section-title{
  font-weight:1000;
  font-size:18px;
  margin:0;
  color:#111827;
}

/* accordion styling */
.faqp-acc .accordion-item{
  border:0;
  margin-bottom:12px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
}
.faqp-acc .accordion-button{
  padding:16px 16px;
  font-weight:900;
  color:#111827;
  background:#fff;
  box-shadow:none !important;
  font-size:13px;
}
.faqp-acc .accordion-button:not(.collapsed){
  background:#f7f9fc;
}
.faqp-acc .accordion-body{
  padding:0 16px 16px;
  color:#4b5563;
  font-size:13px;
  line-height:1.7;
  background:#f7f9fc;
}

/* custom caret icon */
.faqp-acc .accordion-button::after{
  background-image:none;
  content:"\F282";
  font-family:"bootstrap-icons";
  font-size:16px;
  transform:none;
  color:#111827;
}
.faqp-acc .accordion-button:not(.collapsed)::after{
  content:"\F286";
}

/* spacing between category blocks */
.faqp-gap{ height:26px; }

/* keep sidebar sticky on desktop */
.faqp-sticky{
  position: sticky;
  top: 18px;
  align-self:flex-start;
}
@media (max-width: 991.98px){
  .faqp-sticky{ position:static; top:auto; }
  .faqp-main{ margin-top:14px; }
}

.tac-hero{
  background: linear-gradient(135deg,#123a5b,#1f4f8f);
  color:#fff;
  padding:70px 0 64px;
  text-align:center;
}
.tac-hero h1{
  margin:0;
  font-weight:1000;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size: clamp(28px, 4.0vw, 46px);
}
.tac-hero p{
  margin:10px 0 0;
  color:rgba(255,255,255,.85);
  font-weight:600;
  font-size:14px;
}

.tac-page{
  background:#f6f8fb;
  padding:30px 0 90px;
}

.tac-card{
  max-width: 860px;
  margin: -44px auto 0; /* floats into hero like screenshot */
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 55px rgba(15,23,42,.10);
  padding:28px 28px 34px;
}

/* Company info box */
.tac-info{
  background:#f7f8fb;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.06);
  padding:18px 18px;
  position:relative;
  overflow:hidden;
}
.tac-info:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:#123a5b; /* blue bar */
}
.tac-info h5{
  margin:0 0 10px;
  font-weight:1000;
  color:#123a5b;
  font-size:16px;
}
.tac-kv{
  margin:0;
  display:grid;
  gap:10px;
  font-size:14px;
  color:#334155;
}
.tac-kv div b{
  color:#111827;
  font-weight:900;
}

/* intro paragraph */
.tac-text{
  color:#475569;
  font-size:14px;
  line-height:1.8;
  margin-top:18px;
}

/* section titles */
.tac-h2{
  font-weight:1000;
  font-size:24px;
  margin:26px 0 8px;
  color:#0f172a;
}
.tac-line{
  height:1px;
  background:rgba(15,23,42,.10);
  margin:10px 0 18px;
}

/* included box (green bar) */
.tac-included{
  background:#f7f8fb;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.06);
  padding:18px 18px;
  position:relative;
  overflow:hidden;
}
.tac-included:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:#19a974; /* green bar */
}
.tac-included h6{
  margin:0 0 12px;
  font-weight:1000;
  color:#0f172a;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}
.tac-included h6 i{ color:#111827; }

.tac-bullets{
  margin:0;
  padding-left: 18px;
  color:#475569;
  font-size:13px;
  line-height:1.8;
}
.tac-bullets li{ margin-bottom:8px; }
.tac-bullets b{ color:#111827; font-weight:900; }

/* next section preview */
.tac-h3{
  font-weight:1000;
  font-size:22px;
  margin:28px 0 8px;
  color:#0f172a;
}

@media (max-width: 991.98px){
  .tac-card{ margin: -36px 12px 0; padding:20px; }
  .tac-h2{ font-size:22px; }
}

.bk-shell{ background:#fff; }
.bk-topbar{
  padding:22px 0 10px;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.bk-logo{
  font-weight:1000;
  letter-spacing:1px;
  color:#123a5b;
  font-size:22px;
  text-transform:uppercase;
}

.bk-page{
  padding:28px 0 70px;
  background:#fff;
}

/* left form */
.bk-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:1000;
  font-size:26px;
  margin:18px 0 4px;
  color:#0f172a;
}
.bk-title i{
  width:28px;height:28px;
  border-radius:50%;
  display:grid;place-items:center;
  border:2px solid rgba(15,23,42,.25);
  color:#0f172a;
  font-size:15px;
}
.bk-sub{
  color:#6b7280;
  font-size:13px;
  margin-bottom:18px;
}

.bk-fieldlabel{
  font-weight:800;
  font-size:13px;
  color:#111827;
  margin-bottom:8px;
}
.bk-fieldlabel small{
  color:#9aa5b1;
  font-weight:700;
  margin-left:6px;
}

.bk-input{
  height:54px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  font-weight:700;
  padding-left:44px !important;
}
.bk-textarea{
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  font-weight:600;
  min-height:110px;
  padding:14px 14px;
}

.bk-icowrap{
  position:relative;
}
.bk-icowrap .bk-ico{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:#94a3b8;
  font-size:18px;
  pointer-events:none;
}

.bk-time{
  height:54px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  font-weight:800;
  padding-left:44px !important;
}

.bk-note{
  margin-top:14px;
  color:#6b7280;
  font-size:12px;
  line-height:1.6;
}
.bk-note a{ color:#19a974; font-weight:900; text-decoration:underline; }

/* right summary */
.bk-summary{
  max-width: 520px;
  margin-left:auto;
}

.bk-card{
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  padding:16px;
  margin-bottom:14px;
  
}

.bk-veh{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.bk-veh h5{
  margin:0;
  font-weight:1000;
  font-size:18px;
  color:#111827;
}
.bk-veh small{
  display:block;
  margin-top:2px;
  color:#6b7280;
  font-weight:700;
}
.bk-veh img{
  width:130px;
  height:auto;
  object-fit:contain;
}

.bk-trip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 12px;
  /* background:#f7f9fc;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.06); */
}
.bk-trip-col{
  flex:1;
  text-align:left;
}
.bk-trip-mid{
  flex:0 0 auto;
  text-align:center;
  min-width:90px;
  color:#94a3b8;
  font-weight:900;
  font-size:12px;
}
.bk-trip-k{
  font-size:11px;
  font-weight:900;
  letter-spacing:.4px;
  color:#9aa5b1;
  text-transform:uppercase;
}
.bk-trip-date{
  font-weight:1000;
  color:#0f172a;
  font-size:14px;
  margin-top:2px;
}
.bk-trip-loc{
  color:#6b7280;
  font-weight:700;
  font-size:12px;
  margin-top:2px;
}

.bk-inc{
  background:#f1fbf6;
  border:1px solid rgba(25,169,116,.25);
  border-radius:12px;
  padding:14px 14px;
}
.bk-inc-head{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:1000;
  color:#0f172a;
  margin-bottom:10px;
}
.bk-inc-head i{
  color:#111827;
  font-size:18px;
}
.bk-inc ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  color:#334155;
  font-size:13px;
  font-weight:700;
}
.bk-inc li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.bk-inc li i{ color:#19a974; margin-top:2px; }

.bk-price{
  padding:10px 4px 2px;
}
.bk-line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  color:#475569;
  font-size:13px;
  font-weight:700;
}
.bk-line strong{ color:#0f172a; font-weight:900; }
.bk-line .neg{ color:#19a974; font-weight:1000; }

.bk-sep{
  height:1px;
  background:rgba(15,23,42,.10);
  margin:12px 0;
}

.bk-total{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  padding:10px 0 2px;
}
.bk-total span{
  font-weight:1000;
  color:#0f172a;
  font-size:14px;
}
.bk-total b{
  font-weight:1000;
  font-size:34px;
  color:#0f172a;
  letter-spacing:-.5px;
}

.bk-btn{
  width:100%;
  height:56px;
  border-radius:12px;
  border:none;
  background:#123a5b;
  color:#fff;
  font-weight:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  box-shadow:0 18px 45px rgba(18,58,91,.20);
  margin-top:12px;
}
.bk-under{
  text-align:center;
  font-size:12px;
  color:#6b7280;
  font-weight:700;
  margin-top:10px;
}
.bk-under i{ color:#19a974; }

@media (max-width: 991.98px){
  .bk-summary{ max-width:100%; margin-left:0; }
  .bk-topbar{ padding:14px 0 8px; }
}