﻿:root {
  --navy: #0A2E52;
  --gold: #F5A623;
  --sky: #1E88E5;
  --smoke: #F8F9FA;
  --graphite: #2D3748;
  --gray: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --light-blue: #F0F6FF;
  --shadow: 0 12px 34px rgba(10, 46, 82, 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img, canvas { max-width: 100%; }
a { color: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section-soft { background: var(--smoke); }
.section-blue { background: var(--light-blue); }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title, .page-title, .hero-title, .card-title, .form-title {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.section-desc { color: var(--gray); max-width: 680px; }
.center { text-align: center; }
.center .section-desc { margin-left: auto; margin-right: auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.72rem 1.35rem;
  border-radius: 8px;
  border: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.13); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-sky { background: var(--sky); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.85); }
.btn-outline:hover { background: rgba(255,255,255,0.14); }
.btn-small { min-height: 38px; padding: 0.55rem 1rem; font-size: 0.82rem; }

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 46, 82, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.nav-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; min-width: 190px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: var(--navy);
  font-family: 'Poppins', sans-serif; font-weight: 800;
}
.nav-brand { font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--white); line-height: 1.05; font-size: 1.02rem; }
.nav-brand span { display: block; color: var(--gold); font-size: 0.58rem; letter-spacing: 1.8px; font-weight: 500; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.1rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.84rem; font-weight: 600; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: 0; padding: 0.35rem; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; border-radius: 2px; background: var(--white); display: block; }

.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A2E52 0%, #0d3d6e 58%, #1a5276 100%);
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: 520px; height: 520px; top: -150px; right: -130px; background: rgba(245,166,35,0.07); }
.hero::after { width: 300px; height: 300px; left: -90px; bottom: -90px; background: rgba(30,136,229,0.1); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr); gap: 3.5rem; align-items: center; padding: 4.5rem 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.42rem 1rem; border-radius: 999px; color: var(--gold); background: rgba(245,166,35,0.15); font-size: 0.76rem; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 1.35rem; }
.hero-title { color: var(--white); font-size: clamp(2.15rem, 5vw, 4.25rem); margin-bottom: 1.15rem; }
.hero-subtitle { max-width: 650px; color: rgba(255,255,255,0.82); font-size: 1.06rem; margin-bottom: 1.5rem; }
.hero-secondary { color: var(--gold); font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 1.85rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2.2rem; }
.stat-num { display: block; font-family: 'Poppins', sans-serif; color: var(--gold); font-weight: 800; font-size: 1.45rem; }
.stat-label { color: rgba(255,255,255,0.66); font-size: 0.78rem; }
.hero-visual { display: grid; place-items: center; }
.globe-shell { position: relative; width: 360px; height: 360px; display: grid; place-items: center; }
.globe-shell::before, .globe-shell::after { content: ''; position: absolute; border-radius: 50%; border: 1.5px dashed rgba(245,166,35,0.38); inset: 0; animation: spin 22s linear infinite; }
.globe-shell::after { inset: 28px; border-color: rgba(30,136,229,0.34); animation-direction: reverse; animation-duration: 16s; }
#globeCanvas { position: relative; z-index: 1; width: 340px; height: 340px; cursor: grab; }
.home-visual-stack { position: relative; display: grid; place-items: center; }
.journey-panel {
  position: absolute;
  left: -24px;
  bottom: 12px;
  width: min(260px, 82vw);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(248,249,250,0.94);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.journey-panel span { display: block; color: var(--gold); font-size: 0.72rem; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; }
.journey-panel strong { display: block; color: var(--navy); font-family: 'Poppins', sans-serif; line-height: 1.2; margin: 0.3rem 0; }
.journey-panel small { color: var(--gray); }
@keyframes spin { to { transform: rotate(360deg); } }

.page-hero { padding: 9rem 0 4.5rem; background: linear-gradient(135deg, var(--navy), #124a78); color: var(--white); }
.page-hero .section-tag, .page-hero .page-kicker { color: var(--gold); }
.page-title { color: var(--white); font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 1rem; }
.page-desc { color: rgba(255,255,255,0.82); max-width: 760px; font-size: 1.05rem; }
.page-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }

.grid { display: grid; gap: 1.35rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.55rem;
  box-shadow: 0 3px 12px rgba(10,46,82,0.04);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(30,136,229,0.2); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 8px; background: var(--light-blue); color: var(--navy); font-size: 1.35rem; margin-bottom: 1rem; }
.card-title { font-size: 1.05rem; margin-bottom: 0.55rem; }
.card-text { color: var(--gray); font-size: 0.93rem; }
.price { display: block; margin: 0.95rem 0; color: var(--navy); font-family: 'Poppins', sans-serif; font-weight: 800; }
.list { list-style: none; display: grid; gap: 0.7rem; }
.list li { position: relative; padding-left: 1.55rem; color: var(--graphite); }
.list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 900; }
.notice { border-left: 4px solid var(--gold); background: #fff8ea; padding: 1.25rem 1.4rem; border-radius: 8px; color: #59401b; }
.placeholder-card { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(145deg, #ffffff, #eef6ff); }
.placeholder-badge { align-self: flex-start; background: rgba(30,136,229,0.1); color: var(--sky); border-radius: 999px; padding: 0.25rem 0.7rem; font-size: 0.75rem; font-weight: 800; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.home-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; margin-top: 2.5rem; }
.home-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(10,46,82,0.04);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.home-service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(30,136,229,0.2); }
.home-service-card img { width: 100%; height: 220px; object-fit: cover; display: block; background: var(--smoke); }
.home-service-body { min-height: 235px; padding: 1.25rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; }
.home-service-body .card-title { margin-bottom: 0; }
.home-service-body .card-text { margin-bottom: auto; }
.consult-panel {
  display: grid;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}
.consult-panel div { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: center; padding: 0.9rem; border-radius: 8px; background: var(--smoke); }
.consult-panel strong { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 8px; background: var(--gold); color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 1.2rem; }
.consult-panel span { color: var(--graphite); font-weight: 700; }
.home-widget-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr); gap: 1.25rem; align-items: start; margin-top: 2.5rem; }
.home-widget-grid .widget-panel:first-child { grid-row: span 2; }
.mini-link-row { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1rem; }
.travel-mosaic { display: grid; grid-template-columns: 1fr 0.8fr; grid-template-rows: 170px 170px; gap: 1rem; }
.travel-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: 0 8px 22px rgba(10,46,82,0.12); background: var(--smoke); }
.travel-mosaic img:first-child { grid-row: span 2; }
.shop-preview-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.shop-preview-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(10,46,82,0.04);
}
.shop-preview-grid img { width: 100%; height: 150px; object-fit: contain; display: block; padding: 0.8rem; background: var(--smoke); }
.shop-preview-grid span { display: block; padding: 0.8rem; color: var(--navy); font-weight: 800; font-size: 0.88rem; }

