/* ===================== VARIABLES ===================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root{
  --yellow:#e2bd43;
  --dark:#1C1C1C;
  --black-two:#222;
  --white:#fff;
  --gray:#6b6b6b;
  --border:#e5e7eb;
  --bg:#f7f8fc;
  --nav-height:76px;
  --section-py:70px;
  --transition:all 0.3s ease;
}

/* ===================== RESET & BASE ===================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Poppins',sans-serif;color:var(--dark);background:var(--white);-webkit-font-smoothing:antialiased; overflow-x:hidden;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;margin:0;padding:0;}
button{cursor:pointer;border:none;background:none;font-family:inherit;}
img{max-width:100%;height:auto;}

/* ===================== TYPOGRAPHY ===================== */
h1{font-size:clamp(1.8rem,4.5vw,3rem);font-weight:700;line-height:1.25;}
h2{font-size:clamp(1.4rem,3vw,2.2rem);font-weight:600;line-height:120%;}
h3{font-size:clamp(1.1rem,2.5vw,1.4rem);font-weight:600;line-height:1.4;}
h4{font-size:1rem;font-weight:600;}
h5{font-size:.95rem;font-weight:600;}
p{font-size:clamp(13.5px,2vw,16px);line-height:150%;color:var(--gray);margin-bottom:0;}

/* ===================== COMMON SECTION ===================== */
.section-light{background:var(--white);padding:var(--section-py) 0;}
.section-muted{background:var(--bg);padding:var(--section-py) 0;}

.sec-tagline{line-height: 120% ;display:inline-flex;align-items:center;gap:7px;font-size:14px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--dark);margin-bottom:10px;}
.sec-tagline svg{color:var(--yellow);}
.sec-title{margin-bottom:10px;}
.sec-intro{max-width:500px;margin:0 auto;}
.text-center .sec-intro{margin:0 auto;}

/* yellow accent */
.text-yellow{color:var(--yellow);}

