:root{
  --navy:#0e314f;
  --gold:#caa85d;
  --white:#ffffff;
  --text:#0b1f33;
  --muted:#5f6b7a;
  --shadow:0 18px 60px rgba(14,49,79,.18);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;color:var(--text);background:#0b1220}
a{text-decoration:none;color:inherit}

.container{width:min(1180px, 92%);margin:0 auto}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,18,32,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.12);

  height:95px;
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  height:95px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--white);
  min-width:0;
  flex-shrink:0;
}

.brand__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--gold);
  display:inline-block;
  box-shadow:0 0 0 6px rgba(202,168,93,.12);
}

.brand__text{
  font-weight:900;
  letter-spacing:.3px;
  font-size:19px;
  line-height:1;
}

.brand__sub{
  opacity:.88;
  font-weight:700;
  font-size:15px;
  line-height:1;
}

.brand__logo{
  height:110px;
  width:auto;
  display:block;
  margin-top:6px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex:1 1 auto;
  min-width:0;
}

.nav__link{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  color:rgba(255,255,255,.88);
  font-weight:700;
  font-size:14px;
  opacity:.95;
  transition:background .2s ease, color .2s ease, opacity .2s ease;
}

.nav__link:hover{
  opacity:1;
  background:rgba(255,255,255,.06);
}

.lang{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  flex-shrink:0;
  max-width:260px;
}

.lang__item{
  width:36px;
  height:28px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  transition:transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.lang__item:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
}

.lang__item.is-active{
  border-color:rgba(202,168,93,.9);
  box-shadow:0 0 0 3px rgba(202,168,93,.12);
  background:rgba(202,168,93,.12);
}

.lang__flag{
  width:20px;
  height:20px;
  display:block;
  object-fit:contain;
}

/* Hero */
.hero{
  position:relative;
  min-height:calc(100vh - 64px);
  display:flex;
  align-items:center;
  background:
    linear-gradient(180deg, rgba(11,18,32,.55), rgba(11,18,32,.92)),
    url("/avelion/assets/images/hero-antalya.png") center/cover no-repeat;
}

.hero__overlay{display:none}

.hero__content{padding:56px 0}

.hero__title{
  margin:0 0 10px;
  font-size:44px;
  line-height:1.08;
  color:var(--white);
  letter-spacing:.2px;
}

.hero__sub{
  margin:0 0 22px;
  color:rgba(255,255,255,.84);
  font-size:16px;
  max-width:720px;
}

/* Search card */
.searchCard{
  border-radius:var(--radius);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
  padding:16px;
  max-width:980px;
}

.searchCard__row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}

@media (min-width: 901px){
  .searchCard__row{
    grid-template-columns:repeat(4, 1fr);
  }
}

.field label{
  display:block;
  margin:0 0 8px;
  font-size:13px;
  color:rgba(255,255,255,.82);
  font-weight:700;
}

.input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(11,18,32,.55);
  color:var(--white);
  outline:none;
}

.input:focus{
  border-color:rgba(202,168,93,.9);
  box-shadow:0 0 0 4px rgba(202,168,93,.14);
}