.widget-stack { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
.widget-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.8fr); gap: 1.25rem; align-items: start; margin-top: 2.5rem; }
.widget-grid .widget-panel:first-child { grid-row: span 2; }
.widget-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 3px 12px rgba(10,46,82,0.04);
  overflow: hidden;
}
.travel-widget {
  width: 100%;
  min-height: 150px;
  margin-top: 1rem;
  overflow: hidden;
}
.travel-widget iframe, .travel-widget > div { max-width: 100%; }
.travel-widget-compact { min-height: 250px; }

.visa-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.35rem; margin-top: 2.5rem; }
.visa-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(10,46,82,0.04);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.visa-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(30,136,229,0.2); }
.visa-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: var(--smoke);
}
.visa-card-body {
  min-height: 245px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}
.visa-card-body .card-title { margin-bottom: 0; }
.visa-card-body .card-text { margin-bottom: auto; }
.visa-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(10,46,82,0.62);
}
.visa-modal.show { display: flex; }
.visa-modal-box {
  width: min(920px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
  position: relative;
}
.visa-modal-img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; background: var(--smoke); }
.visa-modal-content { padding: 2rem; }
.visa-modal-content .section-title { font-size: clamp(1.45rem, 3vw, 2.1rem); }
.visa-modal-content .list { margin: 1.25rem 0 1.5rem; }
.modal-open { overflow: hidden; }

.shop-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.35rem; margin-top: 2.5rem; }
.shop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(10,46,82,0.04);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.shop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(30,136,229,0.2); }
.shop-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  display: block;
  background: var(--smoke);
  padding: 1rem;
}
.shop-card-body { padding: 1.2rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.65rem; min-height: 230px; }
.shop-card-body .card-title { margin-bottom: 0; }
.shop-card-body .card-text { margin-bottom: auto; }
.shop-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(245,166,35,0.15);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; box-shadow: var(--shadow); }
.form-title { font-size: 1.3rem; margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.38rem; margin-bottom: 1rem; }
.form-group label { color: var(--navy); font-weight: 800; font-size: 0.82rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: 0.72rem 0.85rem;
  font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--graphite); outline: 0; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sky); }
.form-group textarea { min-height: 105px; resize: vertical; }
.form-submit { width: 100%; }
.form-privacy-note { margin-top: 0.85rem; color: var(--gray); font-size: 0.78rem; line-height: 1.5; }
.form-privacy-note a { color: var(--navy); font-weight: 800; }

.contact-channel { display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid var(--border); border-radius: 8px; text-decoration: none; background: var(--white); margin-bottom: 0.9rem; }
.channel-icon { width: 44px; height: 44px; border-radius: 8px; display: grid; place-items: center; background: var(--light-blue); }
.channel-label { font-size: 0.78rem; color: var(--gray); }
.channel-value { font-weight: 800; color: var(--navy); }

