:root{
  --bg:#0b0b0e;
  --bg2:#111118;
  --card:#141420;
  --text:#f3f3f6;
  --muted:#b7b7c7;
  --red:#e10613;
  --red2:#ff1a27;
  --border:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:radial-gradient(1100px 600px at 20% 0%, rgba(225,6,19,.18), transparent 60%),
             radial-gradient(900px 500px at 90% 10%, rgba(255,26,39,.12), transparent 55%),
             var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{width:min(1150px, 92%); margin:0 auto}
.muted{color:var(--muted)}
.sep{opacity:.6}

.placeholder{
  border:1px dashed rgba(255,255,255,.25);
  color:rgba(255,255,255,.65);
  background:rgba(255,255,255,.03);
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  overflow:hidden;
}
.placeholder img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}

/* Topbar */
.topbar{
  background:rgba(0,0,0,.45);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  font-size:13px;
}
.topbar__left{display:flex; gap:10px; align-items:center}
.dot{
  width:8px; height:8px; border-radius:99px;
  background:var(--red);
  box-shadow:0 0 0 6px rgba(225,6,19,.15);
}
.toplink{opacity:.9}
.toplink:hover{opacity:1; color:var(--red2)}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,11,14,.70);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(14px);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__logo{
  width:42px; height:42px; object-fit:contain;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
}

/* Nav */
.nav{display:flex; align-items:center; gap:14px}
.nav__link{
  font-weight:700;
  font-size:14px;
  opacity:.85;
  padding:10px 10px;
  border-radius:10px;
}
.nav__link:hover{opacity:1; background:rgba(255,255,255,.06)}
.nav__cta{margin-left:6px}

/* Burger */
.burger{
  display:none;
  width:46px; height:42px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
}
.burger span{
  display:block;
  width:22px; height:2px; margin:5px auto;
  background:#fff;
  border-radius:2px;
  opacity:.95;
}

/* Close button base */
.iconbtn{
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:var(--text);
  width:42px; height:42px;
  border-radius:14px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  line-height:1;
}

/* MOBILE DRAWER */
.mobile-drawer{
  position: fixed;
  inset: 0;
  z-index: 999999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .22s ease, visibility .22s ease;
  display: grid;
  place-items: start center;

  padding:
    max(12px, env(safe-area-inset-top))
    12px
    max(12px, env(safe-area-inset-bottom));
}
.mobile-drawer.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-drawer__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 0;
}
.mobile-drawer__panel{
  position: relative;
  z-index: 1;
  width: min(92vw, 420px);
  max-height: calc(100dvh - 24px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px 14px 16px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mobile-drawer__panel::-webkit-scrollbar{width:0;height:0}

.mobile-drawer__head{
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  margin: -14px -14px 12px;
  padding: 10px 14px;
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-title{
  grid-column: 2;
  text-align: center;
  font-weight: 900;
  letter-spacing: .08em;
}
#closeDrawer{
  grid-column: 3;
  justify-self: end;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 11;
}

.mnav__link{
  display:block;
  width:100%;
  text-align:center;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 800;
  opacity: .92;
}
.mnav__link:hover{background: rgba(255,255,255,.06);opacity: 1}

.mobile-drawer__actions{
  display:grid;
  gap:10px;
  margin-top: 14px;
}
.mobile-drawer__actions .btn{width:100%}

body.drawer-open{
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:900;
  cursor:pointer;
  transition:transform .12s ease, filter .12s ease, background .12s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:linear-gradient(135deg, var(--red), var(--red2));
  color:#fff;
  box-shadow: 0 14px 34px rgba(225,6,19,.25);
}
.btn--primary:hover{filter:brightness(1.05)}
.btn--ghost{
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
}
.btn--ghost:hover{background:rgba(255,255,255,.09)}
.btn--block{width:100%}

/* Hero */
.hero{
  position:relative;
  padding:58px 0 36px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.65)),
    url("assets/hero-bg.jpg");
  background-size:cover;
  background-position:center;
  opacity:.22;
  pointer-events:none;
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:start;
}
.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  font-weight:800;
  font-size:13px;
  width:max-content;
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 3.3vw, 48px);
  letter-spacing:-.02em;
  line-height:1.05;
}
.accent{color:var(--red2)}
.hero p{margin:0 0 16px; color:var(--muted); max-width:54ch}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 18px}
.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:10px;
}
.stat{
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
}
.stat__num{font-weight:900; font-size:18px}
.stat__label{font-size:12px; color:var(--muted); margin-top:3px}

.card{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 10px 34px rgba(0,0,0,.35);
  padding:16px;
}
.glass{
  background:linear-gradient(180deg, rgba(20,20,32,.75), rgba(12,12,16,.70));
  backdrop-filter: blur(10px);
}

