/* ============================================================
   Discover Real Europe — Design Tokens
   Navy Deep #0B1B3D / Navy Mid #142B54
   Gold Bright #F5A623 / Gold Deep #C97A1A
   Ivory BG #FBF8F2 / Card White #FFFFFF
   Slate Text #3A4054 / Hairline #E4DFD3
   Display: Noto Serif Georgian · Body: Noto Sans Georgian
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Georgian:wght@500;600;700;800&family=Noto+Sans+Georgian:wght@400;500;600;700&display=swap');

:root{
  --navy-deep:#0B1B3D;
  --navy-mid:#142B54;
  --navy-soft:#1F3868;
  --gold-bright:#F5A623;
  --gold-deep:#C97A1A;
  --ivory:#FBF8F2;
  --card:#FFFFFF;
  --slate:#3A4054;
  --slate-soft:#6B7185;
  --hairline:#E4DFD3;
  --shadow: 0 18px 40px -18px rgba(11,27,61,0.35);
  --radius-lg: 22px;
  --radius-md: 14px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ivory);
  color:var(--slate);
  font-family:'Noto Sans Georgian','Noto Sans',sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family:'Noto Serif Georgian','Noto Serif',serif;
  color:var(--navy-deep);
  margin:0 0 .5em;
  line-height:1.25;
  font-weight:700;
}
p{ margin:0 0 1em; }
.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 28px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:'Noto Sans Georgian',sans-serif;
  font-weight:700;
  letter-spacing:.04em;
  font-size:13px;
  color:var(--gold-deep);
  text-transform:uppercase;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px;height:2px;
  background:var(--gold-bright);
  display:inline-block;
}
.gold-text{
  background:linear-gradient(100deg,var(--gold-bright),var(--gold-deep));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  font-family:'Noto Sans Georgian',sans-serif;
  cursor:pointer;
  border:none;
  transition:transform .18s ease, box-shadow .18s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-gold{
  background:linear-gradient(100deg,var(--gold-bright),var(--gold-deep));
  color:var(--navy-deep);
  box-shadow:0 12px 26px -10px rgba(201,122,26,0.55);
}
.btn-outline{
  background:transparent;
  color:var(--card);
  border:1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover{ border-color:#fff; }
.btn-navy{
  background:var(--navy-deep);
  color:#fff;
}

/* ---------- Header / Nav ---------- */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  padding:16px 0;
  transition:background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.solid{
  background:rgba(11,27,61,0.94);
  backdrop-filter: blur(6px);
  box-shadow:0 8px 24px -12px rgba(0,0,0,.4);
  padding:10px 0;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{ height:52px; width:auto; transition:height .3s ease; }
.site-header.solid .brand img{ height:44px; }
.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  color:#fff;
  font-weight:600;
  font-size:14.5px;
  letter-spacing:.02em;
  position:relative;
  padding:4px 0;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-4px;
  height:2px;
  background:var(--gold-bright);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ transform:scaleX(1); }