/* ===================== BUTTONS ===================== */
.btn-wa{display:inline-flex;align-items:center;gap:8px;background:#25d366;color:#fff;font-size:13.5px;font-weight:700;padding:11px 22px;border-radius:9px;border:none;cursor:pointer;text-decoration:none;transition:opacity .2s,transform .15s;white-space:nowrap;}
.btn-wa:hover{opacity:.88;transform:translateY(-1px);color:#fff;}
.btn-outline-dark{display:inline-flex;align-items:center;gap:8px;background:transparent;color:var(--dark);font-size:13.5px;font-weight:600;padding:10px 22px;border-radius:9px;border:1.5px solid var(--border);text-decoration:none;transition:border-color .2s,color .2s;white-space:nowrap;}
.btn-outline-dark:hover{border-color:var(--yellow);color:var(--dark);}
.btn-yellow{display:inline-flex;align-items:center;gap:8px;background:var(--yellow);color:#000;font-size:clamp(14px, 1.5vw, 16px);font-weight:700;padding:11px 25px;border-radius:9px;border:none;cursor:pointer;text-decoration:none;transition:background .2s,transform .15s;white-space:nowrap;}
.btn-yellow:hover{background:#d4ad38;transform:translateY(-1px);color:#000;}
.btn-outline-white{display:inline-flex;align-items:center;gap:8px;background:transparent;color:#fff;font-size:13.5px;font-weight:600;padding:10px 22px;border-radius:9px;border:1.5px solid rgba(255,255,255,.25);text-decoration:none;transition:border-color .2s,color .2s;white-space:nowrap;}
.btn-outline-white:hover{border-color:var(--yellow);color:var(--yellow);}

/* ===================== NAVBAR ===================== */
.main-menu{position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--dark);border-bottom:1px solid rgba(255,255,255,.07);}
.main-menu__inner{display:flex;align-items:center;justify-content:space-between;height:var(--nav-height);gap:24px;}
.main-menu__logo img{height:auto;width:160px;object-fit:contain;}
.main-menu__list{display:flex;align-items:center;gap:4px;}
.main-menu__list li a{display:inline-flex;align-items:center;padding:7px 14px;font-size:14px;font-weight:500;color:rgba(255,255,255,.75);border-radius:7px;transition:var(--transition);}
.main-menu__list li a:hover,.main-menu__list li.current a{color:var(--yellow);}
.main-menu__cta{display:inline-flex;align-items:center;gap:7px;padding:9px 20px;background:var(--yellow);color:#000;font-size:13.5px;font-weight:700;border-radius:50px;transition:var(--transition);white-space:nowrap;}
.main-menu__cta:hover{background:#d4ad38;color:#000;}
.navbar-toggler{border:1px solid rgba(226,189,67,.4);padding:5px 9px;}
.navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28226,189,67,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");}

/* ===================== HERO ===================== */
.hero-banner{
  position:relative;
  min-height:clamp(500px,80vh,680px);
  background:var(--black-two);
  display:flex;align-items:center;justify-content:center;
  text-align:center;
  padding:calc(var(--nav-height) + 40px) 0 86px;
  overflow:hidden;
  height:auto;
}
.hero-banner::before{content:"";position:absolute;width:550px;height:550px;background:radial-gradient(circle,rgba(226,189,67,0.10),transparent 70%);top:-180px;left:-180px;filter:blur(80px);z-index:0;}
.hero-banner::after{content:"";position:absolute;width:450px;height:450px;background:radial-gradient(circle,rgba(226,189,67,0.07),transparent 70%);bottom:-150px;right:-150px;filter:blur(80px);z-index:0;}
.hero-banner>*{position:relative;z-index:2;}
.hero-banner h1{color:#fff;
   /* max-width: 820px; */
   margin: 0 auto;}
.hero-banner h1 span{color:var(--yellow); }
.hero-sub{font-size:clamp(13px,2vw,16px);color:rgba(255,255,255,.55);max-width:560px;margin:0 auto;}

/* pills */
.hero-pills{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;}
.hero-pill{    line-height: 16px;display:inline-flex;align-items:center;gap:7px;font-size:14px;font-weight:500;color:rgba(255,255,255,.82);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.10);border-radius:50px;padding:7px 15px;transition:border-color .2s,background .2s;}
.hero-pill:hover{border-color:rgba(226,189,67,.35);background:rgba(226,189,67,.07);}
.pill-icon{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;background:rgba(226,189,67,.15);flex-shrink:0;}

/* form card */
.hero-form-card{background:rgba(255,255,255,.06);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border:1px solid rgba(255,255,255,.10);border-radius:16px;padding:22px 24px;}
.hero-field ,.hero-banner__field{position:relative;}
.hero-field>svg {position:absolute;left:14px;top:50%;transform:translateY(-50%);color:rgba(255,255,255,.35);pointer-events:none;z-index:1;}
.hero-field input ,.hero-banner__field  input{width:100%;padding:11px 12px 11px 40px;border:1.5px solid rgba(226,189,67,.22);border-radius:9px;font-size:13.5px;color:#fff;background:rgba(255,255,255,.05);outline:none;transition:border-color .25s,background .25s,box-shadow .25s;}
.hero-field input::placeholder ,.hero-banner__field::placeholder{color:rgba(255,255,255,.32);}
.hero-field input:focus ,.hero-banner__field input:focus{border-color:rgba(226,189,67,.75);background:rgba(255,255,255,.08);box-shadow:0 0 0 3px rgba(226,189,67,.08);}
.hero-field input[type="date"] ,.hero-banner__field input[type="date"]{color:rgba(255,255,255,.6);}
.hero-field input[type="date"]::-webkit-calendar-picker-indicator ,.hero-banner__field input[type="date"]::-webkit-calendar-picker-indicator{opacity:0;position:absolute;right:0;width:100%;height:100%;cursor:pointer;}
/* custom select */
.hero-banner__field>svg {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    pointer-events: none;
    flex-shrink: 0;
    top: 14px;
}
.hero-banner__field--date input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
 color:rgba(255,255,255,.32);
  text-align: left;
}

.hero-banner__field--date input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

.cs-wrap{position:relative;}
.cs-wrap>svg{position:absolute;left:14px;top:50%;transform:translateY(-50%);color:rgba(255,255,255,.35);pointer-events:none;z-index:2;}
.cs-trigger{display:flex;align-items:center;justify-content:space-between;padding:11px 12px 11px 40px;border:1.5px solid rgba(226,189,67,.22);border-radius:9px;font-size:13.5px;color:rgba(255,255,255,.35);background:rgba(255,255,255,.05);cursor:pointer;transition:border-color .25s,background .25s;user-select:none;}
.cs-wrap.open .cs-trigger{border-color:rgba(226,189,67,.75);background:rgba(255,255,255,.08);}
.cs-arrow{transition:transform .22s;color:rgba(255,255,255,.35);}
.cs-wrap.open .cs-arrow{transform:rotate(180deg);color:rgba(226,189,67,.8);}
.cs-dropdown{display:none;position:absolute;top:calc(100% + 6px);left:0;right:0;background:#2a2a2a;border:1px solid rgba(255,255,255,.10);border-radius:11px;overflow:hidden;z-index:9999;box-shadow:0 16px 40px rgba(0,0,0,.5);}
.cs-wrap.open .cs-dropdown{display:block;}
.cs-opt{display:flex;align-items:center;gap:12px;padding:10px 16px;cursor:pointer;border-bottom:1px solid rgba(255,255,255,.06);transition:background .18s;}
.cs-opt:last-child{border-bottom:none;}
.cs-opt:hover{background:rgba(226,189,67,.08);}
.cs-opt.sel{background:rgba(226,189,67,.10);}
.cs-opt-icon{font-size:18px;flex-shrink:0;}
.cs-opt-label{display:flex;flex-direction:column;gap:1px;}
.cs-opt-label strong{font-size:13px;font-weight:600;color:#fff;}
.cs-opt-label small{font-size:11px;color:rgba(255,255,255,.4);}
.hero-promo{font-size:16px;font-weight:400;color: rgba(255, 255, 255, 9);;}

/* road */
.hero-road{position:absolute;bottom:-2px;left:0;width:100%;height:98px;overflow:hidden;z-index:2;}
.hero-car{position:absolute;bottom:0;left:-160px;width:200px;height:auto;object-fit:contain;animation:drive 18s linear infinite;}
@keyframes drive{0%{left:-160px;}100%{left:100%;}}

/* ===================== ROUTES ===================== */
.routes-grid{  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;}
.route-card{flex: 0 1 400px;  min-width: 400px;background:var(--white);border:1px solid var(--border);border-left:3px solid var(--yellow);border-radius:9px;display:flex;align-items:stretch;overflow:hidden;transition:transform .22s,box-shadow .22s;}
.route-card:hover{transform:translateY(-2px);box-shadow:0 8px 22px rgba(0,0,0,.07);}
.route-cities{display:flex;align-items:center;gap:6px;flex:1;min-width:0;padding:12px 14px;}
.city-name{font-size:clamp(14px, 1.5vw, 16px);font-weight:600;color:var(--dark);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.route-sep{display:flex;align-items:center;gap:3px;flex-shrink:0;}
/* .sep-line{width:16px;height:1.5px;background:repeating-linear-gradient(to right,var(--border) 0,var(--border) 3px,transparent 3px,transparent 6px);}
.sep-arrow{color:#bbb;} */
.route-sep::after
 {
    content: '→';
    font-size: 13px;
    color: #bbb;
    font-weight: 400;
}
.get-fare-btn{display:inline-flex;align-items:center;gap:5px;flex-shrink:0;font-size:clamp(14px, 1.5vw, 16px);font-weight:600;color:#000;background:var(--yellow);border:none;border-left:1px solid rgba(226,189,67,.3);border-radius:0;padding:0 16px;cursor:pointer;white-space:nowrap;transition:background .2s;}
.get-fare-btn:hover{background:#d4ad38;}
.get-fare-btn svg{    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
    transition: transform .25s;}

/* ===================== WHY US ===================== */
.why-us{padding:var(--section-py) 0 calc(var(--section-py) + 40px);background:var(--bg);}
.why-us__body{display:grid;grid-template-columns:1fr 80px 1fr;align-items:start;}
.why-us__left{position:sticky;top:calc(var(--nav-height) + 20px);padding-right:40px;}
.why-us__img-wrap{border-radius:18px;overflow:hidden;position:relative;aspect-ratio:4/3;background:var(--yellow);box-shadow:0 16px 48px rgba(226,189,67,.25);}
.why-us__panel{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;padding:28px;opacity:0;transform:translateY(14px);transition:opacity .45s ease,transform .45s ease;pointer-events:none;}
.why-us__panel.visible{opacity:1;transform:translateY(0);pointer-events:auto;}
.why-us__panel .p-icon{width:80px;height:80px;border-radius:22px;background:rgba(0,0,0,.1);display:flex;align-items:center;justify-content:center;color:rgba(0,0,0,.65);}
.why-us__panel .p-icon svg{width:38px;height:38px;stroke-width:1.4;fill:none;stroke:currentColor;}
.why-us__panel h4{font-size:16px;font-weight:700;color:rgba(0,0,0,.75);text-align:center;}
.why-us__panel p{font-size:12.5px;color:rgba(0,0,0,.5);text-align:center;line-height:1.65;}
.why-us__mid{position:relative;align-self:stretch;}
.why-us__mid::before{content:'';position:absolute;left:50%;transform:translateX(-50%);width:2px;top:var(--base-top,0px);height:var(--base-h,0px);background:#d1d5db;border-radius:2px;z-index:0;}
.why-us__mid::after{content:'';position:absolute;left:50%;transform:translateX(-50%);width:2px;top:var(--line-top,0px);height:var(--line-h,0px);background:var(--yellow);border-radius:2px;z-index:1;transition:height .18s linear;}
.why-us__dot{position:absolute;left:50%;transform:translateX(-50%);width:44px;height:44px;border-radius:50%;background:var(--white);border:2px solid #d1d5db;display:flex;align-items:center;justify-content:center;color:#9ca3af;z-index:3;transition:background .35s,border-color .35s,color .35s,box-shadow .35s;}
.why-us__dot svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;}
.why-us__dot.passed{background:var(--yellow);border-color:var(--yellow);color:var(--dark);box-shadow:0 2px 10px rgba(226,189,67,.3);}
.why-us__dot.active{background:var(--yellow);border-color:var(--yellow);color:var(--dark);box-shadow:0 4px 20px rgba(226,189,67,.55);}
.why-us__cards{padding-left:40px;display:flex;flex-direction:column;gap:22px;padding-bottom:60px;}
.why-us__card{background:var(--white);border-radius:14px;padding:24px 26px;border:1.5px solid var(--border);transition:border-color .35s,box-shadow .35s,transform .35s;}
.why-us__card.passed{border-left:3px solid var(--yellow);}
.why-us__card.active{border-color:var(--yellow);box-shadow:0 8px 32px rgba(226,189,67,.18);transform:translateX(6px);}
.why-us__card-step{font-size:10.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gray);margin-bottom:5px;transition:color .3s;}
.why-us__card.active .why-us__card-step,.why-us__card.passed .why-us__card-step{color:var(--yellow);}
.why-us__card h3{font-size:clamp(16px, 1.5vw, 18px);font-weight:600;color:var(--dark);margin-bottom:6px;}
.why-us__card p{font-size:clamp(14px, 1.2vw, 16px);}
@media(max-width:768px){.why-us__body{grid-template-columns:1fr;}.why-us__left{position:relative;top:auto;padding-right:0;margin-bottom:28px;}.why-us__mid{display:none;}.why-us__cards{padding-left:0;padding-bottom:0;}.why-us__card.active{transform:none;}}

/* ===================== SERVICES ===================== */
.svc-card{background:var(--white);border:1px solid var(--border);border-radius:16px;padding:30px 26px 26px;position:relative;overflow:hidden;transition:transform .3s,box-shadow .3s,border-color .3s;cursor:default;}
.svc-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:var(--yellow);transform:scaleX(0);transform-origin:left;transition:transform .35s;}
.svc-card:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(0,0,0,.09);border-color:rgba(226,189,67,.3);}
.svc-card:hover::after{transform:scaleX(1);}
.svc-num{position:absolute;top:20px;right:22px;font-size:clamp(2.5rem,5vw,3.5rem);font-weight:700;color:rgba(0,0,0,.04);line-height:1;user-select:none;transition:color .3s;}
.svc-card:hover .svc-num{color:rgba(226,189,67,.12);}
.svc-icon{width:50px;height:50px;border-radius:13px;background:rgba(226,189,67,.10);display:flex;align-items:center;justify-content:center;margin-bottom:18px;transition:background .3s,transform .3s;}
.svc-icon svg{width:24px;height:24px;stroke:var(--yellow);stroke-width:1.8;fill:none;}
.svc-card:hover .svc-icon{background:var(--yellow);transform:scale(1.08) rotate(3deg);}
.svc-card:hover .svc-icon svg{stroke:#000;}
.svc-card h3{font-size:clamp(16px, 1.5vw, 18px);font-weight:600;color:var(--dark);margin-bottom:9px;}
.svc-card p{font-size:clamp(14px, 1.2vw, 16px);margin-bottom:20px;}
.svc-link{display:inline-flex;align-items:center;gap:6px;font-size:clamp(14px, 1.2vw, 16px);font-weight:700;color:var(--dark);text-transform:uppercase;letter-spacing:.07em;transition:gap .25s,color .25s;}
.svc-link svg{width:13px;height:13px;stroke:currentColor;stroke-width:2.5;fill:none;flex-shrink:0;transition:transform .25s;}
.svc-card:hover .svc-link{color:var(--yellow);gap:9px;}
.svc-card:hover .svc-link svg{transform:translateX(3px);}

/* ===================== FLEET ===================== */
.fleet__primary{display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;}
.fleet-card{background:var(--white);border:1px solid var(--border);border-radius:12px;overflow:hidden;display:flex;grid-template-columns:260px 1fr auto;align-items:center;transition:box-shadow .28s,transform .28s,border-color .28s;}
.fleet-card:hover{box-shadow:0 12px 36px rgba(0,0,0,.08);transform:translateY(-2px);border-color:rgba(226,189,67,.35);}
.fleet-card__img{height:100%;background:#f0f0ee;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.fleet-card__img img{width:100%;height:100%;object-fit:contain;transition:transform .35s;}
/* .fleet-card:hover .fleet-card__img img{transform:scale(1.05);} */
.img-ph{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;background:#f0f0ee;}
.img-ph svg{opacity:.18;}
.img-ph span{font-size:11px;color:#bbb;}
.fleet-card__badge{position:absolute;top:10px;left:10px;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;background:var(--yellow);color:#000;padding:3px 10px;border-radius:50px;}
.fleet-card__body{padding:20px 24px; width:50%;}
.fleet-card__body h3{font-size:clamp(16px, 1.5vw, 18px);font-weight:700;color:var(--dark);margin-bottom:8px;}
.fleet-card__best{display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:600;color:var(--yellow);margin-bottom:6px;}
.fleet-card__best::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--yellow);flex-shrink:0;}
.fleet-card__body p{font-size:clamp(14px, 1.5vw, 16px);}
.fleet-card__action{padding:20px 24px 20px 0;display:flex;flex-direction:column;align-items:flex-end;gap:8px;}
.fleet-card__pax{display:flex;align-items:center;gap:5px;font-size:14px;color:#bbb;font-weight:500;white-space:nowrap;}
.fleet-card__pax svg{opacity:.5;flex-shrink:0;}
.fleet__sec-label{margin-top:20px;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(0,0,0,.22);margin-bottom:12px;display:flex;align-items:center;gap:10px;}
.fleet__sec-label::after{content:'';flex:1;height:1px;background:var(--border);}
.fleet__secondary{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:10px;}
.fleet-sm{background:var(--white);border:1px solid var(--border);border-radius:10px;padding:13px 15px;display:flex;align-items:center;gap:11px;transition:border-color .22s,background .22s;}
.fleet-sm:hover{border-color:rgba(226,189,67,.3);background:#fdfcf7;}
/* .fleet-sm__icon{width:36px;height:36px;border-radius:9px;background:rgba(226,189,67,.08);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.fleet-sm__icon svg{width:17px;height:17px;stroke:rgba(226,189,67,.7);stroke-width:1.8;fill:none;} */
.fleet-sm h4{font-size:13px;margin-bottom:1px;color:var(--dark);}
.fleet-card__body .btn-yellow{margin-top:16px;}
.fleet-sm small{font-size:11px;color:var(--gray);}
.fleet-card__pax {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0ede4;
  color: #5f5e5a;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
}
@media(max-width:768px){.fleet-card{grid-template-columns:1fr;}.fleet-card__img{height:170px;width:100%;}.fleet-card__action{flex-direction:row;justify-content:space-between;align-items:center;padding:0 18px 18px;}}

/* ===================== HOW IT WORKS ===================== */
.steps-wrap{display:flex;align-items:stretch;width:100%;}
.step-card{background:var(--white);border:1px solid var(--border);border-radius:13px;padding:26px 22px;flex:1;min-width:0;transition:box-shadow .28s,transform .28s,border-color .28s;}
.step-card:hover{box-shadow:0 14px 40px rgba(0,0,0,.08);transform:translateY(-4px);border-color:rgba(226,189,67,.35);}
.step-badge{width:38px;height:38px;border-radius:50%;background:var(--yellow);display:flex;align-items:center;justify-content:center;font-size:15px;font-weight:700;color:#000;margin-bottom:16px;}
.step-card h3{font-size:clamp(16px, 1.5vw, 18px);font-weight:600;color:var(--dark);margin-bottom:8px;line-height:1.35;}
.step-card p{font-size:clamp(14px, 1.2vw, 16px);}
.step-connector{display:flex;align-items:center;justify-content:center;padding-top:38px;width:36px;flex-shrink:0;}
.step-connector-line{width:100%;height:2px;background:repeating-linear-gradient(to right,var(--yellow) 0,var(--yellow) 5px,transparent 5px,transparent 12px);opacity:.5;}

/* ===================== TRUST ===================== */
.trust__img-wrap{position:relative;border-radius:16px;overflow:hidden;aspect-ratio:4/3;background:#f3f4f6;}
.trust__img-wrap img{width:100%;height:100%;object-fit:cover;display:block;}
.trust__img-wrap::after{content:'';position:absolute;bottom:0;left:0;right:0;height:4px;background:var(--yellow);}
.trust__img-badge{position:absolute;bottom:18px;left:18px;background:var(--white);border-radius:10px;padding:11px 15px;display:flex;align-items:center;gap:10px;box-shadow:0 4px 20px rgba(0,0,0,.10);}
.trust__img-badge-icon{width:34px;height:34px;border-radius:8px;background:rgba(226,189,67,.12);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.trust__img-badge-icon svg{width:16px;height:16px;stroke:var(--yellow);stroke-width:2;fill:none;}
.trust__img-badge-num{font-size:15px;font-weight:700;color:var(--dark);line-height:1;}
.trust__img-badge-label{font-size:10.5px;color:var(--gray);margin-top:1px;}

/* ===================== REVIEWS ===================== */
.rev-card{background:var(--white);border:1px solid var(--border);border-radius:12px;padding:28px 22px 0;display:flex;flex-direction:column;align-items:center;position:relative;overflow:visible;}
.rev-card.swiper-slide-active,.rev-card.swiper-slide-active-sim{box-shadow:0 12px 40px rgba(0,0,0,.10);border-color:#ddd;}
.rev-num{width:30px;height:30px;border-radius:50%;background:var(--yellow);display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;color:#000;box-shadow:0 2px 8px rgba(226,189,67,.35);margin-bottom:16px;}
.rev-text{font-size:13px;color:#555;line-height:1.8;margin-bottom:20px;text-align:center;font-style:italic;}
.rev-text::before{content:'\201C';}
.rev-text::after{content:'\201D';}
.rev-sep{width:100%;border:none;border-top:1.5px dashed rgba(226,189,67,.4);margin:0;}
.rev-footer{width:calc(100% + 2px);margin-left:-1px;display:flex;flex-direction:column;align-items:center;padding:0 16px 24px;text-align:center;gap:6px;position:relative;}
.rev-avatar-wrap{margin-top:-34px;position:relative;z-index:2;}
.rev-avatar{width:68px;height:68px;border-radius:50%;background:#e2e2e2;border:4px solid var(--white);box-shadow:0 4px 16px rgba(0,0,0,.12);display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:700;color:var(--dark);overflow:hidden;}
.rev-name{font-size:13.5px;font-weight:700;color:var(--dark);margin-top:5px;}
.rev-role{font-size:11px;color:var(--yellow);font-weight:600;}
.swiper-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:10;width:36px;height:36px;border-radius:50%;border:1.5px solid var(--border);background:var(--white);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s,border-color .2s;box-shadow:0 2px 8px rgba(0,0,0,.07);}
/* .swiper-btn:hover{background:var(--yellow);border-color:var(--yellow);}
.swiper-btn:hover svg{stroke:#000;} */

.swiper-btn-prev{left:-16px;}
.swiper-btn-next{right:-16px;}
.swiper-pagination-bullet{background:var(--border);opacity:1;}
.swiper-pagination-bullet-active{background:var(--yellow);width:22px;border-radius:50px;}

/* ===================== FAQ ===================== */
.faq-item{background:var(--white);border:1px solid var(--border);border-radius:11px;overflow:hidden;transition:border-color .25s,box-shadow .25s;}
.faq-item.open{border-color:rgba(226,189,67,.4);box-shadow:0 6px 24px rgba(0,0,0,.06);}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:17px 20px;cursor:pointer;user-select:none;}
.faq-q-text{font-size:clamp(14px, 1.2vw, 16px);font-weight:600;color:var(--dark);line-height:150%;flex:1;}
.faq-icon{width:30px;height:30px;border-radius:50%;background:var(--bg);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .25s,transform .3s;}
.faq-item.open .faq-icon{background:var(--yellow);transform:rotate(45deg);}
.faq-icon svg{width:13px;height:13px;stroke:var(--gray);stroke-width:2.5;fill:none;transition:stroke .25s;}
.faq-item.open .faq-icon svg{stroke:#000;}
.faq-a{max-height:0;overflow:hidden;transition:max-height .38s ease;}
.faq-item.open .faq-a{max-height:200px;}
.faq-a-inner{padding:0 20px 17px;font-size:clamp(14px, 1.2vw, 16px);color:var(--gray);line-height:120%;border-top:1px solid #f0f0f0;padding-top:13px;}
.faq-two-col{ display: grid;grid-template-columns: 1fr 1fr;gap: 12px;align-items: start;}

/* ===================== FINAL CTA ===================== */
.final-cta{position:relative;width:100%;min-height:400px;display:flex;align-items:center;justify-content:center;overflow:hidden;padding:var(--section-py) 0;}
.cta-bg{position:absolute;inset:0;background:#e8e8e4;z-index:0;}
.cta-bg svg{width:100%;height:100%;opacity:.5;}
.cta-overlay{position:absolute;inset:0;background: rgba(0, 0, 0, 0.25);;z-index:1;}
.cta-card{margin:16px;position:relative;z-index:2;background:rgba(255,255,255,.97);border-radius:12px;padding:30px;max-width:580px;width:100%;text-align:center;box-shadow:0 4px 40px rgba(0,0,0,.10);}
.cta-card h2{margin-bottom:12px;}
.cta-card p{margin-bottom:28px;}
.btn-cta-wa{display:inline-flex;align-items:center;gap:8px;background:var(--yellow);color:var(--dark);font-size:12.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:12px 26px;border-radius:3px;border:none;cursor:pointer;text-decoration:none;transition:background .2s,transform .15s;white-space:nowrap;}
.btn-cta-wa:hover{background:#d4ad38;transform:translateY(-1px);color:var(--dark);}
.btn-cta-call{display:inline-flex;align-items:center;gap:8px;background:transparent;color:var(--dark);font-size:12.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:11px 26px;border-radius:3px;border:1.5px solid rgba(0,0,0,.18);text-decoration:none;cursor:pointer;transition:border-color .2s,transform .15s;white-space:nowrap;}
.btn-cta-call:hover{border-color:var(--dark);transform:translateY(-1px);}

/* ===================== FOOTER ===================== */
.footer{background:var(--dark);padding:clamp(40px,5vw,64px) 0 0;}
.footer__brand p{font-size:13px;color:rgba(255,255,255,.4);line-height:1.8;margin-bottom:20px;}
.footer__logo{height:auto;width:140px;object-fit:contain;display:block;margin-bottom:16px;}
.footer__social{display:flex;gap:8px;}
.footer__social a{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,.06);color:rgba(255,255,255,.5);border:1px solid rgba(255,255,255,.08);transition:var(--transition);}
.footer__social a:hover{background:var(--yellow);color:#000;border-color:var(--yellow);}
.footer__col h3{font-size:12.5px;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px;}
.footer__col ul{display:flex;flex-direction:column;gap:8px;}
.footer__col ul li a,.footer__col ul li span{font-size:13px;color:rgba(255,255,255,.4);transition:color .3s;}
.footer__col ul li a:hover{color:var(--yellow);}
.footer__contact li{display:flex;align-items:center;gap:8px;}
.footer__contact li svg{color:var(--yellow);flex-shrink:0;}
.footer__bottom{padding:16px 0;text-align:center;border-top:1px solid rgba(255,255,255,.07);margin-top:40px;}
.footer__bottom p{font-size:12px;color:rgba(255,255,255,.28);margin:0;}

/* ===================== FLOATING BTNS ===================== */
.floating-contact{position:fixed;right:20px;bottom:20px;display:flex;flex-direction:column;gap:10px;z-index:9999;}
.floating-contact .fb-btn{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(0,0,0,.2);transition:transform .2s;}
.floating-contact .fb-btn:hover{transform:scale(1.1);}
.fb-call{background:var(--yellow);}
.fb-wa{background:#25d366;}

.reviews-section {
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0;
}

.rev-card {
  background: #f2f4f9;
  border: 1.5px solid #e4e6eb;
  border-radius: 16px;
  padding: 26px;
  height: 100%;
}

.stars {
  color: var(--yellow);
  font-size: 0.83rem;
  margin-bottom: 10px;
}

.rev-text {
  font-size: 0.86rem;
  color: #4f545a;
  line-height: 1.7;
  margin-bottom: 18px;
}

.revr {
  display: flex;
  align-items: center;
  gap: 11px;
}

.revr-av {
  width: 42px;
  height: 42px;
  background: var(--black-two);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--yellow);
  font-size: 0.95rem;
}

.revr-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.revr-loc {
  font-size: 0.73rem;
  color: var(--text-sm);
}

.swiper-outer {
  position: relative;
  padding: 0 60px;
}

.testimonialSwiper {
  padding-bottom: 56px !important;
}

.swiper-slide {
  height: auto;
}

.swiper-slide .rev-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 28px));
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: #fff;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.swiper-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.swiper-btn-prev {
  left: 0;
}

.swiper-btn-next {
  right: 0;
}

.swiper-btn:hover {
  background: #1a1a2e;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(calc(-50% - 28px)) scale(1.08);
}

.swiper-btn:active {
  transform: translateY(calc(-50% - 28px)) scale(0.96);
}

.swiper-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.swiper-custom-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.swiper-custom-pagination .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c9c9d6;
  cursor: pointer;
  transition:
    width 0.3s ease,
    background 0.3s ease;
  flex-shrink: 0;
}

.swiper-custom-pagination .dot.active {
  width: 28px;
  background: #1a1a2e;
}

.swiper-custom-pagination {
  text-align: center;
  margin-top: 24px;
}

.swiper-custom-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--border, #e5e7eb);
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
  border: none;
}

.swiper-custom-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: var(--primary, #1a1a2e);
}
.cta-bg{
  position: absolute;
    inset: 0;
    background: url(../image/new_cta_section.webp) center / cover no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.hero-form-card .btn-wa{
width: 100%;
    justify-content: center;
    text-align: center;
}
.why-us__img-wraps img{
    border-radius: 20px;
}
.hero-banner__form-fields .form-row {
    display: flex;
    gap: 12px;
}
.hero-banner__form-fields .form-row .hero-banner__field {
    flex: 1;
    min-width: 0;
}
.hero-banner__form-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.error {
  border: 2px solid red !important;
  outline: none;
}

.error-text {
  color: red;
  font-size: 0.85rem;
  margin-top: 4px;
  text-align: start;
}
/* navbar */
.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--grey1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.main-menu.sticky {
  box-shadow: var(--shadow-md);
  background: rgba(37, 36, 36, 0.98);
  backdrop-filter: blur(12px);
}

.main-menu__wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 32px;
}

.main-menu__left {
  flex-shrink: 0;
}

.main-menu__logo a {
  display: flex;
  align-items: center;
}

/* .main-menu__logo img {
  height: auto;
  width: 209px;
  object-fit: contain;
} */

.main-menu__middle-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-menu__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-menu__list>li>a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.main-menu__list>li>a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-menu__list>li>a:hover,
.main-menu__list>li.current>a {
  color: var(--yellow);
}

.main-menu__list>li>a:hover::after,
.main-menu__list>li.current>a::after {
  transform: scaleX(1);
}

.main-menu__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.main-menu__book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--yellow);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(226, 189, 67, 0.4);
  white-space: nowrap;
}

.main-menu__book-btn:hover {
  background: var(--black);
  box-shadow: 0 6px 20px rgba(226, 189, 67, 0.5);
  color: var(--yellow);
}

.main-menu__book-btn:hover img {
  filter: brightness(0) saturate(100%) invert(89%) sepia(61%) saturate(1060%) hue-rotate(321deg) brightness(93%) contrast(90%);
}
.select-wrap {
  position: relative;
  width: 50%;
}

.select-icon {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    pointer-events: none;
    flex-shrink: 0;
    top: 14px;
}

.vehicle-select {
  -webkit-appearance: none;  
  appearance: none;
  width: 100%;
 text-indent: 28px;        /* ← replaces padding-left on iOS */
  padding: 8px 12px;  
  border: 1.5px solid rgba(226, 189, 67, .22);
  border-radius: 9px;
  font-size: 13.5px;
  color: #fff;
  background: #3b3b3b;
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  font-size: 16px;
}



/* Focus effect */
.vehicle-select:focus {
  outline: none;
  border-color: #E2BD43;
  box-shadow: 0 0 0 3px rgba(226,189,67,0.2);
}
.vehicle-select option {
    color: #000;              
  background: #fff;
}
/* .vehicle-select {
  color: #fff;              
  background: #3b3b3b;     
} */
.hero-banner__form-btn-wrap{
    width:50%;
}

.footer-two {
  background: var(--black-two);
  padding: clamp(40px, 5vw, 50px) 0 0;
}

.footer-two__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 48px);
  padding-bottom: clamp(30px, 5vw, 40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-two__logo {
  height: auto;
  width: 150px;
  object-fit: contain;
  margin-bottom: clamp(12px, 2vw, 18px);
  display: block;
}

.footer-two__brand p {
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.footer-two__social {
  display: flex;
  gap: clamp(6px, 1vw, 10px);
}

.footer-two__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 3vw, 38px);
  height: clamp(28px, 3vw, 38px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.footer-two__social a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.footer-two__col h3 {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.footer-two__col ul {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 10px);
  padding: 0;
  margin: 0;
}

.footer-two__col ul li a,
.footer-two__col ul li span {
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s;
}

.footer-two__col ul li a:hover {
  color: var(--yellow);
}

.footer-two__contact li {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
}

.footer-two__contact li svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.footer-two__bottom {
  padding: clamp(12px, 2vw, 20px) 0;
  text-align: center;
}

.footer-two__bottom p {
  font-size: clamp(11px, 1vw, 13px);
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}
.faq-two-col .faq-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}
.hero_banner__card-title{
  color: #fff;
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 600;
}
.reponsive_form_button{
  justify-content: center;
}
.Reponsive_hero_pills{
  display:none;
}
.load-more-btn {
  display: none;
  
}
.route-card {
    display: flex;
  }