.icon{font-size:26px; margin-bottom:6px}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.section{padding:56px 0}
.section--alt{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 6px; font-size:28px}
.section__head p{margin:0}

.grid{display:grid; gap:14px}
.cards-3{grid-template-columns: repeat(3, minmax(0,1fr))}

/* About */
.about{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap:14px;
  align-items:stretch;
}
.about__list{
  margin:10px 0 0;
  padding-left:18px;
  color:rgba(255,255,255,.9);
  line-height:1.8;
}
.about__gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.about__img{
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.about__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px){
  .about__img{
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 8px;
  }
  .about__img img{
    object-fit: contain;
    background: #000;
  }
}

/* Steps */
.steps{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin: 18px 0 16px;
}
.step{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  font-weight:800;
  opacity:.85;
}
.step__num{
  width:32px; height:32px;
  border-radius:999px;
  display:grid; place-items:center;
  border:2px solid rgba(255,255,255,.22);
  font-weight:900;
}
.step__label{white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.step.is-active{
  opacity:1;
  border-color: rgba(255,26,39,.25);
  background: rgba(225,6,19,.08);
}
.step.is-active .step__num{
  background:rgba(225,6,19,.18);
  border-color: rgba(255,26,39,.55);
}

/* Booking */
.booking2{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:14px;
  align-items:stretch;
}
.booking2__left{padding:18px; position:relative; z-index:50;}
.booking2__right{padding:14px; position:relative; z-index:1;}

.ride-form{display:grid; gap:14px}
.field label{
  display:block;
  font-weight:800;
  font-size:13px;
  margin-bottom:8px;
  color:rgba(255,255,255,.92);
}
.field__control{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.20);
}
.field__icon{
  color:#fff;
  opacity:1;
  font-size:18px;
}
.field__control input,
.field__control select{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  color:var(--text);
  font-weight:700;
  font-size:14px;
}
.field__control select{cursor:pointer}
.btn--search{padding:14px 16px; font-size:15px}

input[type="date"],
input[type="time"]{color-scheme: dark;}

