/* ================================================================
   AdjaraCars — ADJARA CAR RENT
   Brand colors: Navy Blue #14288c + Gold #f0c828 + White
   Light theme · Professional · Mountain + Road feel
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=FiraGO:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand palette */
  --navy:        #14288c;
  --navy-dark:   #0d1a5e;
  --navy-mid:    #1e3aa0;
  --navy-light:  #2a4cc0;
  --gold:        #f0c828;
  --gold-dark:   #d4a017;
  --gold-light:  #f7d94a;
  --road:        #1a1a2e;

  /* Light UI */
  --bg:          #f5f7fc;
  --bg-1:        #ffffff;
  --bg-2:        #eef1fa;
  --bg-3:        #e4e9f7;
  --bg-card:     #ffffff;

  /* Text */
  --text:        #0d1a3e;
  --text-mid:    #2c3a6e;
  --text-light:  #5a6898;
  --text-muted:  #8a98c0;

  /* Border */
  --border:      #d0d8f0;
  --border-light:#e8ecf8;
  --border-bright:#a0b0e8;

  /* Semantic */
  --primary:       var(--navy);
  --primary-hover: var(--navy-dark);
  --accent:        var(--gold);

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(20,40,140,.07);
  --shadow-sm: 0 2px 10px rgba(20,40,140,.10);
  --shadow-md: 0 4px 24px rgba(20,40,140,.14);
  --shadow-lg: 0 8px 48px rgba(20,40,140,.18);
  --shadow-card: 0 2px 12px rgba(20,40,140,.09), 0 1px 0 rgba(255,255,255,.8) inset;

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 999px;

  /* Timing */
  --t: .22s cubic-bezier(.4,0,.2,1);
  --t-spring: .35s cubic-bezier(.34,1.56,.64,1);

  --header-h:      70px;
  --bottom-nav-h:  68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'FiraGO', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  padding-bottom: var(--bottom-nav-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
ul, ol { list-style: none; }
main { min-height: 60vh; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 500;
  height: var(--header-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--navy);
}

.header-inner {
  display: flex; align-items: center; gap: 12px;
  height: 100%;
  max-width: 1220px; margin: 0 auto; padding: 0 20px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-img {
  height: 52px; width: auto;
  transition: transform var(--t-spring);
}
.logo:hover .logo-img { transform: scale(1.05); }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-size: 18px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -.3px;
}
.logo-tagline {
  font-size: 10px; color: var(--text-muted);
  font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
}

/* Nav */
.main-nav { display: none; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.main-nav a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r-sm);
  color: var(--text-light); font-weight: 600; font-size: 14px;
  transition: all var(--t); white-space: nowrap; position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--navy);
  border-radius: 2px; transition: all var(--t);
}
.main-nav a:hover { color: var(--navy); background: var(--bg-2); }
.main-nav a:hover::after, .main-nav a.active::after { left: 14px; right: 14px; }
.main-nav a.active { color: var(--navy); background: var(--bg-2); font-weight: 700; }

.header-actions { display: none; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }

/* Burger */
.burger {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--bg-2); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); color: var(--navy); font-size: 16px;
  margin-left: auto; transition: all var(--t); cursor: pointer;
}
.burger:hover { background: var(--bg-3); border-color: var(--navy); }
.burger.open { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(13,26,94,.5); backdrop-filter: blur(8px);
  z-index: 499; opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-panel {
  position: absolute; top: 0; left: 0; right: 0;
  background: #fff; border-bottom: 2px solid var(--navy);
  padding: 8px 0 16px;
  transform: translateY(-10px); transition: transform var(--t);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open .mobile-nav-panel { transform: translateY(0); }
.mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; color: var(--text); font-weight: 600; font-size: 15px;
  border-bottom: 1px solid var(--border-light); transition: all var(--t);
}
.mobile-nav a:hover { background: var(--bg-2); color: var(--navy); padding-left: 26px; }
.nav-icon {
  width: 38px; height: 38px; background: var(--bg-2);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: all var(--t);
}
.mobile-nav a:hover .nav-icon { background: var(--navy); border-color: var(--navy); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 8px 20px; }
.mobile-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; border-bottom: 1px solid var(--border-light); gap: 10px;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--bottom-nav-h);
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-top: 2px solid var(--border-light);
  display: flex; align-items: stretch; z-index: 499;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -2px 16px rgba(20,40,140,.08);
}
.bottom-nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  color: var(--text-muted); font-size: 10px; font-weight: 700;
  letter-spacing: .2px; text-decoration: none; padding: 6px 4px;
  transition: color var(--t); position: relative; overflow: hidden;
}
.bottom-nav-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,40,140,.08) 0%, transparent 100%);
  opacity: 0; transition: opacity var(--t);
}
.bottom-nav-item.active { color: var(--navy); }
.bottom-nav-item.active::before { opacity: 1; }
.bottom-nav-item.active::after {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%;
  height: 3px; background: var(--navy); border-radius: 0 0 3px 3px;
}
.bn-icon { font-size: 20px; transition: transform var(--t-spring); line-height: 1; }
.bottom-nav-item.active .bn-icon { transform: translateY(-3px) scale(1.15); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--navy-dark);
  border-top: 4px solid var(--gold);
  padding: 56px 0 calc(var(--bottom-nav-h) + 20px);
  margin-top: 72px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.6); max-width: 220px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 14px;
  transition: all var(--t);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.site-footer h4 {
  font-size: 11px; font-weight: 800; letter-spacing: .7px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.site-footer a {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 9px;
  transition: color var(--t);
}
.site-footer a:hover { color: #fff; }
.site-footer a::before { content: '→'; font-size: 10px; opacity: 0; transform: translateX(-5px); transition: all var(--t); }
.site-footer a:hover::before { opacity: 1; transform: translateX(0); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 8px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px 22px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 700; font-family: inherit;
  cursor: pointer; border: 2px solid transparent;
  text-decoration: none; transition: all var(--t);
  white-space: nowrap; line-height: 1; position: relative; overflow: hidden;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--navy); color: #fff; border-color: var(--navy);
  box-shadow: 0 3px 16px rgba(20,40,140,.3);
}
.btn-primary:hover {
  background: var(--navy-dark); border-color: var(--navy-dark);
  box-shadow: 0 6px 28px rgba(20,40,140,.4); transform: translateY(-1px);
}

.btn-accent {
  background: var(--gold); color: var(--navy-dark); border-color: var(--gold);
  box-shadow: 0 3px 16px rgba(240,200,40,.4);
}
.btn-accent:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  box-shadow: 0 6px 28px rgba(240,200,40,.5); transform: translateY(-1px);
}

.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--border-bright);
}
.btn-outline:hover { background: var(--bg-2); border-color: var(--navy); }

.btn-ghost { background: var(--bg-2); color: var(--text-mid); border-color: transparent; }
.btn-ghost:hover { background: var(--bg-3); }