.field--btn{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.btn{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:0;
  cursor:pointer;
  font-weight:800;
  color:#0b1220;
  background:linear-gradient(135deg, var(--gold), #ffd9a0);
}

.btn:hover{filter:brightness(1.02)}

.searchCard__note{
  margin-top:12px;
  font-size:13px;
  color:rgba(255,255,255,.70);
}

@media (max-width: 900px){
  .hero__title{font-size:34px}
  .searchCard__row{grid-template-columns:1fr 1fr}
}

@media (max-width: 520px){
  .searchCard__row{grid-template-columns:1fr}
}

/* Input icon */
.inputWrap{position:relative}

.input--icon{padding-left:44px}

.inputWrap--calendar:before{
  content:"";
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  opacity:.85;
  background-repeat:no-repeat;
  background-size:18px 18px;
  background-image:url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">\
<path d="M7 2v3M17 2v3" stroke="white" stroke-width="2" stroke-linecap="round"/>\
<path d="M3.5 9h17" stroke="white" stroke-width="2" stroke-linecap="round"/>\
<path d="M6 5h12a2.5 2.5 0 0 1 2.5 2.5v12A2.5 2.5 0 0 1 18 22H6A2.5 2.5 0 0 1 3.5 19.5v-12A2.5 2.5 0 0 1 6 5Z" stroke="white" stroke-width="2" stroke-linejoin="round"/>\
</svg>');
}

/* Stepper */
.stepper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(11,18,32,.55);
}

.stepper__btn{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  font-weight:900;
  font-size:18px;
  cursor:pointer;
}

.stepper__btn:hover{filter:brightness(1.05)}
.stepper__btn:active{transform:translateY(1px)}

.stepper__val{
  flex:1;
  text-align:center;
  color:var(--white);
  font-weight:900;
  letter-spacing:.2px;
  font-size:16px;
}

/* RTL */
html[dir="rtl"] .header__inner{flex-direction:row-reverse}
html[dir="rtl"] .nav{flex-direction:row-reverse}
html[dir="rtl"] .lang{flex-direction:row-reverse}

html[dir="rtl"] .input--icon{padding-left:12px;padding-right:44px}
html[dir="rtl"] .inputWrap--calendar:before{left:auto;right:14px}

html[dir="rtl"] .searchCard__note{text-align:right}
html[dir="rtl"] .hero__content{text-align:right}

/* Trip type */
.tripType{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.tripType__item{
  position:relative;
  display:inline-flex;
  align-items:center;
  cursor:pointer;
}

.tripType__item input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.tripType__item span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.88);
  font-weight:700;
  transition:.2s ease;
}

.tripType__item input:checked + span{
  border-color:rgba(202,168,93,.95);
  background:rgba(202,168,93,.18);
  color:#fff;
  box-shadow:0 0 0 3px rgba(202,168,93,.10);
}

/* Top row */
.searchCard__row--top{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}

/* Bottom row */
.searchCard__bottomRow{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 260px;
  gap:12px;
  margin-top:12px;
  align-items:end;
}

.field--passenger{
  min-width:0;
}

.field--btnBottom .btn{
  width:100%;
  min-height:70px;
}

