/* locations.css — extracted from styles.css */

/* ===================== TOKENS / BASE ===================== */
:root{
  --red:#0E8F8B;
  --ink:#0b0f14;
  --white:#fff;

  --radius-xl:26px;
  --field-h:44px;

  --shadow: 0 18px 40px rgba(0,0,0,.18);
  --shadow2: 0 22px 50px rgba(0,0,0,.28);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--white);
  background:var(--ink);
}

/* shared container used in locations.html */
.fleet__inner{
  width:min(96vw, 1780px);
  margin:0 auto;
}

@media (max-width: 820px){
  .fleet__inner{ width:min(100vw, 520px); }
}

/* ===================== TOPBAR (shared) ===================== */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  position:relative;
  z-index:5;
}

.brand{
  font-weight:700;
  letter-spacing:.2px;
  opacity:.95;
  font-size:18px;
}
.brand img{ height: 6rem; }

.topright{
  display:flex;
  align-items:center;
  gap:16px;
}

.topnav{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:13px;
  opacity:.92;
}
.topnav a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  white-space:nowrap;
}

.topicons{
  display:flex;
  gap:10px;
  align-items:center;
}
.topicons a{
  width:34px;height:34px;
  border-radius:999px;
  display:inline-grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration:none;
  color:#fff;
  transition:transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.topicons a:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.30);
  transform:translateY(-1px);
}
.topicons a:active{ transform:scale(.98); }
.topicons svg{ width:18px;height:18px; display:block; }

.topmeta{
  display:flex;
  gap:14px;
  align-items:center;
  font-weight:900;
  opacity:.95;
  letter-spacing:.2px;
  font-size:13px;
}

.topbar__left,
.topbar__right{ display:none; }

.hamburger{
  width:42px;height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
  transition:transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.hamburger:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.30);
  transform:translateY(-1px);
}
.hamburger:active{ transform:scale(.98); }
.hamburger svg{ width:18px;height:18px; opacity:.95; }

@media (max-width: 820px){
  .topright{ display:none; }
  .topbar{ justify-content:center; }

  .topbar__left,
  .topbar__right{
    display:flex;
    position:absolute;
    top:0;
    align-items:center;
    gap:10px;
  }
  .topbar__left{ left:0; }
  .topbar__right{ right:0; }

  .brand{ font-size:20px; }
}

/* ===================== MOBILE MENU (shared) ===================== */
.menuOverlay{
  position:fixed;
  inset:0;
  z-index:999;
  pointer-events:none;
}
.menuOverlay.is-open{ pointer-events:auto; }

.menuOverlay__backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  transition:opacity .55s var(--ease);
}

.menuCard{
  position:absolute;
  left:16px; right:16px;
  top:70px;
  border-radius:22px;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  color:#111;
  padding:18px 16px 14px;

  transform: translateY(-18px) scale(.96);
  opacity:0;
  filter: blur(8px);
  transition:
    opacity .65s var(--ease),
    transform .65s var(--ease),
    filter .65s var(--ease);
  will-change: transform, opacity, filter;
}
.menuOverlay.is-open .menuOverlay__backdrop{ opacity:1; }
.menuOverlay.is-open .menuCard{
  opacity:1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.menuOverlay.is-closing .menuOverlay__backdrop{
  opacity:0;
  transition:opacity .40s var(--ease);
}
.menuOverlay.is-closing .menuCard{
  opacity:0;
  transform: translateY(-10px) scale(.985);
  filter: blur(8px);
  transition:
    opacity .40s var(--ease),
    transform .40s var(--ease),
    filter .40s var(--ease);
}

.menuCard__top{
  display:flex;
  justify-content:flex-end;
  padding-bottom:8px;
}
.menuClose{
  width:40px;height:40px;
  border-radius:14px;
  border:0;
  background:rgba(0,0,0,.06);
  cursor:pointer;
  display:inline-grid;
  place-items:center;
  font-weight:900;
  font-size:16px;
  transition:transform .25s var(--ease);
}
.menuClose:active{ transform:scale(.98); }

.menuLinks{
  display:grid;
  gap:10px;
  padding:6px 6px 10px;
  font-weight:800;
}
.menuLinks a{
  color:#111;
  text-decoration:none;
  padding:8px 8px;
  border-radius:12px;
  transition:background .2s var(--ease);
}
.menuLinks a:hover{ background:rgba(0,0,0,.05); }

.menuGrid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:10px;
  padding:10px 6px 0;
}
.chip{
  display:flex;
  align-items:center;
  justify-content:center;
  height:40px;
  border-radius:10px;
  font-weight:900;
  font-size:13px;
  border:1px solid rgba(0,0,0,.10);
  background:transparent;
  cursor:pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.chip:active{ transform:scale(.98); }
.chip.is-active{
  background:var(--red);
  border-color:var(--red);
  color:#fff;
}

.menuCurrencies{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
  padding:10px 6px 6px;
}

@media (min-width: 821px){
  .menuOverlay{ display:none; }
}

/* ===================== LOCATIONS PAGE ONLY ===================== */
.page{
  background: var(--ink);
  color: var(--white);
}

/* header bg only (no hero image) */
.pageHeader{
  background: linear-gradient(180deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,0) 100%);
  padding: 22px 0 10px;
}

.locHero{
  padding: 34px 0 24px;
}
.locHero__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -1px;
  font-size: clamp(34px, 4vw, 54px);
}
.locHero__sub{
  margin: 10px 0 0;
  opacity: .85;
  font-weight: 600;
  max-width: 820px;
  line-height: 1.4;
}

.locSection{
  padding: 12px 0 60px;
}

/* grid */
.locGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.locCityCard{
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 18px 18px;
  text-decoration:none;
  color:#fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.locCityCard:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}

.locCityCard__title{
  font-weight: 900;
  font-size: 18px;
}
.locCityCard__sub{
  margin-top: 6px;
  font-weight: 700;
  opacity: .75;
  font-size: 13px;
}

@media (max-width: 980px){
  .locGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .locGrid{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
}
