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

/* ════════════════════════════════════════════════════════════════
   ANSONI TRAVEL — Master Stylesheet
   Brand: Bold Red & Black
   Built: April 2026
   ════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand colors */
  --c-red:        #E8380D;
  --c-red-dark:   #C42E0A;
  --c-red-light:  #FF7A5C;
  --c-black:      #1A1A1A;
  --c-dark:       #2D2D2D;
  --c-gold:       #E8B84B;

  /* Neutrals */
  --c-white:      #FFFFFF;
  --c-cream:      #FFF8F6;
  --c-bg:         #FAFAF8;
  --c-gray-50:    #F5F5F5;
  --c-gray-100:   #EEEEEE;
  --c-gray-200:   #E0E0E0;
  --c-gray-400:   #999999;
  --c-gray-600:   #666666;
  --c-gray-800:   #333333;

  /* Type scale */
  --fs-xs:    0.75rem;   /* 12px */
  --fs-sm:    0.875rem;  /* 14px */
  --fs-base:  1rem;      /* 16px */
  --fs-md:    1.125rem;  /* 18px */
  --fs-lg:    1.5rem;    /* 24px */
  --fs-xl:    2rem;      /* 32px */
  --fs-2xl:   2.5rem;    /* 40px */
  --fs-3xl:   3.5rem;    /* 56px */

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
  --shadow-red: 0 8px 24px rgba(232, 56, 13, 0.25);

  /* Transitions */
  --tr-fast:  0.15s ease;
  --tr:       0.25s ease;
  --tr-slow:  0.4s ease;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans Georgian', 'Geologica', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-dark);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--tr); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--c-black);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-3xl); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { line-height: 1.7; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-black);
  border-bottom: 2px solid var(--c-red);
  height: 64px;
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}
.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--c-red);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--c-white);
}
.brand-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-tagline {
  font-size: 10px;
  color: var(--c-gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Main nav */
.main-nav {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
}
.main-nav a {
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--tr-fast);
  position: relative;
}
.main-nav a:hover { background: rgba(255,255,255,0.08); }
.main-nav a.active { color: var(--c-red); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 3px;
  background: var(--c-red);
  border-radius: 2px;
}

/* Lang switcher */
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 3px;
}
.lang-switch a {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 4px;
  color: var(--c-gray-400);
  letter-spacing: 0.05em;
}
.lang-switch a.active { background: var(--c-red); color: var(--c-white); }
.lang-switch a:hover:not(.active) { color: var(--c-white); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 9px; right: 9px;
  height: 2px;
  background: var(--c-white);
  transition: var(--tr-fast);
}
.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 17px; }
.menu-toggle span:nth-child(3) { top: 22px; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  background: var(--c-black);
  color: var(--c-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.95), rgba(26,26,26,0.5) 60%, rgba(232,56,13,0.3));
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 50%;
  background: var(--c-red);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.15;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding: var(--sp-16) var(--sp-6); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(232,56,13,0.2);
  border: 1px solid rgba(232,56,13,0.5);
  color: var(--c-red-light);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: var(--sp-6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  color: var(--c-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  margin-bottom: var(--sp-6);
  max-width: 700px;
}
.hero h1 .accent { color: var(--c-red); }
.hero-sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
.hero-stats {
  display: flex;
  gap: var(--sp-12);
  flex-wrap: wrap;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat strong {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--c-red);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--fs-base);
  transition: var(--tr);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--c-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,56,13,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}
.btn-dark {
  background: var(--c-black);
  color: var(--c-white);
}
.btn-dark:hover {
  background: var(--c-dark);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 36px;
  font-size: var(--fs-md);
}

/* WhatsApp button */
.btn-wa {
  background: #25D366;
  color: var(--c-white);
}
.btn-wa:hover { background: #1DA851; }

/* ─── SECTIONS ───────────────────────────────────────────────── */
section { padding: var(--sp-20) 0; }
.section-head {
  margin-bottom: var(--sp-12);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '─';
  margin: 0 var(--sp-3);
  color: var(--c-gray-400);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--sp-4);
}
.section-sub {
  font-size: var(--fs-md);
  color: var(--c-gray-600);
  line-height: 1.6;
}