@media (max-width: 1100px){
  .searchCard__bottomRow{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 900px){
  .searchCard__row--top{
    grid-template-columns:1fr 1fr;
  }

  .searchCard__bottomRow{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 560px){
  .searchCard__row--top,
  .searchCard__bottomRow{
    grid-template-columns:1fr;
  }
}

html[dir="rtl"] .tripType{
  flex-direction:row-reverse;
}

.passengerLimitNote{
  margin-top:10px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,80,80,.12);
  border:1px solid rgba(255,80,80,.28);
  color:#fff;
  font-weight:700;
  font-size:13px;
}

.passengerInfoWrap{
  margin-top:14px;
}

.passengerTotalBox{
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:14px;
  font-weight:700;
}

html[dir="rtl"] .passengerTotalBox,
html[dir="rtl"] .passengerLimitNote{
  text-align:right;
}

/* Trust Bar */
.trustBar{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  margin:24px 0 24px;
}

.trustItem{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 12px 34px rgba(14,49,79,.10);
  backdrop-filter:blur(10px);
}

.trustItem__icon{
  width:48px;
  height:48px;
  flex:0 0 48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(202,168,93,.14);
  border:1px solid rgba(202,168,93,.26);
}

.trustItem__icon svg{
  width:22px;
  height:22px;
  stroke:#ffffff;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.trustItem__content{
  min-width:0;
}

.trustItem__title{
  color:#fff;
  font-size:15px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:4px;
}

.trustItem__text{
  color:rgba(255,255,255,.72);
  font-size:12px;
  line-height:1.45;
}

@media (max-width: 1100px){
  .trustBar{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .trustBar{
    grid-template-columns:1fr;
  }
}

html[dir="rtl"] .trustItem{
  text-align:right;
  flex-direction:row-reverse;
}

/* Popular Routes */
.popularRoutes{
  position:relative;
  padding:86px 0 92px;
  background:
    radial-gradient(circle at top left, rgba(201,168,102,.08), transparent 26%),
    linear-gradient(180deg, #0d1626 0%, #101b2e 100%);
}

.popularRoutes__head{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}

.popularRoutes__eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(202,168,93,.14);
  border:1px solid rgba(202,168,93,.24);
  color:#f3d27a;
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.popularRoutes__title{
  margin:0 0 12px;
  color:#fff;
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.16;
  font-weight:900;
}

.popularRoutes__sub{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:16px;
  line-height:1.8;
}

.popularRoutes__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.popularRoutes__empty{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  text-align:center;
  font-weight:700;
}

.popularRouteCard{
  appearance:none;
  width:100%;
  text-align:left;
  border:none;
  cursor:pointer;
  padding:20px;
  border-radius:24px;
  background:
    radial-gradient(circle at top left, rgba(243,210,122,.10), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 50px rgba(0,0,0,.20);
  color:#fff;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.popularRouteCard:hover{
  transform:translateY(-6px);
  border-color:rgba(202,168,93,.34);
  box-shadow:0 24px 60px rgba(0,0,0,.26);
}

.popularRouteCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}

.popularRouteCard__mini{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.72);
  font-size:11px;
  font-weight:800;
  letter-spacing:.3px;
  text-transform:uppercase;
}

.popularRouteCard__route{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-height:92px;
  margin-bottom:18px;
}

.popularRouteCard__from,
.popularRouteCard__to{
  font-size:24px;
  line-height:1.18;
  font-weight:900;
  color:#fff;
  word-break:break-word;
}

.popularRouteCard__arrow{
  color:#f3d27a;
  font-size:18px;
  font-weight:900;
  line-height:1;
}

.popularRouteCard__bottom{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}

.popularRouteCard__priceWrap{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
}

.popularRouteCard__priceLabel{
  color:rgba(255,255,255,.68);
  font-size:12px;
  font-weight:700;
}

.popularRouteCard__price{
  color:#f3d796;
  font-size:24px;
  line-height:1;
  font-weight:900;
}

.popularRouteCard__action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 14px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(202,168,93,.20), rgba(255,217,160,.10));
  border:1px solid rgba(202,168,93,.26);
  color:#fff;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
  flex-shrink:0;
}

html[dir="rtl"] .popularRoutes__head{
  text-align:center;
}

html[dir="rtl"] .popularRouteCard{
  text-align:right;
}

@media (max-width: 1200px){
  .popularRoutes__grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .popularRoutes{
    padding:72px 0 78px;
  }

  .popularRoutes__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .popularRoutes__grid{
    grid-template-columns:1fr;
  }

  .popularRouteCard{
    padding:18px;
    border-radius:20px;
  }

  .popularRouteCard__from,
  .popularRouteCard__to{
    font-size:21px;
  }

  .popularRouteCard__bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .popularRouteCard__action{
    width:100%;
  }
}

/* Why Choose */
.whyChoose{
  position:relative;
  padding:88px 0 96px;
  background:
    radial-gradient(circle at top left, rgba(201,168,102,.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.whyChoose__inner{
  width:100%;
}

.whyChoose__head{
  max-width:760px;
  margin:0 auto 38px;
  text-align:center;
}

.whyChoose__eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(11,37,69,.06);
  color:#0b2545;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.whyChoose__title{
  margin:0 0 12px;
  color:#0b2545;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.15;
  font-weight:800;
}

.whyChoose__sub{
  margin:0;
  color:#617086;
  font-size:16px;
  line-height:1.8;
}

.whyChoose__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}

.whyChooseCard{
  position:relative;
  overflow:hidden;
  min-height:100%;
  padding:28px 24px 24px;
  border:1px solid rgba(11,37,69,.08);
  border-radius:24px;
  background:rgba(255,255,255,.86);
  box-shadow:0 18px 50px rgba(11,37,69,.07);
  backdrop-filter:blur(10px);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.whyChooseCard::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, #0b2545 0%, #c9a866 100%);
  opacity:.95;
}

.whyChooseCard:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(11,37,69,.11);
  border-color:rgba(201,168,102,.30);
}