.nav-links a.active{ color:var(--gold-bright); }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.burger{
  display:none;
  width:42px; height:42px;
  border-radius:10px;
  border:1.5px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.08);
  align-items:center; justify-content:center;
  cursor:pointer;
  flex-shrink:0;
}
.burger svg{ width:20px; height:20px; }
.mobile-nav{
  position:fixed;
  top:0; right:0; bottom:0;
  width:78%; max-width:320px;
  background:var(--navy-deep);
  z-index:200;
  padding:26px 24px;
  box-shadow:-20px 0 50px -20px rgba(0,0,0,.5);
  transform:translateX(100%);
  transition:transform .3s ease;
  overflow-y:auto;
}
.mobile-nav.open{ transform:translateX(0); }
.mobile-nav-close{
  width:38px; height:38px; border-radius:10px;
  background:rgba(255,255,255,.08); border:none;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:30px; cursor:pointer;
}
.mobile-nav-close svg{ width:18px; height:18px; }
.mobile-nav ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:6px; }
.mobile-nav a{
  display:block; color:#fff; font-weight:700; font-size:17px;
  padding:14px 6px; border-bottom:1px solid rgba(255,255,255,.1);
}
.mobile-nav .btn{ margin-top:24px; width:100%; justify-content:center; }
.nav-game-badge{
  display:inline-flex; align-items:center; gap:7px; background:rgba(255,255,255,.1);
  border:1px solid rgba(245,166,35,.5); border-radius:99px; padding:5px 12px 5px 5px;
  margin-right:14px; transition:background .2s ease;
}
.nav-game-badge:hover{ background:rgba(255,255,255,.18); }
.nav-game-badge img{ width:22px; height:22px; border-radius:6px; display:block; }
.nav-game-badge span{ color:#fff; font-size:12.5px; font-weight:700; white-space:nowrap; }
@media (max-width:980px){ .nav-game-badge{ display:none; } }
.mobile-nav-game-link{
  display:flex; align-items:center; gap:10px; background:rgba(255,255,255,.08);
  border:1px solid rgba(245,166,35,.5); border-radius:14px; padding:10px 14px; margin-top:18px;
}
.mobile-nav-game-link img{ width:30px; height:30px; border-radius:8px; }
.mobile-nav-game-link span{ color:#fff; font-size:14px; font-weight:700; }
.mobile-nav-game-link small{ display:block; color:rgba(255,255,255,.65); font-size:11.5px; font-weight:400; }
.nav-scrim{
  display:none; position:fixed; inset:0; background:rgba(11,27,61,.55); z-index:199;
}
.nav-scrim.open{ display:block; }

.lang-switch{
  display:inline-flex; align-items:center; justify-content:center;
  padding:9px 14px; border-radius:999px;
  border:1.5px solid rgba(255,255,255,.35);
  color:#fff; font-weight:700; font-size:13px;
  flex-shrink:0;
}
.lang-switch:hover{ border-color:#fff; }
.mobile-nav .lang-switch{
  display:inline-flex; margin-top:14px; border-color:rgba(255,255,255,.3);
}
.lang-switch-group{ display:inline-flex; gap:4px; flex-shrink:0; }
.lang-switch-group .lang-switch{ padding:6px 9px; font-size:11.5px; }
.lang-switch-group .lang-switch.active{ background:rgba(255,255,255,.2); border-color:#fff; }
.mobile-nav .lang-switch-group{ display:inline-flex; margin-top:14px; gap:6px; flex-wrap:wrap; }
.mobile-nav .lang-switch-group .lang-switch{ border-color:rgba(255,255,255,.3); }

.install-banner{
  position:fixed; left:16px; right:16px; bottom:16px;
  max-width:420px; margin:0 auto;
  background:var(--navy-deep);
  color:#fff;
  border-radius:16px;
  padding:16px 18px;
  display:none;
  align-items:center;
  gap:14px;
  box-shadow:0 18px 40px -12px rgba(0,0,0,.45);
  z-index:300;
  border:1px solid rgba(255,255,255,.12);
}
.install-banner.show{ display:flex; }
.install-banner img{ width:42px; height:42px; border-radius:10px; flex-shrink:0; }
.install-banner .txt{ flex:1; min-width:0; }
.install-banner .txt b{ display:block; font-size:14px; margin-bottom:2px; }
.install-banner .txt span{ display:block; font-size:12px; color:rgba(255,255,255,.65); line-height:1.4; }
.install-banner .actions{ display:flex; flex-direction:column; gap:6px; flex-shrink:0; align-items:stretch; }
.install-banner button{
  border:none; cursor:pointer; border-radius:999px; font-weight:700; font-size:12.5px;
  padding:8px 14px; white-space:nowrap;
}
.install-banner .btn-install{
  background:linear-gradient(100deg,var(--gold-bright),var(--gold-deep));
  color:var(--navy-deep);
}
.install-banner .btn-dismiss{
  background:transparent; color:rgba(255,255,255,.55); font-size:11px; padding:4px;
}

.whatsapp-float{
  position:fixed;
  bottom:24px; right:24px;
  width:60px; height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(37,211,102,0.55);
  z-index:150;
  transition:transform .2s ease;
}
.whatsapp-float:hover{ transform:scale(1.08); }
.whatsapp-float svg{ width:30px; height:30px; }
@media (max-width:600px){
  .whatsapp-float{ width:52px; height:52px; bottom:18px; right:18px; }
  .whatsapp-float svg{ width:26px; height:26px; }
}

/* ---------- Hero (subpages) ---------- */
.page-hero{
  position:relative;
  padding:190px 0 100px;
  background:linear-gradient(160deg,var(--navy-deep),var(--navy-mid) 60%, var(--navy-soft));
  color:#fff;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:radial-gradient(circle at 85% 20%, rgba(245,166,35,0.18), transparent 45%);
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{ color:#fff; font-size:44px; margin-bottom:14px; }
.page-hero p.lead{ color:rgba(255,255,255,0.8); max-width:560px; font-size:17px; }
.crumb{
  color:rgba(255,255,255,0.6);
  font-size:13px;
  letter-spacing:.03em;
  margin-bottom:18px;
  display:block;
}
.crumb b{ color:var(--gold-bright); font-weight:700; }

/* Wave divider — echoes the banner's gold-trimmed navy curve */
.wave-divider{
  position:relative;
  height:74px;
  margin-top:-1px;
}
.wave-divider svg{ width:100%; height:100%; display:block; }

/* ---------- Compass motif ---------- */
.compass-rule{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin:10px 0 34px;
}
.compass-rule .line{
  height:1px; width:110px;
  background:var(--hairline);
}
.compass-rule svg{ width:30px; height:30px; flex-shrink:0; }

/* ---------- Sections ---------- */
section{ padding:88px 0; }
.section-ivory{ background:var(--ivory); }
.section-navy{ background:var(--navy-deep); color:#fff; }
.section-navy h2{ color:#fff; }
.section-head{ text-align:center; max-width:640px; margin:0 auto 54px; }
.section-head.left{ text-align:left; margin:0 0 44px; }
.section-head h2{ font-size:36px; }
.section-head p{ color:var(--slate-soft); font-size:17px; }

/* ---------- Cards: hot tours ---------- */
.tour-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
}
.tour-grid.wide{ grid-template-columns:repeat(3,1fr); }
.tour-card{
  background:var(--card);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
  display:flex;
  flex-direction:column;
}
.tour-card:hover{ transform:translateY(-6px); }
.tour-media{
  position:relative;
  aspect-ratio:16/10;
  background-size:cover;
  background-position:center;
}
.tour-badge{
  display:inline-flex;
  background:linear-gradient(100deg,var(--gold-bright),var(--gold-deep));
  color:var(--navy-deep);
  font-weight:800;
  font-size:12px;
  letter-spacing:.04em;
  padding:7px 14px;
  border-radius:999px;
  text-transform:uppercase;
  white-space:nowrap;
}
.tour-dates{
  display:inline-flex;
  background:var(--ivory);
  border:1px solid var(--hairline);
  color:var(--navy-deep);
  font-size:12.5px;
  font-weight:600;
  padding:6px 12px;
  border-radius:999px;
  white-space:nowrap;
}
.tour-meta-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.tour-body{ padding:26px 26px 28px; flex:1; display:flex; flex-direction:column; }
.tour-body h3{ font-size:22px; margin-bottom:8px; }
.tour-route{
  color:var(--gold-deep);
  font-weight:700;
  font-size:13.5px;
  letter-spacing:.02em;
  margin-bottom:10px;
}
.tour-body p{ color:var(--slate-soft); font-size:14.5px; flex:1; }
.tour-foot{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:16px; padding-top:16px;
  border-top:1px solid var(--hairline);
}
.tour-price{ font-family:'Noto Serif Georgian',serif; font-weight:700; font-size:19px; color:var(--navy-deep); }
.tour-price span{ font-size:12px; font-weight:500; color:var(--slate-soft); display:block; }
.tour-link{
  font-weight:700; font-size:14px; color:var(--navy-deep);
  display:inline-flex; align-items:center; gap:6px;
}
.tour-card.placeholder{
  align-items:center; justify-content:center; text-align:center;
  border:1.5px dashed var(--hairline); box-shadow:none; background:transparent;
  padding:40px 26px; min-height:280px;
}
.tour-card.placeholder h3{ font-size:18px; color:var(--slate-soft); }

/* ---------- Feature blocks ---------- */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.feature{
  background:var(--card);
  border-radius:var(--radius-md);
  padding:32px 26px;
  box-shadow:var(--shadow);
  text-align:left;
}
.feature .icon{
  width:52px; height:52px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy-mid),var(--navy-deep));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.feature .icon svg{ width:26px; height:26px; }
.feature h3{ font-size:19px; margin-bottom:8px; }
.feature p{ color:var(--slate-soft); font-size:14.5px; margin:0; }

/* ---------- Newsletter band ---------- */
.subscribe-band{
  background:linear-gradient(120deg,var(--navy-deep),var(--navy-mid));
  border-radius:var(--radius-lg);
  padding:52px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.subscribe-band::after{
  content:"";
  position:absolute; right:-60px; top:-60px;
  width:220px; height:220px; border-radius:50%;
  background:radial-gradient(circle, rgba(245,166,35,0.22), transparent 70%);
}
.subscribe-band h3{ color:#fff; font-size:24px; margin-bottom:6px; }
.subscribe-band p{ color:rgba(255,255,255,.75); margin:0; font-size:14.5px; }
.subscribe-form{
  display:flex; gap:10px; flex-shrink:0;
  position:relative; z-index:2;
}
.subscribe-form input{
  padding:13px 18px;
  border-radius:999px;
  border:none;
  width:250px;
  font-family:'Noto Sans Georgian',sans-serif;
  font-size:14px;
}
.subscribe-form input:focus{ outline:3px solid var(--gold-bright); }

/* ---------- Forms (general) ---------- */
.form-card{
  background:var(--card);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:40px;
  color:var(--slate);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.form-field{ display:flex; flex-direction:column; gap:6px; margin-bottom:18px; }
.form-field label{ font-weight:700; font-size:13.5px; color:var(--navy-deep); }
.form-field input, .form-field textarea, .form-field select{
  padding:13px 16px;
  border-radius:10px;
  border:1.5px solid var(--hairline);
  font-family:'Noto Sans Georgian',sans-serif;
  font-size:14.5px;
  background:#fff;
  color:var(--slate);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  outline:none; border-color:var(--gold-bright);
  box-shadow:0 0 0 3px rgba(245,166,35,0.18);
}
.form-field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:12.5px; color:var(--slate-soft); margin-top:-6px; }

/* ---------- Footer ---------- */
.site-footer{
  background:var(--navy-deep);
  color:rgba(255,255,255,.75);
  padding:64px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-brand img{ height:56px; margin-bottom:14px; }
.footer-brand p{ font-size:13.5px; color:rgba(255,255,255,.6); max-width:260px; }
.footer-col h4{ color:#fff; font-size:15px; margin-bottom:16px; font-family:'Noto Sans Georgian',sans-serif; }
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; color:rgba(255,255,255,.7); }
.footer-col a:hover{ color:var(--gold-bright); }
.footer-social{ display:flex; gap:12px; margin-top:16px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ background:var(--gold-bright); color:var(--navy-deep); }
.footer-bottom{
  padding-top:22px;
  display:flex; align-items:center; justify-content:space-between;
  font-size:12.5px; color:rgba(255,255,255,.5);
}

/* ---------- Docs list (about page) ---------- */
.doc-list{ display:flex; flex-direction:column; gap:16px; }
.doc-item{
  display:flex; align-items:center; gap:18px;
  background:var(--card); border-radius:var(--radius-md);
  padding:20px 24px; box-shadow:var(--shadow);
}
.doc-item .icon{
  width:46px; height:46px; border-radius:12px;
  background:linear-gradient(135deg,var(--gold-bright),var(--gold-deep));
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.doc-item .icon svg{ width:22px; height:22px; color:var(--navy-deep); }
.doc-item .doc-info{ flex:1; }
.doc-item h4{ margin:0 0 3px; font-size:16px; color:var(--navy-deep); font-family:'Noto Sans Georgian',sans-serif; font-weight:700; }
.doc-item p{ margin:0; font-size:13px; color:var(--slate-soft); }
.doc-item .btn{ padding:10px 20px; font-size:13px; flex-shrink:0; }
@media (max-width: 600px){
  .doc-item{ flex-wrap:wrap; }
  .doc-item .doc-info{ flex:1 1 100%; order:2; }
  .doc-item .icon{ order:1; }
  .doc-item .btn{ order:3; width:100%; justify-content:center; margin-top:4px; }
}

/* ---------- Timeline (about) ---------- */
.timeline{ position:relative; padding-left:36px; }
.timeline::before{
  content:""; position:absolute; left:9px; top:6px; bottom:6px; width:2px;
  background:var(--hairline);
}
.section-navy .timeline::before{ background:rgba(255,255,255,.2); }
.timeline-item{ position:relative; padding-bottom:34px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-36px; top:4px;
  width:18px; height:18px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold-bright),var(--gold-deep));
  border:3px solid var(--ivory);
}
.timeline-item h4{ margin:0 0 4px; font-size:16px; color:var(--navy-deep); font-family:'Noto Sans Georgian',sans-serif; font-weight:700;}
.section-navy .timeline-item h4{ color:#fff; }
.timeline-item p{ margin:0; color:var(--slate-soft); font-size:14.5px; }

/* ---------- Mission/goals two-col ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.pillar-list{ display:flex; flex-direction:column; gap:20px; }
.pillar{ display:flex; gap:16px; }
.pillar .num{
  font-family:'Noto Serif Georgian',serif; font-weight:800; font-size:20px;
  color:var(--gold-deep); flex-shrink:0; width:34px;
}
.pillar h4{ margin:0 0 4px; font-size:16px; color:var(--navy-deep); }
.pillar p{ margin:0; font-size:14px; color:var(--slate-soft); }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:44px; }
.contact-info-list{ display:flex; flex-direction:column; gap:22px; margin-bottom:30px;}
.contact-info-item{ display:flex; gap:16px; align-items:flex-start; }
.contact-info-item .icon{
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  background:linear-gradient(135deg,var(--navy-mid),var(--navy-deep));
  display:flex; align-items:center; justify-content:center;
}
.contact-info-item .icon svg{ width:20px; height:20px; }
.contact-info-item h4{ margin:0 0 2px; font-size:14.5px; color:var(--navy-deep); font-family:'Noto Sans Georgian',sans-serif;}
.contact-info-item p{ margin:0; font-size:14.5px; color:var(--slate-soft); }
.map-embed{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); height:260px; }
.map-embed iframe{ width:100%; height:100%; border:0; }

.tour-banner-img{
  width:100%; height:auto; display:block;
  border-radius:var(--radius-lg); box-shadow:var(--shadow);
}
.tour-detail-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:48px;
  margin-top:40px;
}
@media (max-width: 900px){
  .tour-detail-grid{ grid-template-columns:1fr; gap:32px; }
}
.info-grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:12px; }
.check-list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:9px; }
.check-list li{ font-size:14px; color:var(--slate-soft); display:flex; gap:9px; align-items:flex-start; line-height:1.5; }
.check-list.included li::before{ content:"✓"; color:#1a9c56; font-weight:800; flex-shrink:0; }
.check-list.excluded li::before{ content:"✕"; color:#c0392b; font-weight:800; flex-shrink:0; }
.flight-box{
  background:#F4F7FB; border:1px solid var(--hairline); border-radius:var(--radius-md);
  padding:18px 20px; margin:18px 0; font-size:14px; color:var(--slate);
}
.flight-box .flight-row{ display:flex; justify-content:space-between; gap:10px; padding:6px 0; flex-wrap:wrap; }
.flight-box b{ color:var(--navy-deep); }
.mt-lg{ margin-top:64px; }
.text-center{ text-align:center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .tour-grid, .tour-grid.wide{ grid-template-columns:1fr; }
  .feature-grid{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .nav-links{ display:none; }
  .burger{ display:flex; }
  .site-header .lang-switch-group{ display:none; }
  .subscribe-band{ flex-direction:column; align-items:flex-start; }
  .subscribe-form{ width:100%; }
  .subscribe-form input{ width:100%; }
  .page-hero h1{ font-size:34px; }
}
@media (max-width: 600px){
  .footer-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  section{ padding:64px 0; }
  .btn{ font-size:16px; padding:16px 22px; }
  .hero-cta-row{ flex-direction:column; align-items:stretch; }
  .hero-cta-row .btn{ width:100%; justify-content:center; }
  .nav-cta .btn{ padding:11px 18px; font-size:13.5px; }
  .brand img{ height:42px; }
}

/* ================= TOUR CONFIGURATOR ================= */
.configurator-grid{
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:24px;
}
@media (max-width:900px){ .configurator-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .configurator-grid{ grid-template-columns:1fr; } }

.configurator-field label{
  display:block; font-weight:700; font-size:14.5px; color:var(--navy-deep); margin-bottom:10px;
}
.configurator-field select{
  width:100%; padding:12px 14px; border-radius:var(--radius-md); border:1.5px solid var(--hairline);
  font-family:inherit; font-size:14.5px; color:var(--slate); background:#fff;
}
.configurator-field input[type="date"]{
  width:100%; padding:11px 14px; border-radius:var(--radius-md); border:1.5px solid var(--hairline);
  font-family:inherit; font-size:14.5px; color:var(--slate); background:#fff;
}

.cfg-season-toggle{ display:flex; gap:10px; flex-wrap:wrap; }
.cfg-season-btn{
  flex:1; min-width:160px; padding:12px 14px; border-radius:var(--radius-md);
  border:1.5px solid var(--hairline); background:#fff; color:var(--slate);
  font-family:inherit; font-size:13.5px; font-weight:600; cursor:pointer;
  transition:all .15s ease;
}
.cfg-season-btn:hover{ border-color:var(--gold-bright); }
.cfg-season-btn.active{
  background:var(--navy-deep); border-color:var(--navy-deep); color:#fff;
}

.cfg-cities-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(140px, 1fr)); gap:10px;
}

.cfg-yesno-toggle{ display:flex; gap:10px; max-width:280px; }
.cfg-yesno-btn{
  flex:1; padding:10px 14px; border-radius:var(--radius-md);
  border:1.5px solid var(--hairline); background:#fff; color:var(--slate);
  font-family:inherit; font-size:13.5px; font-weight:600; cursor:pointer;
  transition:all .15s ease;
}
.cfg-yesno-btn:hover{ border-color:var(--gold-bright); }
.cfg-yesno-btn.active{
  background:var(--navy-deep); border-color:var(--navy-deep); color:#fff;
}

.cfg-transfer-tour-row{ display:flex; gap:16px; flex-wrap:wrap; }
.cfg-transfer-tour-row label{
  display:flex; align-items:center; gap:8px; padding:10px 14px;
  border:1.5px solid var(--hairline); border-radius:var(--radius-md);
  font-size:13.5px; color:var(--slate); cursor:pointer; transition:all .15s ease;
  background:#fff;
}
.cfg-transfer-tour-row label:hover{ border-color:var(--gold-bright); }
.cfg-transfer-tour-row label.checked{ background:var(--navy-deep); border-color:var(--navy-deep); color:#fff; }
.cfg-transfer-tour-row input{ accent-color:var(--gold-bright); }

/* ---- Terms & Conditions modal ---- */
.terms-standalone-link{
  display:block; text-align:center; font-size:12.5px; color:var(--slate-soft);
  text-decoration:underline; margin-top:10px; cursor:pointer;
}
.terms-standalone-link:hover{ color:var(--gold-deep); }

.terms-modal-overlay{
  position:fixed; inset:0; z-index:1000; background:rgba(11,27,61,.72);
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; transition:opacity .2s ease;
}
.terms-modal-overlay.open{ opacity:1; }
.terms-modal-box{
  background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow);
  width:100%; max-width:720px; max-height:88vh; display:flex; flex-direction:column;
  transform:translateY(16px); transition:transform .2s ease;
}
.terms-modal-overlay.open .terms-modal-box{ transform:translateY(0); }
.terms-modal-header{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 24px; border-bottom:1px solid var(--hairline);
}
.terms-modal-header h3{ font-size:18px; margin:0; color:var(--navy-deep); }
.terms-modal-x{
  background:none; border:none; font-size:26px; line-height:1; color:var(--slate-soft);
  cursor:pointer; padding:0 4px; flex-shrink:0;
}
.terms-modal-x:hover{ color:var(--navy-deep); }
.terms-modal-body{
  padding:20px 24px; overflow-y:auto; flex:1;
}
.terms-modal-body h4{ font-size:14.5px; color:var(--navy-deep); margin:18px 0 6px; }
.terms-modal-body h4:first-child{ margin-top:0; }
.terms-modal-body h5{ font-size:13px; color:var(--gold-deep); margin:16px 0 4px; text-transform:uppercase; letter-spacing:.02em; }
.terms-modal-body p{ font-size:13.5px; line-height:1.65; color:var(--slate); margin:0 0 10px; }
.terms-modal-footer{
  padding:18px 24px; border-top:1px solid var(--hairline);
  display:flex; flex-direction:column; gap:14px;
}
.terms-modal-checkbox{
  display:flex; align-items:flex-start; gap:10px; font-size:13px; color:var(--slate);
  cursor:pointer; line-height:1.5;
}
.terms-modal-checkbox input{ margin-top:3px; accent-color:var(--gold-bright); flex-shrink:0; }
.terms-modal-checkbox.shake{ animation:terms-shake .4s ease; }
@keyframes terms-shake{
  0%,100%{ transform:translateX(0); } 20%{ transform:translateX(-6px); }
  40%{ transform:translateX(6px); } 60%{ transform:translateX(-4px); } 80%{ transform:translateX(4px); }
}
.terms-modal-accept{ width:100%; justify-content:center; }

/* ---- Early Bird discount price display ---- */
.price-early-bird{ display:flex; align-items:baseline; gap:8px; }
.price-old{
  text-decoration:line-through; color:var(--slate-soft); font-weight:500; font-size:13px;
}
.price-new{ color:#D64545; font-weight:800; font-size:17px; }
.early-bird-note{
  display:flex; align-items:center; gap:6px; font-size:12px; font-weight:700;
  color:#D64545; background:#FDECEC; border:1px solid #F6C6C6; border-radius:8px;
  padding:8px 10px; margin:10px 0 4px; text-align:center; justify-content:center;
}
.tour-price .price-old{ font-size:13px; display:block; }
.tour-price .price-new{ font-size:22px; display:block; }

/* ---- Price validity notice (auto-injected on every tour) ---- */
.price-validity-note{
  display:flex; align-items:flex-start; gap:8px; font-size:12.5px; line-height:1.5;
  color:var(--slate); background:#EEF3FB; border:1px solid #D3E0F3; border-radius:10px;
  padding:10px 12px; margin:12px 0 18px;
}
.section-navy .price-validity-note{
  background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18); color:rgba(255,255,255,.85);
}
.price-validity-note b{ color:inherit; }
@media (max-width:520px){
  .terms-modal-box{ max-height:92vh; }
  .terms-modal-header, .terms-modal-body, .terms-modal-footer{ padding-left:16px; padding-right:16px; }
}
.cfg-city-chip{
  display:flex; align-items:center; gap:8px; padding:10px 12px;
  border:1.5px solid var(--hairline); border-radius:999px; cursor:pointer;
  font-size:13.5px; color:var(--slate); transition:all .15s ease; background:#fff;
}
.cfg-city-chip:hover{ border-color:var(--gold-bright); }
.cfg-city-chip.checked{
  background:var(--navy-deep); border-color:var(--navy-deep); color:#fff;
}
.cfg-city-chip input{ accent-color:var(--gold-bright); flex-shrink:0; }
.cfg-cities-note{
  margin:12px 0 0; font-size:12.5px; color:var(--slate-soft); font-style:italic;
}

.cfg-placeholder-note{
  text-align:center; color:var(--slate-soft); font-size:13.5px; font-style:italic;
  padding:16px; background:var(--ivory); border-radius:var(--radius-md); margin:0;
}

.cfg-city-rows{ display:flex; flex-direction:column; gap:8px; }
.cfg-city-row{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:10px 14px; border:1.5px solid var(--hairline); border-radius:var(--radius-md);
  background:#fff;
}
.cfg-city-row-label{
  display:flex; align-items:center; gap:8px; font-size:14px; color:var(--slate);
  cursor:pointer; flex:1;
}
.cfg-city-row-label input{ accent-color:var(--gold-bright); }

.cfg-stepper{
  display:flex; align-items:center; gap:10px; flex-shrink:0;
}
.cfg-step-btn{
  width:28px; height:28px; border-radius:50%; border:1.5px solid var(--navy-deep);
  background:#fff; color:var(--navy-deep); font-size:16px; font-weight:700; line-height:1;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:all .15s ease;
}
.cfg-step-btn:hover{ background:var(--navy-deep); color:#fff; }
.cfg-step-val{
  min-width:20px; text-align:center; font-weight:700; color:var(--navy-deep); font-size:14.5px;
}
.cfg-step-unit{ font-size:12.5px; color:var(--slate-soft); }

/* ---- Countries / Cities compact dropdowns ---- */
.cfg-dropdown{ position:relative; }
.cfg-dropdown-toggle{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:13px 16px; border-radius:var(--radius-md); border:1.5px solid var(--hairline);
  background:#fff; font-family:inherit; font-size:14.5px; color:var(--slate);
  cursor:pointer; text-align:left; transition:border-color .15s ease;
}
.cfg-dropdown-toggle:hover{ border-color:var(--gold-bright); }
.cfg-dropdown.open .cfg-dropdown-toggle{ border-color:var(--gold-bright); }
.cfg-chevron{ width:16px; height:16px; flex-shrink:0; margin-left:10px; transition:transform .15s ease; color:var(--slate-soft); }
.cfg-dropdown.open .cfg-chevron{ transform:rotate(180deg); }

.cfg-dropdown-panel{
  display:none;
  margin-top:8px;
  background:#fff; border:1.5px solid var(--hairline); border-radius:var(--radius-md);
  box-shadow:var(--shadow); padding:16px;
  max-height:320px; overflow-y:auto;
}
.cfg-dropdown.open .cfg-dropdown-panel{ display:block; }

.cfg-dropdown-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:8px;
}
@media (max-width:520px){
  .cfg-dropdown-grid{ grid-template-columns:1fr; }
}
.cfg-dropdown-panel .cfg-city-row{ border:none; padding:8px 4px; border-bottom:1px solid var(--hairline); border-radius:0; }
.cfg-dropdown-panel .cfg-city-row:last-child{ border-bottom:none; }
.cfg-dropdown-panel .cfg-placeholder-note{ margin-bottom:10px; padding:12px; }

.cfg-places-group-title{
  font-size:12.5px; font-weight:700; color:var(--gold-deep); text-transform:uppercase;
  letter-spacing:.03em; margin:14px 0 8px; padding-top:10px; border-top:1px solid var(--hairline);
}
.cfg-dropdown-panel .cfg-places-group-title:first-child{ margin-top:0; padding-top:0; border-top:none; }

.offer-banner-stack{ display:flex; flex-direction:column; gap:24px; }
.offer-banner-stack a{ display:block; transition:transform .2s ease; }
.offer-banner-stack a:hover{ transform:translateY(-3px); }
.offer-banner-img{ width:100%; height:auto; border-radius:var(--radius-lg); box-shadow:var(--shadow); display:block; }

/* ---- News section ---- */
.news-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
@media (max-width:900px){ .news-grid{ grid-template-columns:1fr; } }
.news-card{
  background:var(--card); border-radius:var(--radius-lg); box-shadow:var(--shadow);
  overflow:hidden; display:flex; flex-direction:column;
}
.news-card-media{ width:100%; aspect-ratio:16/9; overflow:hidden; background:var(--navy-deep); }
.news-card-media img, .news-card-media video{ width:100%; height:100%; object-fit:cover; display:block; }
.news-card-body{ padding:24px; display:flex; flex-direction:column; gap:8px; flex:1; }
.news-card-date{ font-size:12px; font-weight:700; color:var(--gold-deep); text-transform:uppercase; letter-spacing:.03em; }
.news-card-body h3{ font-size:18px; margin:2px 0 4px; color:var(--navy-deep); }
.news-card-excerpt, .news-card-full{ font-size:14.5px; line-height:1.6; color:var(--slate-soft); margin:0; }
.news-card-toggle{
  align-self:flex-start; margin-top:8px; background:none; border:none; padding:0;
  color:var(--gold-deep); font-weight:700; font-size:13.5px; cursor:pointer; font-family:inherit;
}
.news-card-toggle:hover{ text-decoration:underline; }

/* ---- Reviews (Facebook embeds) ---- */
.reviews-grid{
  display:flex; flex-wrap:wrap; justify-content:center; gap:24px;
}
.review-embed{
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow);
  background:#fff; max-width:500px; width:100%;
}
.review-embed iframe{ display:block; width:100%; }

.share-tour-block{
  margin-top:18px; padding-top:16px; border-top:1px solid var(--hairline);
}
.share-tour-label{
  font-size:12.5px; color:var(--slate-soft); margin:0 0 10px; text-align:center;
}
.share-tour-row{ display:flex; justify-content:center; gap:10px; }
.share-tour-btn{
  position:relative;
  width:38px; height:38px; border-radius:50%;
  background:var(--ivory); border:1.5px solid var(--hairline);
  display:flex; align-items:center; justify-content:center;
  color:var(--navy-deep); cursor:pointer; transition:all .15s ease;
}
.share-tour-btn:hover{ background:var(--gold-bright); border-color:var(--gold-bright); color:var(--navy-deep); }
.share-tour-tip{
  position:absolute; bottom:calc(100% + 8px); left:50%; transform:translateX(-50%);
  background:var(--navy-deep); color:#fff; font-size:11.5px; font-weight:600;
  padding:5px 10px; border-radius:6px; white-space:nowrap; pointer-events:none;
}
.share-tour-tip::after{
  content:""; position:absolute; top:100%; left:50%; transform:translateX(-50%);
  border:5px solid transparent; border-top-color:var(--navy-deep);
}
.offer-banner-item .share-tour-block{
  max-width:260px; margin-left:auto; margin-right:auto;
}

.cfg-result{
  margin-top:28px; padding:26px; border-radius:var(--radius-lg);
  background:var(--ivory); border:1.5px solid var(--hairline);
}
.cfg-placeholder{
  text-align:center; color:var(--slate-soft); font-size:14.5px; margin:0; padding:10px 0;
}
.cfg-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0; border-bottom:1px solid var(--hairline); font-size:14.5px; color:var(--slate);
}
.cfg-row b{ color:var(--navy-deep); font-weight:700; }
.cfg-total{
  border-bottom:none; padding-top:16px; margin-top:4px; border-top:2px solid var(--navy-deep);
  font-size:18px; font-weight:700; color:var(--navy-deep);
}
.cfg-total b{ color:var(--gold-deep); font-size:24px; }
.cfg-note{
  text-align:center; font-size:12.5px; color:var(--slate-soft); margin:10px 0 0;
}
.cfg-disclaimer{
  text-align:center; font-size:12.5px; color:var(--gold-deep); font-weight:600;
  margin:6px 0 18px; padding:10px; background:rgba(245,166,35,.12); border-radius:var(--radius-md);
}
.cfg-result .btn{ display:flex; width:100%; justify-content:center; }