.btn-success { background: #059669; color: #fff; border-color: #059669; }
.btn-danger  { background: #dc2626; color: #fff; border-color: #dc2626; }

.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-xs  { padding: 5px 11px; font-size: 11px; border-radius: 7px; }
.btn-lg  { padding: 15px 32px; font-size: 16px; border-radius: var(--r-md); }
.btn-block { width: 100%; }

/* ================================================================
   BADGES
   ================================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
}
.badge-green    { background: #d1fae5; color: #065f46; }
.badge-blue     { background: #dbeafe; color: #1e40af; }
.badge-orange   { background: #fef3c7; color: #92400e; }
.badge-red      { background: #fee2e2; color: #991b1b; }
.badge-gray     { background: var(--bg-3); color: var(--text-light); }
.badge-navy     { background: #dbeafe; color: var(--navy-dark); }
.badge-gold     { background: #fef9c3; color: #854d0e; }
.badge-category { background: var(--bg-2); color: var(--navy); border: 1px solid var(--border); }

/* ================================================================
   FORMS
   ================================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
.form-label { font-size: 12px; font-weight: 800; color: var(--text-mid); letter-spacing: .3px; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px; font-family: inherit; color: var(--text);
  background: #fff; width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(20,40,140,.12);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-hint { font-size: 12px; color: var(--text-muted); }

/* ================================================================
   ALERTS
   ================================================================ */
.alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 13px 16px; border-radius: var(--r-sm);
  font-size: 14px; line-height: 1.5; margin-bottom: 16px; border: 1px solid;
}
.alert-success { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.alert-info    { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }
.alert-warning { background: #fffbeb; color: #92400e; border-color: #fde68a; }

/* ================================================================
   HERO — Mountain Road
   ================================================================ */
.hero {
  position: relative; min-height: 500px;
  display: flex; align-items: center;
  overflow: hidden; padding: 80px 20px 100px;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 80%, #1e44b4 100%);
}
/* Mountain silhouette via clip-path decoration */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(240,200,40,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
}
/* Road line at bottom */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto; text-align: center;
  color: #fff;
  animation: fadeUp .7s ease both;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,200,40,.15); border: 1.5px solid rgba(240,200,40,.4);
  border-radius: var(--r-full); padding: 6px 18px;
  font-size: 11px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 16px; letter-spacing: -.5px; color: #fff;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-subtitle { font-size: 15px; color: rgba(255,255,255,.78); margin-bottom: 36px; line-height: 1.65; }
.hero-search {
  display: flex; gap: 8px; max-width: 560px; margin: 0 auto;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r-lg); padding: 6px; backdrop-filter: blur(10px);
}
.hero-input {
  flex: 1; padding: 10px 14px;
  background: transparent; border: none;
  color: #fff; font-size: 14px; font-family: inherit; outline: none;
}
.hero-input::placeholder { color: rgba(255,255,255,.45); }
.hero-search .btn { border-radius: calc(var(--r-lg) - 4px); background: var(--gold); border-color: var(--gold); color: var(--navy-dark); padding: 10px 22px; box-shadow: 0 3px 16px rgba(240,200,40,.4); }
.hero-search .btn:hover { background: var(--gold-light); border-color: var(--gold-light); transform: none; }

.hero-stats {
  display: flex; justify-content: center;
  max-width: 500px; margin: 44px auto 0;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r-md); overflow: hidden;
  background: rgba(255,255,255,.08); backdrop-filter: blur(10px);
}
.hero-stat {
  flex: 1; padding: 16px 12px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--gold); display: block; }
.hero-stat-label { font-size: 10px; color: rgba(255,255,255,.6); font-weight: 700; letter-spacing: .4px; text-transform: uppercase; margin-top: 3px; display: block; }

/* ================================================================
   MODULE CARDS
   ================================================================ */
.modules-section { padding: 36px 0 8px; }
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
a.module-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 28px 16px 22px;
  background: var(--bg-card); border: 2px solid var(--border-light);
  border-radius: var(--r-lg); text-decoration: none; color: inherit;
  transition: all var(--t); box-shadow: var(--shadow-xs); position: relative; overflow: hidden;
}
a.module-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
a.module-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-5px); }
a.module-card:hover::before { transform: scaleX(1); }
.module-icon {
  width: 60px; height: 60px; background: var(--bg-2);
  border: 2px solid var(--border); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 12px; transition: all var(--t-spring);
}
a.module-card:hover .module-icon { background: var(--navy); border-color: var(--navy); transform: scale(1.1) rotate(-5deg); }
.module-title { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.module-count { font-size: 12px; color: var(--text-muted); }

/* ================================================================
   SECTION
   ================================================================ */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-2); }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 26px; gap: 12px;
}
.section-header h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); letter-spacing: -.3px; }
.section-header h2::after {
  content: ''; display: block; height: 3px; width: 40px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 2px; margin-top: 6px;
}
.section-header p { font-size: 13px; color: var(--text-light); margin-top: 3px; }

/* ================================================================
   CARDS
   ================================================================ */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 20px; margin-bottom: 28px;
}
a.card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 2px solid var(--border-light); border-radius: var(--r-lg);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: all var(--t); box-shadow: var(--shadow-xs); will-change: transform;
}
a.card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.card-img-wrap { position: relative; overflow: hidden; background: var(--bg-2); }
.card-img { width: 100%; height: 195px; object-fit: cover; display: block; transition: transform .4s ease; }
a.card:hover .card-img { transform: scale(1.05); }
.card-img-ph {
  width: 100%; height: 195px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; opacity: .5;
}
.card-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.card-body::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  border-radius: 2px; margin-bottom: 8px; width: 0;
  transition: width var(--t);
}
a.card:hover .card-body::before { width: 40px; }
.card-title { font-size: 15px; font-weight: 800; color: var(--text); line-height: 1.3; letter-spacing: -.1px; }
.card-sub { font-size: 12px; color: var(--text-light); line-height: 1.5; }
.card-price { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-top: 7px; }
.card-price small { font-size: .6em; font-weight: 500; color: var(--text-muted); }