/* ─── DEAL CARDS ─────────────────────────────────────────────── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}
.deal-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.deal-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.deal-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--tr-slow);
}
.deal-card:hover .deal-card-img img { transform: scale(1.05); }
.deal-card-badge {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  background: var(--c-red);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.deal-card-body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.deal-card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: var(--sp-2);
}
.deal-card-meta {
  font-size: var(--fs-sm);
  color: var(--c-gray-600);
  margin-bottom: var(--sp-4);
}
.deal-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  padding: var(--sp-3) 0;
  border-top: 1px dashed var(--c-gray-200);
  margin-top: auto;
}
.deal-card-price .from { font-size: 12px; color: var(--c-gray-400); }
.deal-card-price .amount {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--c-black);
}
.deal-card-price .currency { color: var(--c-red); font-weight: 700; }

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--c-black);
  color: var(--c-white);
  padding: var(--sp-12) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-8);
  text-align: center;
}
.trust-item .trust-num {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--c-red);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.trust-item .trust-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* ─── DESTINATION CARDS ─────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.dest-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr);
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--tr-slow);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
}
.dest-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-6);
  color: var(--c-white);
  z-index: 1;
}
.dest-card-name {
  font-size: var(--fs-xl);
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.dest-card-from {
  font-size: var(--fs-sm);
  color: var(--c-gold);
  font-weight: 600;
}

/* ─── FLIGHT TEASER ──────────────────────────────────────────── */
.flight-teaser {
  background: linear-gradient(135deg, var(--c-black) 0%, var(--c-dark) 100%);
  color: var(--c-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-8);
  position: relative;
  overflow: hidden;
}
.flight-teaser::before {
  content: '✈';
  position: absolute;
  top: -40px; right: -20px;
  font-size: 240px;
  color: rgba(232,56,13,0.1);
  transform: rotate(-15deg);
}
.flight-teaser-content { position: relative; z-index: 1; max-width: 600px; }
.flight-teaser h3 {
  color: var(--c-white);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-4);
}
.flight-teaser p {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-6);
}

/* ─── FLOATING WHATSAPP BUTTON ──────────────────────────────── */
.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: #25D366;
  color: var(--c-white);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--fs-sm);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--tr);
}
.fab-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.fab-wa svg { width: 22px; height: 22px; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-black);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-16) 0 var(--sp-8);
  margin-top: var(--sp-20);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer-brand-block .brand { margin-bottom: var(--sp-4); }
.footer-brand-block p {
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.footer-h {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  transition: var(--tr-fast);
}
.footer-links a:hover { color: var(--c-red-light); }
.footer-contact-item {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
}
.footer-contact-item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--c-red);
  margin-top: 2px;
}
.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-bottom a { color: var(--c-red-light); }
.socials { display: flex; gap: var(--sp-3); }
.socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: var(--tr-fast);
}
.socials a:hover { background: var(--c-red); }
.socials svg { width: 16px; height: 16px; color: var(--c-white); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 500px; }
  .hero .container { padding: var(--sp-12) var(--sp-6); }
  .hero-stats { gap: var(--sp-8); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}
@media (max-width: 640px) {
  section { padding: var(--sp-12) 0; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: var(--fs-base); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .lang-switch a { padding: 4px 7px; font-size: 10px; }
  .brand-tagline { display: none; }
  .fab-wa span { display: none; }
  .fab-wa { padding: 14px; }
}

/* ─── MOBILE MENU OVERLAY ───────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-black);
  z-index: 200;
  padding: var(--sp-8);
  transform: translateX(100%);
  transition: var(--tr);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 16px; right: 20px;
  width: 36px; height: 36px;
  color: var(--c-white);
  font-size: 24px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}
.mobile-menu nav a {
  color: var(--c-white);
  font-size: var(--fs-lg);
  font-weight: 600;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu nav a.active { color: var(--c-red); }

/* ════════════════════════════════════════════════════════════════
   PAGE-SPECIFIC COMPONENTS
   ════════════════════════════════════════════════════════════════ */

/* ─── Page hero (sub-pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--c-black) 0%, var(--c-dark) 100%);
  color: var(--c-white);
  padding: var(--sp-16) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 30%; height: 100%;
  background: var(--c-red);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-3);
}
.page-hero .breadcrumb a { color: var(--c-red-light); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  color: var(--c-white);
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: var(--sp-3);
}
.page-hero .lead {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  line-height: 1.6;
}

/* ─── Flight schedule ────────────────────────────────────────── */
.flight-search {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow);
  margin-top: -32px;
  position: relative;
  z-index: 2;
}
.flight-search-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: var(--sp-3);
  align-items: end;
}
.flight-search label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-gray-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.flight-search select,
.flight-search input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: var(--fs-base);
  background: var(--c-white);
}
.flight-search select:focus,
.flight-search input:focus {
  outline: none;
  border-color: var(--c-red);
}