.whyChooseCard__icon{
  width:64px;
  height:64px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  margin-bottom:18px;
  background:linear-gradient(135deg, rgba(11,37,69,.08) 0%, rgba(201,168,102,.18) 100%);
  color:#0b2545;
}

.whyChooseCard__icon svg{
  width:30px;
  height:30px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.whyChooseCard__title{
  margin:0 0 10px;
  color:#0b2545;
  font-size:20px;
  line-height:1.35;
  font-weight:800;
}

.whyChooseCard__text{
  margin:0;
  color:#66758a;
  font-size:15px;
  line-height:1.8;
}

html[dir="rtl"] .whyChoose__head{
  text-align:center;
}

html[dir="rtl"] .whyChooseCard{
  text-align:right;
}

@media (max-width: 1100px){
  .whyChoose__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .whyChoose{
    padding:70px 0 76px;
  }

  .whyChoose__grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .whyChooseCard{
    padding:22px 18px 20px;
    border-radius:20px;
  }

  .whyChooseCard__title{
    font-size:18px;
  }

  .whyChooseCard__text{
    font-size:14px;
    line-height:1.7;
  }
}

/* Results Page */
.hero--results{
  min-height:calc(100vh - 64px);
}

.trustBar--results{
  margin:24px 0 24px;
}

.searchCard--results{
  max-width:1200px;
}

.resultAlert{
  padding:14px 16px;
  border-radius:14px;
  background:rgba(255,80,80,.12);
  border:1px solid rgba(255,80,80,.28);
  color:#fff;
  margin-bottom:14px;
  font-weight:700;
}

.resultGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

.resultGrid--top{
  margin-bottom:24px;
}

.resultBox{
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:16px;
  box-shadow:0 10px 30px rgba(14,49,79,.08);
}

.resultBox--highlight{
  background:rgba(202,168,93,.10);
  border-color:rgba(202,168,93,.24);
}

.resultLabel{
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.72);
  margin-bottom:8px;
}

.resultValue{
  font-size:18px;
  font-weight:800;
  color:#fff;
}

.discountInfo{
  margin:0 0 18px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(202,168,93,.12);
  border:1px solid rgba(202,168,93,.26);
  color:#fff;
  font-weight:700;
}

.emptyState{
  padding:18px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.vehiclesTitle{
  margin:18px 0 14px;
  color:#fff;
  font-size:24px;
  font-weight:800;
}

.vehicleGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.vehicleCard{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 60px rgba(14,49,79,.16);
  transition:border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.vehicleCard:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.18);
  box-shadow:0 24px 64px rgba(14,49,79,.20);
}

.vehicleCard--selected{
  border:1px solid rgba(202,168,93,.55);
  box-shadow:0 0 0 2px rgba(202,168,93,.12), 0 18px 60px rgba(14,49,79,.16);
}