.form-hint{
  margin-top:2px;
  font-size:13px;
  color:rgba(255,255,255,.80);
  line-height:1.4;
  min-height: 18px;
}
.form-hint.ok{ color: #7CFFB2; }
.form-hint.bad{ color: #FF7C7C; }

/* Map */
.mapwrap{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
}
.map{height:420px; width:100%}
.mapwrap, .map, .leaflet-container{ position: relative; z-index: 0 !important; }

.routebar{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top:12px;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}
.routebar__item{
  display:flex;
  gap:10px;
  align-items:center;
  min-width: 160px;
}
.routebar__icon{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.routebar__title{
  font-size:11px;
  letter-spacing:.08em;
  opacity:.75;
  font-weight:900;
}
.routebar__value{
  font-size:16px;
  font-weight:900;
  margin-top:2px;
}
.routebar__divider{
  width:1px;
  align-self:stretch;
  background: rgba(255,255,255,.10);
}
.routebar__book{
  margin-left: auto;
  min-width: 110px;
  height: 48px;
  color:#fff !important;
  font-weight:900;
}
.routebar__book:disabled{
  opacity:.55;
  cursor:not-allowed;
}
.routebar__book:hover{color:#fff}

/* Contact */
.contact{
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
}
.info-row{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  padding:10px 2px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.info-row:last-child{border-bottom:none}

.map-card{padding: 14px}
.map-embed{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  height: 100%;
  min-height: 320px;
  background: rgba(0,0,0,.20);
}
.map-embed iframe{
  width: 100%;
  height: 100%;
  display: block;
}

/* Complaint box */
.complaint-box{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  text-align: center;
}
.complaint-box strong{
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.complaint-box p{
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 8px;
}
.complaint-phone{
  font-weight: 900;
  color: #ff6b6b;
}
.complaint-phone:hover{ color: #ff8f8f; }

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.30);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.brand-mini{font-weight:900; letter-spacing:.08em}
.footer__right a{opacity:.86}
.footer__right a:hover{opacity:1; color:var(--red2)}

/* WhatsApp float */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, #25D366, #128C7E);
  color:#ffffff;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow:
    0 18px 44px rgba(37,211,102,.25),
    inset 0 0 0 1px rgba(255,255,255,.15);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 22px 55px rgba(37,211,102,.35),
    inset 0 0 0 1px rgba(255,255,255,.25);
}
.wa-float:active{ transform: translateY(0); }
.wa-badge{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}
.wa-badge svg{
  width:18px;
  height:18px;
  color:#ffffff;
  display:block;
}
.wa-text{font-size:14px}
@media (max-width: 520px){
  .wa-text{ display:none; }
  .wa-float{ padding:12px; }
}

.leaflet-control-attribution{opacity:.7}

/* Google Places Autocomplete (dropdown) */
.pac-container{
  position: fixed !important;
  z-index: 2147483647 !important;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.65);
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.pac-item{
  padding: 12px 14px;
  color: #f3f3f6;
  border-top: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
}
.pac-item:hover{ background: rgba(255,255,255,.06); }
.pac-item-query{ color:#fff; font-weight:800; }
.pac-matched{ color: var(--red2); font-weight:900; }
.pac-icon{ filter: invert(1); opacity:.9; }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr}
  .cards-3{grid-template-columns: repeat(2, minmax(0,1fr))}
  .about{grid-template-columns:1fr}
  .about__gallery{grid-template-columns: repeat(3, minmax(0,1fr))}
  .booking2{grid-template-columns: 1fr}
  .map{height:360px}
  .steps{flex-wrap:wrap}
  .step{justify-content:flex-start}
}
@media (max-width: 720px){
  .nav{display:none}
  .burger{display:block}
  .topbar__right{display:none}
  .hero__stats{grid-template-columns:1fr}
  .cards-3{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .about__gallery{grid-template-columns: 1fr}
  .routebar{flex-direction:column; align-items:stretch}
  .routebar__divider{display:none}
  .routebar__item{min-width:auto; width:100%}
  .routebar__book{width:100%}
  .map-embed{ min-height: 260px; }
}

/* Safety: mos lejo "password masking" nga ndonjë stil/extension */
#fromInput, #toInput { -webkit-text-security: none !important; }
/* Google Autocomplete – ALWAYS visible */
.pac-container{
  z-index: 2147483647 !important;
  position: fixed !important;
}

/* prevent parents from clipping dropdown */
.booking2,
.booking2__left,
.booking2__left *{
  overflow: visible !important;
}

/* Leaflet map stays under */
.leaflet-container{
  z-index: 0 !important;
}

.pac-container{
  position: fixed !important;
  z-index: 2147483647 !important;
}
.booking2__left .field{ position:relative; }

.glist{
  position:absolute;
  left:0; right:0;
  top: calc(100% + 8px);
  display:none;
  z-index: 2147483647;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  box-shadow:0 18px 60px rgba(0,0,0,.65);
  overflow:hidden;
}
.gitem{
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.08);
  cursor:pointer;
  color:#f3f3f6;
  font-weight:800;
}
.gitem:hover{ background:rgba(255,255,255,.06); }
.gsub{ display:block; opacity:.75; font-weight:650; margin-top:2px; }

/* ===== Language switch (better contrast) ===== */
.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}

.lang-btn{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-weight:900;
  letter-spacing:.03em;
  cursor:pointer;
  opacity:1;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}

.lang-btn:hover{
  background: rgba(255,255,255,.10);
}

.lang-btn:active{
  transform: translateY(1px);
}

.lang-btn.is-active{
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-color: rgba(255,26,39,.55);
  box-shadow: 0 10px 24px rgba(225,6,19,.22);
}

/* opsionale: fokus i dukshëm */
.lang-btn:focus-visible{
  outline:2px solid rgba(255,26,39,.8);
  outline-offset:2px;
}
/* FORCE language text visible */
#langSwitch,
#langSwitch .lang-btn{
  color: #fff !important;
}

/* pill */
#langSwitch{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.25);
}

/* buttons */
#langSwitch .lang-btn{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  font-weight:900;
  letter-spacing:.03em;
  cursor:pointer;
}

/* active */
#langSwitch .lang-btn.is-active{
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-color: rgba(255,26,39,.55);
}

/* FINAL OVERRIDE - Language button text always white */
#langSwitch, 
#langSwitch *{
  color:#fff !important;
}

#langSwitch .lang-btn{
  background: rgba(255,255,255,.08) !important;
  border:1px solid rgba(255,255,255,.18) !important;
}

#langSwitch .lang-btn.is-active{
  background: linear-gradient(135deg, var(--red), var(--red2)) !important;
  border-color: rgba(255,26,39,.55) !important;
}
/* Fix language toggle button text */
#langToggle{
  color: #fff !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  font-weight: 900;
  letter-spacing: .03em;
}

#langToggle:hover{
  background: rgba(255,255,255,.12) !important;
}
.locbtn{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color:#fff;
  border-radius:14px;
  padding:0 14px;
  height:44px;

  display:inline-flex;
  align-items:center;
  gap:8px;

  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
}

.locbtn:hover{
  background: rgba(255,255,255,.14);
}

.locbtn span{
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
}
/* ===== REVIEWS (responsive: 1 mobile, 3 desktop) ===== */

.reviews {
  --perView: 1;
  --gap: 16px;
  position: relative;
  max-width: 1100px; /* desktop wider */
  margin: 0 auto;
}

/* Safe space for arrows so they never cover text */
.rev-viewport {
  overflow: hidden;
  border-radius: 20px;
  padding: 0 56px; /* space left/right for arrows */
}