.flight-table-wrap {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-gray-100);
}
.flight-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.flight-table thead th {
  background: var(--c-gray-50);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-gray-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--c-gray-200);
}
.flight-table tbody tr {
  border-bottom: 1px solid var(--c-gray-100);
  transition: var(--tr-fast);
}
.flight-table tbody tr:hover {
  background: var(--c-cream);
}
.flight-table td {
  padding: var(--sp-4);
  vertical-align: middle;
}
.flight-route {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: 600;
  color: var(--c-black);
}
.flight-route svg {
  width: 20px; height: 20px;
  color: var(--c-red);
  flex-shrink: 0;
}
.flight-airline {
  font-size: var(--fs-xs);
  color: var(--c-gray-600);
  margin-top: 2px;
}
.flight-price {
  font-weight: 800;
  color: var(--c-black);
  font-size: var(--fs-md);
}
.flight-price small {
  display: block;
  font-size: 11px;
  color: var(--c-gray-400);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.flight-action {
  text-align: right;
}
.btn-sm {
  padding: 8px 16px;
  font-size: var(--fs-sm);
}

/* Mobile flight cards (stack instead of table) */
@media (max-width: 760px) {
  .flight-table thead { display: none; }
  .flight-table, .flight-table tbody, .flight-table tr, .flight-table td { display: block; }
  .flight-table tr {
    padding: var(--sp-4);
    border: 1px solid var(--c-gray-100);
    border-radius: var(--radius);
    margin-bottom: var(--sp-3);
  }
  .flight-table td { padding: 4px 0; border: none; }
  .flight-search-row { grid-template-columns: 1fr; }
}

/* ─── Tour package cards (large) ─────────────────────────────── */
.tour-pack {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: var(--sp-8);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.tour-pack-img {
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}
.tour-pack-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 60%, rgba(0,0,0,0.4));
}
.tour-pack-flag {
  position: absolute;
  top: var(--sp-4); left: var(--sp-4);
  background: var(--c-white);
  font-size: 28px;
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.tour-pack-body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
}
.tour-pack-title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin-bottom: var(--sp-2);
  color: var(--c-black);
}
.tour-pack-sub {
  color: var(--c-gray-600);
  font-size: var(--fs-base);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}
.tour-pack-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.price-cell {
  background: var(--c-cream);
  border: 1px solid #FFE0D8;
  border-radius: var(--radius);
  padding: var(--sp-3);
  text-align: center;
}
.price-cell .stars {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-gray-600);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.price-cell .amount {
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--c-red);
}
.price-cell .currency {
  font-size: 11px;
  color: var(--c-gray-400);
  font-weight: 500;
}
.tour-pack .btn { align-self: flex-start; }

@media (max-width: 760px) {
  .tour-pack { grid-template-columns: 1fr; }
  .tour-pack-img { min-height: 200px; }
  .tour-pack-body { padding: var(--sp-6); }
}

/* ─── Hot offers list ────────────────────────────────────────── */
.offer-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: var(--sp-6);
  align-items: center;
  background: var(--c-white);
  padding: var(--sp-5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-3);
  transition: var(--tr-fast);
  border-left: 4px solid var(--c-red);
}
.offer-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.offer-icon {
  width: 50px; height: 50px;
  background: var(--c-cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.offer-info h4 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 4px;
}
.offer-info p {
  font-size: var(--fs-sm);
  color: var(--c-gray-600);
}
.offer-price {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--c-red);
  white-space: nowrap;
}
.offer-price small {
  display: block;
  font-size: 10px;
  color: var(--c-gray-400);
  font-weight: 500;
}