.vehicleBadge{
  position:absolute;
  top:14px;
  left:14px;
  z-index:3;
  padding:8px 12px;
  border-radius:999px;
  background:linear-gradient(135deg, #caa85d, #f1d18a);
  color:#0b1220;
  font-size:12px;
  font-weight:900;
}

.vehicleCard__imgWrap{
  padding:22px 18px 12px;
  background:
    radial-gradient(circle at top center, rgba(202,168,93,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.vehicleCard__img{
  width:100%;
  height:210px;
  object-fit:contain;
  display:block;
}

.vehicleCard__body{
  padding:18px;
}

.vehicleCard__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}

.vehicleCard__name{
  color:#fff;
  font-size:22px;
  font-weight:800;
  line-height:1.2;
}

.vehiclePriceBadge{
  flex:0 0 auto;
  padding:8px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.vehicleRoute{
  color:rgba(255,255,255,.78);
  font-size:13px;
  margin-bottom:14px;
}

.vehicleCard__priceRow{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(202,168,93,.10);
  border:1px solid rgba(202,168,93,.22);
}

.vehicleCard__priceLabel{
  color:rgba(255,255,255,.76);
  font-size:12px;
  font-weight:700;
}

.vehicleCard__price{
  color:#f3d796;
  font-size:28px;
  line-height:1;
  font-weight:900;
  margin-bottom:0;
}

.vehicleMeta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:14px;
}

.vehicleMeta__item{
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  padding:12px;
}

.vehicleMeta__icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(202,168,93,.12);
  border:1px solid rgba(202,168,93,.22);
}

.vehicleMeta__icon svg{
  width:20px;
  height:20px;
  stroke:#ffffff;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.vehicleMeta__content{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.vehicleMeta__label{
  display:block;
  color:rgba(255,255,255,.68);
  font-size:12px;
  margin-bottom:4px;
}

.vehicleMeta__value{
  color:#fff;
  font-weight:800;
  font-size:16px;
}

.featureTitle{
  color:rgba(255,255,255,.88);
  font-weight:700;
  margin-bottom:10px;
}

.featureList{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:16px;
}

.featureChip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:12px;
  font-weight:700;
}

.featureChip__icon{
  width:16px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.featureChip__icon svg{
  width:14px;
  height:14px;
  stroke:#caa85d;
  fill:none;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.vehicleBtn{
  display:flex;
  width:100%;
  justify-content:center;
  align-items:center;
  gap:10px;
  min-height:52px;
}

.vehicleBtn--selected{
  background:linear-gradient(135deg, #ffe2a8, #caa85d);
}

.vehicleBtn__icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.vehicleBtn__icon svg{
  width:18px;
  height:18px;
  fill:#0b1220;
}

.resultsBackWrap{
  margin-top:18px;
}

.resultsBackBtn{
  display:inline-flex;
  width:auto;
  padding:12px 18px;
}

/* Summary */
.summaryCard{
  margin-bottom:18px;
  padding:18px;
}

.summaryTitle{
  margin:0 0 8px;
  color:#fff;
  font-size:22px;
  font-weight:800;
}

.summarySub{
  margin:0 0 16px;
  color:rgba(255,255,255,.78);
  font-size:13px;
}

.summaryActions{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 280px));
  gap:12px;
  align-items:stretch;
}

.summaryBtn{
  display:flex;
  width:100%;
  min-width:0;
  justify-content:center;
  align-items:center;
}

.summaryBtn--ghost{
  display:flex;
  width:100%;
  min-width:0;
  justify-content:center;
  align-items:center;
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
}

.summaryBtn--ghost:hover{
  background:rgba(255,255,255,.14);
}

@media (max-width: 1100px){
  .vehicleGrid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 900px){
  .resultGrid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 700px){
  .vehicleGrid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px){
  .resultGrid{
    grid-template-columns:1fr;
  }

  .vehicleMeta{
    grid-template-columns:1fr;
  }

  .vehicleCard__top,
  .vehicleCard__priceRow{
    flex-direction:column;
    align-items:flex-start;
  }

  .summaryActions{
    grid-template-columns:1fr;
  }

  .summaryBtn,
  .summaryBtn--ghost{
    width:100%;
    min-width:0;
  }
}

html[dir="rtl"] .resultBox,
html[dir="rtl"] .resultLabel,
html[dir="rtl"] .resultValue,
html[dir="rtl"] .vehiclesTitle,
html[dir="rtl"] .vehicleCard__body,
html[dir="rtl"] .vehicleMeta__item,
html[dir="rtl"] .featureTitle,
html[dir="rtl"] .vehicleRoute,
html[dir="rtl"] .discountInfo,
html[dir="rtl"] .emptyState,
html[dir="rtl"] .resultAlert,
html[dir="rtl"] .summaryTitle,
html[dir="rtl"] .summarySub{
  text-align:right;
}

html[dir="rtl"] .vehicleBadge{
  left:auto;
  right:14px;
}