.rev-track {
  display: flex;
  gap: var(--gap);
  transition: transform .35s ease;
  will-change: transform;
}

/* IMPORTANT: remove min-width:100% */
.rev-card {
  flex: 0 0 calc(
    (100% - (var(--gap) * (var(--perView) - 1))) / var(--perView)
  );
  background: linear-gradient(145deg, #0b0f17, #121826);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.rev-head { display:flex; gap:12px; margin-bottom:10px; }
.rev-avatar {
  width: 44px; height:44px; border-radius:50%;
  background:#1c2535; display:flex; align-items:center; justify-content:center;
  font-weight:700; color:#fff; flex-shrink:0;
}
.rev-name { font-weight:600; font-size:15px; }
.rev-sub { font-size:13px; opacity:.6; margin-top:2px; }
.rev-stars { margin-top:6px; color:#ffd700; font-size:14px; }
.rev-text { font-size:14px; line-height:1.55; opacity:.85; margin-top:10px; }

/* Arrows: always clickable, never cover text (because viewport has padding) */
.rev-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.rev-prev { left: 10px; }
.rev-next { right: 10px; }

.rev-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* Dots */
.rev-dots {
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top: 16px;
}
.rev-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.25);
  cursor: pointer; transition: .2s;
}
.rev-dots .rev-dot.is-active { background:#fff; transform: scale(1.25); }


/* Desktop: show 3 per page */
@media (min-width: 900px) {
  .reviews { --perView: 3; }
  .rev-viewport { padding: 0 60px; }
}

.rev-avatar img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  display:block;
}
.seg{
  display:flex;
  gap:8px;
  padding:6px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.20);
}
.seg__btn{
  flex:1;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.seg__btn.is-active{
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-color: rgba(255,26,39,.55);
  box-shadow: 0 10px 24px rgba(225,6,19,.22);
}

.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.rev-avatar img.rev-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===== REVIEWS AVATAR (FINAL) ===== */
.rev-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  background:#1c2535;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
}

.rev-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ===== Mobile: bigger buttons / full width ===== */
@media (max-width: 520px){

  /* Base price / Taximeter */
  .seg{
    width:100%;
    gap:10px;
    padding:8px;
    border-radius:16px;
  }
  .seg__btn{
    height:56px;          /* ishte 44 */
    font-size:16px;       /* më i madh */
    border-radius:14px;
  }

  /* Search button */
  .btn--search{
    width:100%;
    padding:18px 18px;    /* ishte 14px 16px */
    font-size:16px;
    border-radius:16px;
  }

  /* My location */
  .locbtn{
    height:52px;          /* ishte 44 */
    padding:0 16px;
    font-size:15px;
    border-radius:16px;

    width:100%;           /* full width në telefon */
    justify-content:center;
    margin-top:10px;      /* që të mos rrijë ngjitur me input */
  }
  .locbtn span{
    font-size:14px;       /* ishte 13 */
  }
}
/* ===== Mobile Layout Polish ===== */
@media (max-width: 520px){

  /* më pak margin anash → full screen feeling */
  .container{
    padding-left: 10px;
    padding-right: 10px;
  }

  /* card pak më kompakte */
  .card{
    border-radius: 16px;
  }
}
@media (max-width: 520px){

  /* Segment buttons */
  .seg{
    gap: 10px;
    padding: 7px;
  }

  .seg__btn{
    height: 52px;     /* mid-size perfect */
    font-size: 15.5px;
  }

  /* Search */
  .btn--search{
    padding: 17px;
    font-size: 15.5px;
  }

  /* My location */
  .locbtn{
    height: 50px;
    font-size: 14.5px;
  }

  .locbtn span{
    font-size: 13.5px;
  }
}
@media (max-width: 520px){

  .booking2{
    gap: 14px;
  }

  .ride-form{
    gap: 14px;
  }
}

/* ===== Mobile Hero Spacing Fix ===== */
@media (max-width: 520px){

  .hero{
    padding-top: 10px;   /* ishte më i madh */
  }

  .hero__inner{
    padding-top: 0;
  }

  .hero__left{
    margin-top: 0;
  }

  /* Badge (Fast service...) */
  .badge{
    margin-top: 4px;
  }
}
/* ===== GLOBAL: Sections full device width on mobile ===== */
@media (max-width: 520px){

  /* çdo section merr gjithë gjerësinë e pajisjes */
  .section{
    padding-left: 0;
    padding-right: 0;
  }

  /* container bëhet 100% (jo 92%) */
  .container{
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 10px;   /* zgjidh sa hapësirë do anash */
    padding-right: 10px;
  }

  /* kartat të duken njësoj kudo */
  .card{
    width: 100%;
    border-radius: 18px;
  }
}