/* ================================================================
   PAGE HERO (subpages)
   ================================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: #fff; padding: 52px 20px 64px; margin-bottom: 0;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-inner {
  position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center;
  animation: fadeUp .5s ease both;
}
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -.4px; }
.page-hero p { font-size: 14px; color: rgba(255,255,255,.78); max-width: 460px; margin: 0 auto; }

/* ================================================================
   FILTER BAR
   ================================================================ */
.filter-bar {
  background: var(--bg-card); border: 2px solid var(--border-light);
  border-radius: var(--r-lg); padding: 16px; margin: 20px 0;
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  box-shadow: var(--shadow-xs);
}
.filter-input, .filter-select {
  flex: 1; min-width: 130px; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 13.5px; font-family: inherit; color: var(--text);
  background: var(--bg); transition: border-color var(--t);
  -webkit-appearance: none;
}
.filter-input:focus, .filter-select:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(20,40,140,.1); background: #fff;
}
.filter-input::placeholder { color: var(--text-muted); }

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination { display: flex; gap: 5px; flex-wrap: wrap; margin: 28px 0; justify-content: center; }
.page-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 13px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 13px; font-weight: 700;
  text-decoration: none; color: var(--text-mid); transition: all var(--t);
}
.page-link:hover { background: var(--bg-2); border-color: var(--navy); color: var(--navy); }
.page-link.current { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 3px 12px rgba(20,40,140,.3); }

/* ================================================================
   DETAIL PAGES
   ================================================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { text-decoration: underline; }

.detail-layout { display: grid; grid-template-columns: 1fr 400px; gap: 32px; align-items: start; }
.detail-info { display: flex; flex-direction: column; gap: 18px; }
.detail-info h1 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--text); letter-spacing: -.4px; line-height: 1.2; }
.detail-badges { display: flex; flex-wrap: wrap; gap: 7px; }

.price-main { font-size: 2.2rem; font-weight: 800; color: var(--navy); letter-spacing: -.5px; line-height: 1; }
.price-main small { font-size: .42em; font-weight: 500; color: var(--text-muted); }
.price-block { background: var(--bg-2); border: 2px solid var(--border); border-radius: var(--r-md); padding: 18px 22px; display: flex; flex-direction: column; gap: 8px; }

.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-radius: var(--r-md); overflow: hidden; border: 2px solid var(--border); }
.spec-item { background: #fff; padding: 12px 14px; display: flex; flex-direction: column; gap: 4px; transition: background var(--t); }
.spec-item:hover { background: var(--bg-2); }
.spec-label { font-size: 10px; color: var(--text-muted); font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.spec-item span:last-child { font-size: 14px; font-weight: 700; color: var(--text); }

.detail-desc { background: var(--bg-2); border: 2px solid var(--border); border-radius: var(--r-md); padding: 18px 20px; font-size: 14px; line-height: 1.8; color: var(--text-mid); }
.detail-desc h3 { font-size: 11px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; }

.contact-card {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-card);
  position: sticky; top: calc(var(--header-h) + 20px);
}
.contact-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light); }
.contact-avatar { width: 46px; height: 46px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; flex-shrink: 0; }
.contact-name { font-size: 15px; font-weight: 800; color: var(--text); }
.contact-role { font-size: 12px; color: var(--text-muted); }
.contact-btns { display: flex; flex-direction: column; gap: 9px; }

/* ================================================================
   GALLERY
   ================================================================ */