@media (max-width: 760px) {
  .offer-row {
    grid-template-columns: auto 1fr;
    gap: var(--sp-4);
  }
  .offer-row .offer-price,
  .offer-row .btn {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }
}

/* ─── About page ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
}
.about-img::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--c-red);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--sp-4);
}
.about-text .lead-quote {
  font-size: var(--fs-md);
  color: var(--c-red);
  font-weight: 600;
  font-style: italic;
  border-left: 3px solid var(--c-red);
  padding-left: var(--sp-4);
  margin: var(--sp-6) 0;
}
.about-text p {
  margin-bottom: var(--sp-4);
  color: var(--c-gray-800);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.value-card {
  background: var(--c-white);
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--c-red);
  box-shadow: var(--shadow-sm);
}
.value-card .ico {
  width: 50px; height: 50px;
  background: var(--c-cream);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: var(--sp-4);
}
.value-card h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
}
.value-card p {
  font-size: var(--fs-sm);
  color: var(--c-gray-600);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ─── Contact page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-8);
}
.contact-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow);
}
.contact-method {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-gray-100);
}
.contact-method:last-child { border-bottom: none; }
.contact-method .ico {
  width: 44px; height: 44px;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-method .info { flex: 1; }
.contact-method .info-label {
  font-size: var(--fs-xs);
  color: var(--c-gray-400);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-method .info-value {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-black);
}
.contact-method .info-value a { color: var(--c-black); }
.contact-method .info-value a:hover { color: var(--c-red); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow);
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }
}

/* ─── Page section variants ──────────────────────────────────── */
section.alt-bg { background: var(--c-gray-50); }

/* ─── Flight Schedule Cards ───────────────────────────────── */
.flight-card { background: var(--c-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin-bottom: var(--sp-4); overflow: hidden; border: 1px solid var(--c-gray-100); scroll-margin-top: 130px; }
.flight-card-header { display: flex; justify-content: space-between; align-items: center; padding: var(--sp-4) var(--sp-6); background: var(--c-gray-50); border-bottom: 1px solid var(--c-gray-100); }
.flight-card-city { display: flex; align-items: center; gap: var(--sp-3); }
.flight-card-city h3 { font-size: var(--fs-lg); font-weight: 700; margin: 0; }
.airport-code { background: var(--c-red); color: var(--c-white); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.05em; }
.flight-card-prices { display: flex; gap: var(--sp-4); text-align: right; }
.price-oneway, .price-return { font-size: var(--fs-md); font-weight: 800; color: var(--c-black); }
.price-oneway small, .price-return small { font-size: 11px; color: var(--c-red); font-weight: 700; }
.price-oneway::before { content: '↗ '; font-size: 11px; color: var(--c-gray-400); }
.price-return::before { content: '↙ '; font-size: 11px; color: var(--c-gray-400); }
.flight-pairs { padding: var(--sp-3) var(--sp-6); }
.flight-pair { padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-gray-100); }
.flight-pair:last-child { border-bottom: none; }
.flight-row { display: flex; align-items: center; gap: var(--sp-4); padding: 3px 0; }
.fl-direction { font-size: 10px; color: var(--c-gray-400); letter-spacing: 0.05em; width: 70px; flex-shrink: 0; }
.fl-num { font-size: var(--fs-sm); font-weight: 700; width: 70px; flex-shrink: 0; }
.fl-times { font-size: var(--fs-base); font-weight: 600; }
.flight-meta { display: flex; flex-wrap: wrap; gap: var(--sp-4); padding: 4px 0 2px; font-size: var(--fs-xs); color: var(--c-gray-600); }
.flight-meta span::after { content: ' ·'; margin-left: var(--sp-2); }
.flight-meta span:last-child::after { content: ''; }
.flight-book { margin: var(--sp-3) var(--sp-6) var(--sp-4); display: inline-flex; }
@media (max-width: 640px) {
  .flight-card-header { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
  .flight-card-prices { justify-content: flex-start; }
}