.professional-modal { position: fixed; inset: 0; z-index: 300; background: rgba(10,46,82,0.46); display: none; align-items: flex-end; justify-content: center; padding: 1rem; }
.professional-modal.show { display: flex; }
.modal-box { width: min(520px, 100%); background: var(--white); border-radius: 8px; padding: 1.45rem; box-shadow: 0 24px 60px rgba(0,0,0,0.22); position: relative; }
.modal-close { position: absolute; top: 0.75rem; right: 0.75rem; width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--smoke); cursor: pointer; color: var(--navy); font-weight: 900; }
.modal-box h2 { font-family: 'Poppins', sans-serif; color: var(--navy); font-size: 1.25rem; margin-bottom: 0.5rem; padding-right: 2rem; }
.modal-box p { color: var(--gray); margin-bottom: 1rem; }

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 330;
  display: none;
  justify-content: center;
  pointer-events: none;
}
.cookie-consent.show { display: flex; }
.cookie-box {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 18px 48px rgba(10,46,82,0.18);
  pointer-events: auto;
}
.cookie-box h2 { font-family: 'Poppins', sans-serif; color: var(--navy); font-size: 1rem; margin-bottom: 0.25rem; }
.cookie-box p { color: var(--gray); font-size: 0.86rem; }
.cookie-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; justify-content: flex-end; }
.cookie-legal { color: var(--navy); border-color: var(--border); }
.cookie-legal:hover { background: var(--smoke); }

.wa-float { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 210; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: var(--white); display: grid; place-items: center; text-decoration: none; font-size: 1.55rem; box-shadow: 0 8px 24px rgba(37,211,102,0.42); animation: pulse 2.5s infinite; }
.wa-float:hover { transform: scale(1.06); animation: none; }
@keyframes pulse { 50% { box-shadow: 0 8px 34px rgba(37,211,102,0.72); } }

.site-footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 3.4rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.footer-tagline { color: var(--gold); font-size: 0.86rem; }
.footer-col h3 { font-family: 'Poppins', sans-serif; color: var(--white); font-size: 0.96rem; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.42rem; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; font-size: 0.78rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 1rem; background: var(--navy); padding: 1.25rem 1.5rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-inner { text-align: center; gap: 2rem; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .home-service-grid { grid-template-columns: 1fr; }
  .home-service-card img { height: 210px; }
  .home-service-body { min-height: auto; }
  .home-widget-grid { grid-template-columns: 1fr; }
  .home-widget-grid .widget-panel:first-child { grid-row: auto; }
  .travel-mosaic { grid-template-rows: 150px 150px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .widget-grid { grid-template-columns: 1fr; }
  .widget-grid .widget-panel:first-child { grid-row: auto; }
  .visa-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visa-card img { height: 200px; }
  .visa-modal-box { grid-template-columns: 1fr; }
  .visa-modal-img { min-height: 240px; max-height: 300px; }
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-card img { height: 190px; }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  .section { padding: 4rem 0; }
  .page-hero { padding: 8rem 0 3.5rem; }
  .grid-2, .grid-3, .grid-4, .form-row { grid-template-columns: 1fr; }
  .widget-panel { padding: 1rem; }
  .travel-widget { min-height: 180px; }
  .visa-grid { grid-template-columns: 1fr; }
  .visa-card img { height: 190px; }
  .visa-card-body { min-height: auto; }
  .visa-modal-content { padding: 1.25rem; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card img { height: 180px; }
  .shop-card-body { min-height: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn { width: 100%; }
  .nav-logo { min-width: 0; }
  .nav-brand { font-size: 0.88rem; }
  .consult-panel div { grid-template-columns: 40px 1fr; padding: 0.75rem; }
  .consult-panel strong { width: 40px; height: 40px; }
  .travel-mosaic, .shop-preview-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .travel-mosaic img, .travel-mosaic img:first-child { grid-row: auto; height: 190px; }
  .cookie-box { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .globe-shell::before, .globe-shell::after, .wa-float { animation: none; }
}

/* Lang Switcher */
.lang-switcher { position: relative; display: flex; align-items: center; }
.lang-toggle { background: none; border: none; cursor: pointer; color: var(--white); display: flex; align-items: center; justify-content: center; padding: 0.35rem; border-radius: 50%; transition: background 0.2s; opacity: 0.85; }
.lang-toggle:hover { background: rgba(255,255,255,0.12); opacity: 1; }
.lang-dropdown { position: absolute; top: calc(100% + 10px); right: 0; background: var(--navy); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 0.4rem 0; min-width: 138px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity 0.18s, transform 0.18s; z-index: 300; }
.lang-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option { display: block; width: 100%; background: none; border: none; color: var(--white); padding: 0.52rem 1.1rem; text-align: left; cursor: pointer; font-size: 0.84rem; font-family: inherit; transition: background 0.15s; }
.lang-option:hover { background: rgba(255,255,255,0.1); }
/* Hide Google Translate toolbar */
.goog-te-banner-frame { display: none !important; }
.goog-te-gadget { display: none !important; }
body { top: 0 !important; }