.gal-main { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--bg-2); box-shadow: var(--shadow-card); border: 2px solid var(--border); }
.gal-img { width: 100%; height: 400px; object-fit: cover; display: block; transition: transform .4s; }
.gal-main:hover .gal-img { transform: scale(1.02); }
.no-img-lg { width: 100%; height: 280px; background: var(--bg-2); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: .35; border: 2px solid var(--border); }
.gal-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  color: var(--navy); border: 1.5px solid var(--border);
  font-size: 1.4rem; width: 46px; height: 46px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--t); box-shadow: var(--shadow-sm);
}
.gal-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.gal-prev { left: 12px; } .gal-next { right: 12px; }
.gal-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; scrollbar-width: none; }
.gal-thumbs::-webkit-scrollbar { display: none; }
.gal-thumb { flex-shrink: 0; width: 76px; height: 62px; object-fit: cover; border-radius: 9px; cursor: pointer; opacity: .55; border: 2.5px solid transparent; transition: all var(--t); }
.gal-thumb:hover { opacity: .85; }
.gal-thumb.active { opacity: 1; border-color: var(--navy); box-shadow: 0 0 0 2px var(--gold); }

/* ================================================================
   GUIDES
   ================================================================ */
.guides-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; margin-bottom: 28px; }
a.guide-card { display: flex; flex-direction: column; background: var(--bg-card); border: 2px solid var(--border-light); border-radius: var(--r-lg); overflow: hidden; text-decoration: none; color: inherit; transition: all var(--t); box-shadow: var(--shadow-xs); }
a.guide-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.guide-photo { width: 100%; height: 210px; object-fit: cover; transition: transform .4s; }
a.guide-card:hover .guide-photo { transform: scale(1.04); }
.guide-ph { width: 100%; height: 210px; background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-size: 4rem; opacity: .4; }
.guide-info { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.guide-name { font-size: 1rem; font-weight: 800; color: var(--text); }
.guide-spec { font-size: 13px; color: var(--navy); font-weight: 600; }
.guide-city { font-size: 12px; color: var(--text-muted); }
.guide-langs { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.guide-rate { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-top: auto; padding-top: 10px; }
.badge-lang { background: var(--bg-2); color: var(--navy); padding: 2px 8px; border-radius: 20px; font-size: .75rem; font-weight: 700; border: 1px solid var(--border); }

/* ================================================================
   AUTH
   ================================================================ */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 20px; position: relative; overflow: hidden;
}
.auth-page::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(240,200,40,.08) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 50px 50px,
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 50px 50px;
}
.auth-card {
  background: #fff; border-radius: var(--r-xl);
  padding: 40px 36px; width: 100%; max-width: 420px;
  box-shadow: 0 32px 80px rgba(13,26,94,.4);
  position: relative; z-index: 1;
}
.auth-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 28px; }
.auth-logo img { height: 60px; }
.auth-title { font-size: 1.3rem; font-weight: 800; text-align: center; margin-bottom: 5px; color: var(--text); }
.auth-subtitle { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 26px; }
.auth-footer { text-align: center; margin-top: 22px; font-size: 13px; color: var(--text-muted); }
.auth-footer a { color: var(--navy); font-weight: 700; }

/* ================================================================
   MAP CTA
   ================================================================ */
.map-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 72px 20px; text-align: center; color: #fff;
  border-top: 4px solid var(--gold); border-bottom: 4px solid var(--gold);
}
.map-cta h2 { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.map-cta p { color: rgba(255,255,255,.75); margin-bottom: 28px; }

/* ================================================================
   DASHBOARD
   ================================================================ */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 28px; }
.dash-card { background: var(--bg-card); border: 2px solid var(--border-light); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-xs); }
.dash-card h3 { font-size: 12px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border-light); }

/* ================================================================
   LANG SWITCHER + THEME TOGGLE
   ================================================================ */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: var(--bg-2); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 3px;
}
.lang-btn {
  padding: 5px 9px; border-radius: 6px;
  font-size: 12px; font-weight: 800; color: var(--text-muted);
  cursor: pointer; border: none; background: transparent;
  transition: all var(--t); font-family: inherit;
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.active { background: var(--navy); color: #fff; box-shadow: 0 2px 8px rgba(20,40,140,.25); }
.theme-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; background: var(--bg-2); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); color: var(--text-mid); font-size: 13px;
  font-weight: 700; cursor: pointer; transition: all var(--t); font-family: inherit;
}
.theme-toggle:hover { background: var(--bg-3); border-color: var(--navy); color: var(--navy); }
.mobile-controls { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; border-bottom: 1px solid var(--border-light); gap: 10px; }

/* ================================================================
   EMPTY STATE
   ================================================================ */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 4rem; display: block; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.1rem; font-weight: 800; color: var(--text-mid); margin-bottom: 8px; }
.empty-state p { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(min-width: 768px) {
  body { padding-bottom: 0; }
  .bottom-nav { display: none; }
  .burger { display: none; }
  .main-nav { display: flex; }
  .header-actions { display: flex; }
  .site-footer { padding-bottom: 64px; }
}
@media(min-width: 1024px) {
  .detail-layout { grid-template-columns: 1fr 400px; }
}
@media(max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .detail-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}
@media(max-width: 767px) {
  :root { --header-h: 60px; }
  .logo-img { height: 44px; }
  .logo-tagline { display: none; }
  .hero { min-height: 420px; padding: 56px 16px 80px; }
  .hero h1 { font-size: 1.9rem; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-img, .card-img-ph { height: 150px; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .guide-photo, .guide-ph { height: 160px; }
  .filter-bar { gap: 8px; }
  .filter-input, .filter-select { min-width: 100%; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .gal-img { height: 250px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .section { padding: 36px 0; }
  .auth-card { padding: 28px 20px; }
}
@media(max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; gap: 0; border-radius: var(--r-md); }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .hero-stat:last-child { border-bottom: none; }
}

/* ================================================================
   LANG SWITCHER — FLOATING PILL (mobile persistent)
   ================================================================ */
.lang-float {
  display: none;
}
@media(max-width: 767px) {
  /* Floating lang pill — always visible on mobile */
  .lang-float {
    display: flex;
    position: fixed;
    bottom: calc(var(--bottom-nav-h) + 12px);
    right: 14px;
    z-index: 498;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(20,40,140,.15);
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(20,40,140,.18), 0 1px 0 rgba(255,255,255,.8) inset;
    gap: 2px;
  }
  .lang-float .lang-btn {
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    letter-spacing: .2px;
  }
  .lang-float .lang-btn.active {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 2px 10px rgba(20,40,140,.35);
  }
}

/* ================================================================
   MOBILE FOOTER — iOS 26 Glass style
   ================================================================ */
@media(max-width: 767px) {
  .site-footer {
    display: none !important; /* hide full footer on mobile */
  }
  /* Ultra-minimal glass footer bar */
  .footer-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 20px calc(var(--bottom-nav-h) + 20px);
    text-align: center;
    background: rgba(13,26,94,.0);
    border-top: none;
    margin-top: 24px;
  }
  .footer-mobile-logo {
    height: 38px;
    width: auto;
    margin-bottom: 10px;
    opacity: .7;
    filter: contrast(1.1);
  }
  .footer-mobile-copy {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
  }
  .footer-mobile-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    font-size: 11px;
  }
  .footer-mobile-links a {
    color: var(--text-muted);
    text-decoration: none;
  }
  .footer-mobile-links a:hover { color: var(--navy); }
}
@media(min-width: 768px) {
  .footer-mobile { display: none; }
}

/* ================================================================
   MOBILE OPTIMIZATIONS — Comprehensive
   ================================================================ */
@media(max-width: 767px) {
  /* Better tap targets */
  .btn { min-height: 44px; }
  .btn-sm { min-height: 38px; padding: 9px 16px; }
  .btn-xs { min-height: 32px; }
  
  /* Filter bar — vertical stack */
  .filter-bar {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
  .filter-bar .btn { width: 100%; justify-content: center; }
  
  /* Cards — better mobile sizing */
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-img { height: 140px; }
  .card-img-ph { height: 140px; }
  .card-body { padding: 10px 12px 13px; }
  .card-title { font-size: 13px; }
  .card-sub { font-size: 11px; }
  .card-price { font-size: 1rem; }
  
  /* Module cards */
  .modules-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .module-icon { width: 46px; height: 46px; font-size: 20px; margin-bottom: 9px; }
  .module-title { font-size: 12px; }
  a.module-card { padding: 18px 10px 14px; }
  
  /* Detail layout */
  .detail-layout { grid-template-columns: 1fr; gap: 18px; }
  .contact-card { position: static; }
  .specs-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .spec-item { padding: 10px 12px; }
  
  /* Gallery */
  .gal-img { height: 220px; }
  .gal-btn { width: 38px; height: 38px; font-size: 1.1rem; }
  .gal-thumb { width: 58px; height: 48px; }
  
  /* Hero */
  .hero { padding: 44px 16px 60px; }
  .hero h1 { font-size: 1.7rem; letter-spacing: -.3px; }
  .hero-subtitle { font-size: 13.5px; }
  .hero-search { border-radius: var(--r-md); padding: 5px; }
  .hero-input { font-size: 14px; padding: 9px 12px; }
  
  /* Sections */
  .section { padding: 28px 0; }
  .section-header h2 { font-size: 1.15rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-header .btn { align-self: flex-start; }
  
  /* Page hero */
  .page-hero { padding: 36px 16px 48px; }
  .page-hero h1 { font-size: 1.5rem; }
  
  /* Guides */
  .guides-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .guide-photo { height: 150px; }
  .guide-ph { height: 150px; }
  .guide-info { padding: 11px 12px; }
  .guide-name { font-size: .9rem; }
  
  /* Map CTA */
  .map-cta { padding: 44px 20px; }
  .map-cta h2 { font-size: 1.3rem; }
  
  /* Auth */
  .auth-card { padding: 24px 18px 28px; border-radius: var(--r-lg); }
  .auth-logo img { height: 52px; }
  .auth-title { font-size: 1.1rem; }
  
  /* Tables → cards */
  .table-responsive table { display: block; overflow-x: auto; }

  /* Pagination */
  .pagination { gap: 4px; }
  .page-link { min-width: 36px; height: 36px; font-size: 12px; }
  
  /* Typography */
  body { font-size: 14px; }
  h2 { font-size: 1.25rem; }
}

@media(max-width: 380px) {
  .cards-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .hero h1 { font-size: 1.45rem; }
  .bottom-nav-item { font-size: 9px; }
  .bn-icon { font-size: 18px; }
}

/* ================================================================
   TOUCH / INTERACTION IMPROVEMENTS
   ================================================================ */
@media(hover: none) {
  /* Remove hover effects on touch devices */
  a.card:hover, a.module-card:hover, a.guide-card:hover {
    transform: none;
    box-shadow: var(--shadow-xs);
  }
  .btn:hover { transform: none; }
  /* Add active state instead */
  a.card:active  { transform: scale(.98); }
  a.module-card:active { transform: scale(.97); }
  .btn:active    { transform: scale(.97); opacity: .9; }
}

/* Smooth momentum scrolling */
.cards-grid, .guides-grid {
  -webkit-overflow-scrolling: touch;
}

/* Prevent text selection on interactive elements */
.btn, .lang-btn, .bottom-nav-item, .page-link {
  -webkit-user-select: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* ================================================================
   CACHE BUSTING — Version flag
   ================================================================ */
/* v2.1.0 — 2026-04 */

/* ================================================================
   MOBILE IMPROVEMENTS (iOS 26 / Liquid Glass style)
   ================================================================ */

/* ── Better mobile nav with lang switcher always visible ── */
@media(max-width: 767px) {

  /* Header: logo + lang + burger on same row */
  .header-inner {
    padding: 0 14px;
    gap: 8px;
  }
  .logo-img { height: 40px; }

  /* Show lang switcher in header on mobile too */
  .header-lang-mobile {
    display: flex !important;
  }
  .header-actions { display: none; }

  /* Hero */
  .hero {
    min-height: 380px;
    padding: 44px 16px 56px;
    text-align: center;
  }
  .hero h1 {
    font-size: 1.55rem;
    letter-spacing: -.4px;
    line-height: 1.2;
  }
  .hero h1 em { display: block; }
  .hero-subtitle { font-size: 13px; }
  .hero-search {
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    border-radius: var(--r-md);
    max-width: 100%;
  }
  .hero-search .btn { width: 100%; padding: 12px; border-radius: calc(var(--r-md) - 4px); }

  /* Module grid */
  .modules-section { padding: 20px 0 4px; }
  .modules-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
  }
  a.module-card { padding: 20px 10px 16px; border-radius: 14px; }
  .module-icon { width: 50px; height: 50px; font-size: 22px; }
  .module-title { font-size: 13px; }

  /* Cards grid */
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  a.card { border-radius: 14px; }
  .card-img, .card-img-ph { height: 140px; }
  .card-body { padding: 10px 12px 14px; gap: 3px; }
  .card-title { font-size: 13px; }
  .card-sub { font-size: 11px; }
  .card-price { font-size: 1.05rem; }

  /* Section */
  .section { padding: 28px 0; }
  .section-header h2 { font-size: 1.15rem; }

  /* Guides */
  .guides-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .guide-photo, .guide-ph { height: 140px; }
  .guide-info { padding: 10px 12px; }
  .guide-name { font-size: 13px; }

  /* Filter bar */
  .filter-bar { padding: 10px; gap: 6px; border-radius: 14px; }
  .filter-input, .filter-select { font-size: 13px; padding: 9px 11px; min-width: 0; flex: 1; }

  /* Detail */
  .detail-layout { grid-template-columns: 1fr; gap: 16px; }
  .gal-img { height: 220px; }
  .detail-info h1 { font-size: 1.3rem; }
  .price-main { font-size: 1.6rem; }
  .specs-grid { grid-template-columns: 1fr 1fr; gap: 1px; }

  /* Auth */
  .auth-card { padding: 24px 18px; border-radius: 20px; }

  /* Page hero */
  .page-hero { padding: 36px 16px 48px; }
  .page-hero h1 { font-size: 1.4rem; }

  /* Map CTA */
  .map-cta { padding: 48px 16px; }
  .map-cta h2 { font-size: 1.3rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: 12px; gap: 5px; }
  .container { padding: 0 14px; }
}

@media(max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2,1fr); }
  .hero h1 { font-size: 1.3rem; }
}

/* ================================================================
   iOS 26 LIQUID GLASS FOOTER — mobile only
   ================================================================ */
@media(max-width: 767px) {

  .site-footer {
    display: none; /* Hide heavy footer on mobile */
  }

  /* Minimalist mobile footer — glass above bottom nav */
  .mobile-footer-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px calc(var(--bottom-nav-h) + 20px);
    background: linear-gradient(180deg, transparent 0%, rgba(20,40,140,.04) 100%);
    border-top: 1px solid var(--border-light);
    gap: 10px;
  }
  .mobile-footer-mini img { height: 32px; opacity: .6; }
  .mobile-footer-mini-links {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  }
  .mobile-footer-mini-links a {
    font-size: 12px; color: var(--text-muted); text-decoration: none;
    transition: color var(--t);
  }
  .mobile-footer-mini-links a:hover { color: var(--navy); }
  .mobile-footer-mini-copy {
    font-size: 11px; color: var(--text-muted);
  }
}
@media(min-width: 768px) {
  .mobile-footer-mini { display: none; }
}

/* ================================================================
   BOTTOM NAV — iOS 26 Liquid Glass
   ================================================================ */
.bottom-nav {
  background: rgba(255,255,255,.72) !important;
  backdrop-filter: blur(32px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(180%) !important;
  border-top: 0.5px solid rgba(20,40,140,.12) !important;
  box-shadow: 0 -1px 0 rgba(255,255,255,.5), 0 -8px 32px rgba(20,40,140,.06) !important;
}
.bottom-nav-item { color: rgba(20,40,140,.45) !important; }
.bottom-nav-item.active { color: var(--navy) !important; }
.bottom-nav-item.active::after { background: var(--navy) !important; }
.bn-icon { font-size: 22px !important; }
.bottom-nav-item span:last-child { font-size: 9.5px !important; letter-spacing: .1px; }

/* ================================================================
   LANG SWITCHER — mobile header fix
   ================================================================ */
.header-lang-mobile {
  display: none; /* shown via media query override above */
  align-items: center;
  gap: 2px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 3px;
  flex-shrink: 0;
}
.header-lang-mobile .lang-btn {
  padding: 4px 7px;
  font-size: 11px; font-weight: 800;
  color: var(--text-muted); cursor: pointer;
  border: none; background: transparent; font-family: inherit;
  border-radius: 5px; transition: all var(--t);
}
.header-lang-mobile .lang-btn.active {
  background: var(--navy); color: #fff;
}

/* ================================================================
   CACHE BUSTING — force fresh styles
   ================================================================ */
* { -webkit-tap-highlight-color: transparent; }
