/* ================================================================
   MegaMar Reizen v5 — Bold Modern Travel
   Font: Outfit (ALL text — headings bold 800, body 400)
   Direction: Clean white sections, bold black headlines,
              colorful accents, generous white space
================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy:    #0B2545;
  --teal:    #0E7C86;
  --teal-dk: #0A5F68;
  --teal-lt: #14A8B4;
  --gold:    #F0A500;
  --gold-lt: #F5C842;
  --coral:   #E8533A;
  --white:   #FFFFFF;
  --off:     #F8F9FA;
  --light:   #F2F4F6;
  --border:  #E4E8EC;
  --text:    #1A2332;
  --muted:   #64748B;
  --dark:    #0A1628;

  --sh-sm:  0 2px 8px rgba(0,0,0,0.06);
  --sh-md:  0 6px 24px rgba(0,0,0,0.10);
  --sh-lg:  0 16px 48px rgba(0,0,0,0.14);
  --r:      10px;
  --r-lg:   18px;
  --r-xl:   24px;
  --ease:   cubic-bezier(0.25,0,0,1);
  --tr:     0.22s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY — all Outfit ─────────────────── */
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem);   font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; color: var(--white); }
h2 { font-size: clamp(2rem,   3.8vw, 3.2rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; color: var(--navy); }
h3 { font-size: clamp(1.3rem, 2vw,   1.75rem); font-weight: 700; line-height: 1.2;  color: var(--navy); }
h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
p  { font-size: 1rem; color: var(--muted); line-height: 1.75; font-weight: 400; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
}
.label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 1px; }

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 72px;
  transition: background var(--tr), box-shadow var(--tr), height var(--tr);
}
.navbar.transparent { background: rgba(0,0,0,0.15); backdrop-filter: blur(4px); }
.navbar.scrolled    { background: var(--white); box-shadow: var(--sh-sm); height: 64px; }

.navbar-logo img { height: 44px; width: auto; filter: brightness(10); transition: filter var(--tr); }
.navbar.scrolled .navbar-logo img { filter: none; }

.navbar-nav { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.navbar-nav li a {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); padding: 0.5rem 0.85rem; border-radius: 6px;
  transition: all var(--tr);
}
.navbar.scrolled .navbar-nav li a { color: var(--navy); }
.navbar-nav li a:hover, .navbar-nav li a.active { color: var(--gold); background: rgba(255,255,255,0.1); }
.navbar.scrolled .navbar-nav li a:hover,
.navbar.scrolled .navbar-nav li a.active { color: var(--teal); background: rgba(14,124,134,0.08); }

.navbar-right { display: flex; align-items: center; gap: 1rem; }
.lang-switcher { display: flex; gap: 0.4rem; }
.lang-switcher img { width: 28px; height: 19px; border-radius: 3px; object-fit: cover; opacity: 0.7; cursor: pointer; transition: opacity var(--tr); border: 1.5px solid rgba(255,255,255,0.5); box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.navbar.scrolled .lang-switcher img { border-color: var(--border); }
.lang-switcher img.active, .lang-switcher img:hover { opacity: 1; }

.btn-reserve {
  font-size: 0.77rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.6rem 1.4rem; background: var(--gold); color: var(--navy);
  border-radius: 50px; transition: all var(--tr);
  box-shadow: 0 3px 12px rgba(240,165,0,0.4);
}
.btn-reserve:hover { background: var(--gold-lt); transform: translateY(-1px); }

.navbar-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.navbar-toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; transition: 0.3s; background: #fff; }
.navbar.scrolled .navbar-toggle span { background: var(--navy); }
.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center center; background-repeat: no-repeat; transform: translateZ(0); -webkit-transform: translateZ(0); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.5) 60%, rgba(10,22,40,0.7) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem 7rem; max-width: 960px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1.2rem; border-radius: 50px;
  background: rgba(240,165,0,0.15); border: 1px solid rgba(240,165,0,0.4);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.6rem;
  animation: up 0.7s ease both;
}
.hero-content h1 { animation: up 0.7s ease 0.15s both; margin-bottom: 1.2rem; }
.hero-content h1 em { font-style: italic; color: var(--gold-lt); }
.hero-content p { color: rgba(255,255,255,0.78); font-size: 1.12rem; max-width: 560px; margin: 0 auto 2.5rem; animation: up 0.7s ease 0.3s both; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: up 0.7s ease 0.45s both; }
@keyframes up { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }

.hero-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--white); border-top: 4px solid var(--gold);
  animation: up 0.7s ease 0.6s both;
}
.hero-bar-item { padding: 1.4rem 1.2rem; text-align: center; border-right: 1px solid var(--border); }
.hero-bar-item:last-child { border-right: none; }
.hero-bar-item .n { font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.03em; }
.hero-bar-item .l { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 0.25rem; }

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: var(--teal); color: #fff;
  font-weight: 700; font-size: 0.9rem; border-radius: 50px; cursor: pointer; border: none;
  transition: all var(--tr); box-shadow: 0 4px 16px rgba(14,124,134,0.35);
}
.btn-primary:hover { background: var(--teal-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,124,134,0.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: rgba(255,255,255,0.12); color: #fff;
  font-weight: 700; font-size: 0.9rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: all var(--tr); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.8); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border: 2px solid var(--teal); color: var(--teal);
  font-weight: 700; font-size: 0.88rem; border-radius: 50px;
  transition: all var(--tr);
}
.btn-outline:hover { background: var(--teal); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(14,124,134,0.3); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 0.9rem; border-radius: 50px;
  transition: all var(--tr); box-shadow: 0 4px 16px rgba(240,165,0,0.35);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,0.45); }

/* ── LAYOUT ─────────────────────────────────── */
.section    { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.container  { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin: 0.7rem 0 1rem; }
.section-header p  { max-width: 560px; margin: 0 auto; }
.divider { width: 48px; height: 3px; background: linear-gradient(90deg,var(--teal),var(--gold)); margin: 1.2rem auto 0; border-radius: 2px; }

/* ── SERVICES STRIP ─────────────────────────── */
.services-strip { background: var(--navy); }
.services-strip .container { display: flex; }
.service-item {
  flex: 1; display: flex; align-items: center; gap: 1rem;
  padding: 2rem 1.6rem; border-right: 1px solid rgba(255,255,255,0.07);
  text-decoration: none; transition: background var(--tr);
}
.service-item:last-child { border-right: none; }
.service-item:hover { background: rgba(255,255,255,0.04); }
.service-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px;
  background: rgba(240,165,0,0.12); border: 1px solid rgba(240,165,0,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
}
.service-item:hover .service-icon { background: rgba(240,165,0,0.22); }
.service-icon svg { width: 22px; height: 22px; flex-shrink: 0; }
.service-item h4 { font-size: 0.9rem; color: #fff; margin-bottom: 0.08rem; }
.service-item p  { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 0; }

/* ── AIRLINE STRIP — white bg, colorful logos ── */
.airlines-strip { background: var(--white); padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.airlines-label { text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem; }
.airlines-grid-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.airline-logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  height: 120px;
  transition: all var(--tr);
  flex: 1;
}
.airline-logo-item:hover { border-color: var(--teal); box-shadow: var(--sh-md); transform: translateY(-3px); }
.airline-logo-item img {
  width: 160px;
  height: 70px;
  object-fit: contain;
}

/* ── HOTELS GRID ────────────────────────────── */
.hotels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.hotel-card { display: block; border-radius: var(--r-lg); overflow: hidden; background: var(--white); box-shadow: var(--sh-sm); border: 1px solid var(--border); transition: transform var(--tr), box-shadow var(--tr); }
.hotel-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.hotel-card:hover .hotel-img { transform: scale(1.06); }
.hotel-img-wrap { overflow: hidden; aspect-ratio: 4/3; position: relative; }
.hotel-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.hotel-badge { position: absolute; top: 0.9rem; left: 0.9rem; background: var(--gold); color: var(--navy); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; padding: 0.25rem 0.8rem; border-radius: 50px; }
.hotel-info { padding: 1.3rem 1.5rem 1.6rem; }
.hotel-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.hotel-location { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 0.35rem; }
.hotel-location::before { content: '📍'; font-size: 0.7rem; }
.hotel-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.hotel-stars { color: var(--gold); font-size: 0.82rem; }
.hotel-link { font-size: 0.75rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── 2-COL FEATURED ─────────────────────────── */
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.featured-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); position: relative; }
.featured-img-wrap img { width: 100%; display: block; }
.featured-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: rgba(255,255,255,0.95); border-radius: var(--r); padding: 0.9rem 1.3rem; box-shadow: var(--sh-md); backdrop-filter: blur(8px); }
.featured-badge strong { display: block; font-size: 1rem; font-weight: 800; color: var(--navy); }
.featured-badge span { font-size: 0.75rem; color: var(--muted); }
.featured-content .label { display: flex; margin-bottom: 1rem; }
.featured-content h2 { margin-bottom: 1.2rem; }
.featured-content p  { margin-bottom: 1.6rem; }
.check-list { margin-bottom: 2.2rem; }
.check-list li { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0; font-size: 0.96rem; color: var(--text); border-bottom: 1px solid var(--border); }
.check-list li::before { content: ''; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: rgba(14,124,134,0.1); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7C86' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }

/* ── CRUISE BANNER ──────────────────────────── */
.cruise-banner { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 440px; display: flex; align-items: center; padding: 4.5rem 5rem; }
.cruise-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cruise-banner-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,22,40,0.93) 0%, rgba(10,22,40,0.5) 55%, transparent 100%); }
.cruise-content { position: relative; z-index: 2; color: #fff; max-width: 520px; }
.cruise-content .label { color: var(--gold-lt); margin-bottom: 1.1rem; }
.cruise-content .label::before { background: var(--gold-lt); }
.cruise-content h2 { color: #fff; margin-bottom: 1rem; }
.cruise-content p  { color: rgba(255,255,255,0.75); margin-bottom: 2.2rem; }

/* ── STATS BAND ─────────────────────────────── */
.stats-band { background: var(--navy); padding: 5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: 3.5rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.04em; }
.stat-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-top: 0.4rem; }

/* ── CTA ────────────────────────────────────── */
.cta-section { background: var(--off); text-align: center; padding: 8rem 2rem; margin-top: 2rem; }
.cta-section h2 { margin-bottom: 0.7rem; }
.cta-phone { display: block; font-size: clamp(2.5rem,5vw,4rem); font-weight: 800; color: var(--teal); margin: 0.8rem 0; letter-spacing: -0.03em; transition: color var(--tr); }
.cta-phone:hover { color: var(--teal-dk); }
.cta-section p { max-width: 460px; margin: 0 auto 2.5rem; }

/* ── PHONE STRIP ────────────────────────────── */
.phone-strip { background: var(--teal); text-align: center; padding: 1.8rem 2rem; }
.phone-strip .strip-lbl { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.65); margin-bottom: 0.3rem; }
.phone-strip .strip-sub { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.phone-strip a { color: #fff; font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; }

/* ── PAGE HERO ──────────────────────────────── */
.page-hero { position: relative; height: 440px; display: flex; align-items: flex-end; overflow: hidden; margin-top: 72px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center center; background-repeat: no-repeat; transform: translateZ(0); -webkit-transform: translateZ(0); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.5) 55%, rgba(10,22,40,0.25) 100%); }
.page-hero-content { position: relative; z-index: 2; color: #fff; padding: 0 3rem 3rem; }
.page-hero-content .breadcrumb { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; }
.page-hero-content .breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--tr); }
.page-hero-content .breadcrumb a:hover { color: var(--gold-lt); }
.page-hero-content h1 { font-size: clamp(2.2rem,4vw,3.8rem); margin-bottom: 0.8rem; }
.page-hero-content p  { color: rgba(255,255,255,0.75); max-width: 540px; }

/* ── HOTEL GALLERY ──────────────────────────── */
.hotel-gallery { display: grid; grid-template-columns: repeat(5,1fr); gap: 0.6rem; }
.gallery-thumb { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.gallery-thumb:hover img { transform: scale(1.1); }

/* ── LIGHTBOX ───────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: #fff; cursor: pointer; font-weight: 300; line-height: 1; transition: color var(--tr); }
.lightbox-close:hover { color: var(--gold-lt); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: #fff; cursor: pointer; background: rgba(255,255,255,0.08); border-radius: 50%; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; font-weight: 300; transition: background var(--tr); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(240,165,0,0.25); }

/* ── AIRLINE CARDS (flights page) ───────────── */
.airline-cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.airline-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 2.2rem 1.5rem; display: flex; align-items: center; justify-content: center;
  transition: all var(--tr); min-height: 110px;
}
.airline-card:hover { border-color: var(--teal); box-shadow: var(--sh-md); transform: translateY(-3px); }
.airline-card img { height: 56px; width: auto; max-width: 160px; object-fit: contain; }

/* ── DESTINATIONS ───────────────────────────── */
.dest-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.dest-card { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; position: relative; cursor: pointer; min-height: 280px; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.dest-card:hover img { transform: scale(1.07); }
.dest-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 55%); }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 1.5rem 1.2rem; color: #fff; }
.dest-info h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 0.15rem; }
.dest-info span { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }

/* ── HEALTH CARDS ───────────────────────────── */
.health-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.health-cards { display: flex; flex-direction: column; gap: 1.1rem; }
.health-card { display: flex; align-items: flex-start; gap: 1.1rem; background: var(--off); border-radius: var(--r-lg); padding: 1.4rem; border: 1px solid var(--border); transition: all var(--tr); }
.health-card:hover { background: var(--white); box-shadow: var(--sh-md); transform: translateX(6px); border-color: rgba(14,124,134,0.2); }
.health-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px; background: rgba(14,124,134,0.1); display: flex; align-items: center; justify-content: center; }
.health-icon svg { width: 22px; height: 22px; stroke: var(--teal); }
.health-card h4 { font-size: 0.98rem; margin-bottom: 0.18rem; }
.health-card p  { font-size: 0.86rem; margin: 0; }

/* ── TREATMENTS ─────────────────────────────── */
.treatments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.treatment-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-sm); transition: all var(--tr); }
.treatment-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.treatment-img { overflow: hidden; aspect-ratio: 16/9; }
.treatment-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.treatment-card:hover .treatment-img img { transform: scale(1.07); }
.treatment-body { padding: 1.5rem 1.5rem 1.8rem; }
.treatment-body h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.5rem; }
.treatment-body p  { font-size: 0.88rem; }

/* ── ROUTES TABLE ───────────────────────────── */
.routes-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.routes-table th { background: var(--navy); color: #fff; padding: 1rem 1.2rem; text-align: left; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.routes-table th:first-child { border-radius: 8px 0 0 0; }
.routes-table th:last-child  { border-radius: 0 8px 0 0; }
.routes-table td { padding: 0.95rem 1.2rem; border-bottom: 1px solid var(--border); }
.routes-table tr:last-child td { border-bottom: none; }
.routes-table tr:nth-child(even) td { background: var(--off); }
.routes-table tr:hover td { background: rgba(14,124,134,0.04); }

/* ── CONTACT ────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; }
.contact-icon { width: 46px; height: 46px; flex-shrink: 0; background: rgba(14,124,134,0.08); border: 1px solid rgba(14,124,134,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--teal); }
.contact-detail h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.contact-detail p { font-size: 0.92rem; margin: 0; color: var(--text); }
.social-links { display: flex; gap: 0.7rem; margin-top: 1.8rem; }
.social-link { width: 44px; height: 44px; background: rgba(14,124,134,0.1); border: 1.5px solid rgba(14,124,134,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: all var(--tr); font-size: 1.2rem; }
.social-link:hover { background: var(--teal); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; stroke: var(--teal); transition: stroke var(--tr); }
.social-link:hover svg { stroke: #fff; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); margin-top: 2rem; }
.map-embed iframe { width: 100%; height: 340px; border: none; }

/* ── CONTACT FORM ───────────────────────────── */
.contact-form .fg { margin-bottom: 1.3rem; }
.contact-form label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 0.45rem; }
.contact-form input,
.contact-form textarea,
.contact-form select { width: 100%; padding: 0.9rem 1.1rem; border: 1.5px solid var(--border); border-radius: var(--r); font-family: 'Outfit', sans-serif; font-size: 0.96rem; color: var(--text); background: var(--white); outline: none; appearance: none; transition: border-color var(--tr), box-shadow var(--tr); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,124,134,0.1); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── INFO BOX ───────────────────────────────── */
.info-box { background: var(--navy); border-radius: var(--r-xl); padding: 3rem; text-align: center; }
.info-box h3 { color: #fff; margin-bottom: 0.7rem; }
.info-box p  { color: rgba(255,255,255,0.6); margin-bottom: 1.8rem; }

/* ── FOOTER ─────────────────────────────────── */
.footer { background: var(--dark); }
.footer-top { padding: 5.5rem 0 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3.5rem; }
.footer-logo img { height: 42px; margin-bottom: 1.2rem; filter: brightness(10); object-fit: contain; }
.footer-logo p { font-size: 0.86rem; line-height: 1.78; color: rgba(255,255,255,0.68); }
.footer-col h4 { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 1.3rem; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a  { font-size: 0.88rem; color: rgba(255,255,255,0.80); transition: color var(--tr); }
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.85rem; font-size: 0.86rem; color: rgba(255,255,255,0.80); }
.footer-contact-icon { flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-icon svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.7); }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer-socials a { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.footer-socials a:hover { background: var(--teal); transform: translateY(-2px); }
.footer-socials svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); }
.footer-socials a:hover svg { stroke: #fff; }
.footer-bottom { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.24); }
.footer-bottom a { color: rgba(255,255,255,0.38); transition: color var(--tr); }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ── CALL FLOAT — GREEN ─────────────────────── */
.call-float { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 990; display: flex; align-items: center; gap: 0.75rem; }
.call-float a { width: 60px; height: 60px; background: linear-gradient(135deg, #22C55E, #16A34A); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(34,197,94,0.55); transition: all var(--tr); }
.call-float a:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 32px rgba(34,197,94,0.65); }
.call-float a svg { width: 26px; height: 26px; stroke: #fff; }
.call-badge { background: var(--white); padding: 0.45rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 700; color: var(--navy); box-shadow: var(--sh-md); white-space: nowrap; }

/* ── 2-COL UTIL ─────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.img-round { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.img-round img { width: 100%; display: block; }

/* ── UTILS ──────────────────────────────────── */
.bg-off    { background: var(--off); }
.bg-light  { background: var(--light); }
.bg-navy   { background: var(--navy); }
.bg-white  { background: var(--white); }
.fade-in   { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width:1100px) {
  .hotels-grid { grid-template-columns: repeat(2,1fr); }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .treatments-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .airline-cards-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:900px) {
  .featured-grid, .health-grid, .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cruise-banner { padding: 3rem 2.5rem; }
}
@media (max-width:768px) {
  html { font-size: 15px; }
  .navbar { padding: 0 1.3rem; height: 64px; }
  .navbar.scrolled { height: 58px; }
  .navbar-nav { display: none; }
  .navbar-toggle { display: flex; }
  .navbar-nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); padding: 1rem 1.5rem 1.5rem; box-shadow: var(--sh-lg); border-top: 1px solid var(--border); animation: slideDown 0.2s ease; }
  @keyframes slideDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
  .navbar-nav.open li a { color: var(--navy) !important; padding: 0.8rem 0.3rem; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 0.9rem; }
  .hero { margin-top: 64px; }
  .hero-bar { position: relative; grid-template-columns: repeat(2,1fr); }
  .hero-bar-item:nth-child(1),.hero-bar-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .hero-bar-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero-bar-item:last-child { border-right: none; }
  .services-strip .container { flex-direction: column; }
  .service-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hotels-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hotel-gallery { grid-template-columns: repeat(3,1fr); }
  .page-hero { height: 340px; margin-top: 64px; }
  .page-hero-content { padding: 0 1.5rem 2rem; }
  .section { padding: 5.5rem 0; }
  .airlines-grid-logos { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .airline-logo-item { padding: 1rem; min-height: 90px; }
  .airline-logo-item img { height: 44px; }
  .call-badge { display: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .hotel-gallery { grid-template-columns: repeat(2,1fr); }
  .dest-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .airline-cards-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── CAR BRANDS GRID ────────────────────────── */
.car-brands-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.car-brand {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 100px; transition: all var(--tr);
  text-align: center;
}
.car-brand:hover { border-color: var(--teal); box-shadow: var(--sh-md); transform: translateY(-3px); }
@media (max-width: 768px) { .car-brands-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .airlines-grid-logos { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .airline-logo-item { padding: 0.8rem; min-height: 80px; }
  .airline-logo-item img { height: 36px; } .car-brands-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   RESPONSIVE FIXES — v5.1
   Fixes: logo sharpness, flag icons, hero image quality,
          airline-card sizing on mobile, navbar overflow on small screens
================================================================ */

/* ── LOGO: use higher-res image reference + crisp rendering ─── */
.navbar-logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ── LANGUAGE FLAG ICONS — replace photo crops with real flag look ─ */
.lang-switcher img {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  object-position: center center;
  border: 1.5px solid rgba(255,255,255,0.5);
  image-rendering: -webkit-optimize-contrast;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.navbar.scrolled .lang-switcher img { border-color: var(--border); }

/* ── PAGE HERO IMAGE — sharper, proper background rendering ─── */
.page-hero-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  /* Force GPU compositing for sharper render on retina screens */
  transform: translateZ(0);
  will-change: transform;
}

/* ── AIRLINE CARDS — better sizing on all screen widths ────── */
.airline-cards-grid {
  gap: 1.2rem;
}
.airline-card {
  min-height: 100px;
  padding: 1.8rem 1.2rem;
}
.airline-card img {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* ── NAVBAR RIGHT: prevent overflow on small screens ────────── */
.navbar-right {
  gap: 0.7rem;
  flex-shrink: 0;
}

/* ── 768px BREAKPOINT ──────────────────────────────────────── */
@media (max-width: 768px) {
  /* Logo: keep readable on mobile */
  .navbar-logo img {
    height: 34px;
    max-width: 130px;
  }

  /* Flags: slightly bigger for tap target */
  .lang-switcher img {
    width: 30px;
    height: 21px;
  }

  /* Reserve button: hide text, show compact version */
  .btn-reserve {
    font-size: 0.7rem;
    padding: 0.5rem 0.9rem;
    letter-spacing: 0.04em;
  }

  /* Airline cards: 2-col, comfortable sizing */
  .airline-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }
  .airline-card {
    min-height: 88px;
    padding: 1.4rem 1rem;
  }
  .airline-card img {
    height: 44px;
    max-width: 120px;
  }

  /* Hero bar stats — ensure numbers readable */
  .hero-bar-item .n { font-size: 1.8rem; }
  .hero-bar-item    { padding: 1.1rem 0.8rem; }

  /* Navbar right: reduce gap to prevent overflow */
  .navbar-right { gap: 0.5rem; }
}

/* ── 480px BREAKPOINT ──────────────────────────────────────── */
@media (max-width: 480px) {
  /* Logo: compact */
  .navbar-logo img {
    height: 30px;
    max-width: 115px;
  }

  /* Flags: crisp small icons */
  .lang-switcher img {
    width: 26px;
    height: 18px;
  }

  /* Reserve button: hide on very small screens to prevent overflow */
  .btn-reserve {
    display: none;
  }

  /* Airline cards: stay 2-col, compact */
  .airline-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .airline-card {
    min-height: 80px;
    padding: 1.1rem 0.8rem;
  }
  .airline-card img {
    height: 38px;
    max-width: 100px;
  }
  .airline-card span {
    font-size: 0.82rem !important;
    line-height: 1.2;
  }

  /* Navbar: tighter */
  .navbar { padding: 0 1rem; }
  .navbar-right { gap: 0.4rem; }

  /* Page hero height on tiny screens */
  .page-hero { height: 280px; }
}

/* ── 360px BREAKPOINT (very small phones) ──────────────────── */
@media (max-width: 380px) {
  .navbar-logo img { height: 28px; max-width: 100px; }
  .lang-switcher { gap: 0.25rem; }
  .lang-switcher img { width: 24px; height: 17px; }
  .airline-cards-grid { gap: 0.5rem; }
  .airline-card { min-height: 72px; padding: 0.9rem 0.6rem; }
  .airline-card img { height: 34px; max-width: 90px; }
}

/* ================================================================
   LOGO DUAL-IMAGE FIX — show white logo on transparent navbar,
   colour logo on scrolled navbar. No more brightness() filter hack.
================================================================ */

/* Base: hide dark logo, show light (white) logo on transparent navbar */
.navbar-logo .logo-dark  { display: none; }
.navbar-logo .logo-light { display: block; }

/* Scrolled: show dark (colour) logo, hide white logo */
.navbar.scrolled .navbar-logo .logo-dark  { display: block; }
.navbar.scrolled .navbar-logo .logo-light { display: none; }

/* Remove old brightness filter — no longer needed */
.navbar-logo img {
  filter: none !important;
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Footer logo always uses colour version */
.footer-logo img { filter: none !important; }

/* ================================================================
   v5.3 FIXES — correct logo, bigger airline logos, mobile call btn
================================================================ */

/* ── LOGO: single transparent PNG works on all backgrounds ─────
   Show same logo for both transparent + scrolled states.
   The transparent logo shows well on dark hero AND white navbar. */
.navbar-logo .logo-dark,
.navbar-logo .logo-light { display: block; }
.navbar-logo .logo-light  { display: none; }   /* only one needed now */

/* Remove ALL filters - transparent logo needs none */
.navbar-logo img,
.footer-logo img,
.footer-brand img {
  filter: none !important;
}

/* Logo sizing - no stretch */
.navbar-logo img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
}

/* ── AIRLINE LOGOS — bigger, more visible ───────────────────── */
.airline-logo-item {
  padding: 1.8rem 2rem;
  min-height: 120px;
}
.airline-logo-item img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.airline-cards-grid { gap: 1.4rem; }
.airline-card {
  min-height: 120px;
  padding: 2rem 1.5rem;
}
.airline-card img {
  height: 70px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}
/* Bigger text labels (Turkish Airlines, Pegasus) */
.airline-card span[style*="font-size"] {
  font-size: 1.15rem !important;
}

/* ── CALL FLOAT: hide label on mobile, hide all on very small ── */
@media (max-width: 768px) {
  .call-label { display: none !important; }
  .call-badge { display: none !important; }
  .call-float { bottom: 1.2rem; right: 1.2rem; }
  .call-float a { width: 52px; height: 52px; }
}
@media (max-width: 480px) {
  /* Hide the floating call button entirely on small phones —
     the phone strip and footer have the number */
  .call-float { display: none !important; }
}

/* ── NAVBAR LOGO responsive sizes ───────────────────────────── */
@media (max-width: 768px) {
  .navbar-logo img { height: 36px; max-width: 150px; }
}
@media (max-width: 480px) {
  .navbar-logo img { height: 30px; max-width: 120px; }
}

/* ── AIRLINE LOGOS on mobile ────────────────────────────────── */
@media (max-width: 768px) {
  .airline-logo-item { padding: 1.2rem; min-height: 100px; }
  .airline-logo-item img { height: 60px; max-width: 140px; }
  .airline-card { min-height: 100px; padding: 1.5rem 1rem; }
  .airline-card img { height: 55px; }
}
@media (max-width: 480px) {
  .airline-logo-item { padding: 1rem; min-height: 84px; }
  .airline-logo-item img { height: 48px; max-width: 110px; }
  .airline-card { min-height: 84px; padding: 1.1rem 0.8rem; }
  .airline-card img { height: 42px; }
}

/* Footer social icons — force white */
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all var(--tr); color: rgba(255,255,255,0.85) !important; }
.footer-social a svg { stroke: rgba(255,255,255,0.85) !important; fill: rgba(255,255,255,0.85) !important; }
.footer-social a:hover { color: #fff !important; }
.footer-social a:hover svg { stroke: #fff !important; fill: #fff !important; }

/* Contact detail icons (emoji-based) */
.contact-detail-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(14,124,134,0.08);
  border: 1px solid rgba(14,124,134,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; line-height: 1;
}

/* Button spacing after lists */
.check-list + .btn-primary,
.featured-list + .btn-primary { margin-top: 0.5rem; }
.featured-content > .btn-primary { margin-top: 1rem; }
.health-card + .health-card { margin-top: 0; }


/* ================================================================
   RESPONSIVE AUDIT v6 — Contact icons, CTA spacing, mobile polish
================================================================ */

/* Contact detail icon boxes */
.contact-detail-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(14,124,134,0.08);
  border: 1px solid rgba(14,124,134,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; line-height: 1;
}

/* CTA button breathing room */
.cta-section { margin-top: 0; }
.cta-section .btn-gold,
.cta-section .btn-primary { margin-top: 0.5rem; }

/* Sections above CTA get extra bottom padding */
section + .cta-section { margin-top: 0; }

/* Featured content button spacing */
.featured-content .btn-primary,
.featured-content .btn-outline { margin-top: 0.5rem; }

/* Cruise banner button spacing */
.cruise-content .btn-gold { margin-top: 0.5rem; }

/* Health section button */
.health-grid .btn-outline { margin-top: 1rem; }

/* Hotel info box button */
.info-box .btn-gold { margin-top: 0; }

@media (max-width: 768px) {
  /* CTA section mobile */
  .cta-section { padding: 4.5rem 1.5rem; }
  .cta-section h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .cta-phone { font-size: clamp(2rem, 8vw, 3rem); }

  /* Services strip mobile - smaller */
  .service-item { padding: 1.4rem 1.2rem; gap: 0.8rem; }
  .service-icon { width: 42px; height: 42px; }
  .service-item h4 { font-size: 0.85rem; }
  .service-item p  { font-size: 0.72rem; }

  /* Contact grid mobile */
  .contact-grid { gap: 3rem; }
  .contact-detail { margin-bottom: 1.2rem; }

  /* Hotel gallery mobile */
  .hotel-gallery { gap: 0.4rem; }

  /* Page hero mobile - more breathing */
  .page-hero { height: 300px; }
  .page-hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

  /* Car brands mobile */
  .car-brands-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .car-brand { padding: 1.2rem 1rem; min-height: 80px; }
  .car-brand span { font-size: 1.1rem !important; }

  /* Stats band mobile */
  .stats-band { padding: 3.5rem 0; }

  /* Cruise banner mobile */
  .cruise-banner { padding: 2.5rem 1.8rem; min-height: auto; }

  /* Info box mobile */
  .info-box { padding: 2rem 1.5rem; }

  /* Featured grid image - don't show on mobile to save space */
  .featured-img-wrap .featured-badge { bottom: 1rem; left: 1rem; padding: 0.7rem 1rem; }
}

@media (max-width: 480px) {
  /* Smaller fonts on very small screens */
  html { font-size: 14px; }
  
  .hero-content { padding: 0 1rem 6rem; }
  .hero-content h1 { font-size: 2.4rem; }
  
  /* Airlines 2-col on small mobile */
  .airlines-grid-logos { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .airline-logo-item { min-height: 70px; padding: 0.6rem; }
  .airline-logo-item img { height: 32px; }

  /* Car brands 2-col */
  .car-brands-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  /* Section padding */
  .section { padding: 4rem 0; }
  .section-sm { padding: 2.5rem 0; }
  
  /* Container padding */
  .container { padding: 0 1.2rem; }

  /* CTA */
  .cta-section { padding: 3.5rem 1.2rem; }
}

/* ================================================================
   v7 FIXES
================================================================ */

/* ── Footer contact column: was using .footer-contact-item but CSS
   only had .footer-contact-row — add the missing rule ────────── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
}
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--gold-lt); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-icon { flex-shrink: 0; margin-top: 0.15rem; stroke: rgba(255,255,255,0.7); }

/* ── Airline cards: uniform visual size regardless of logo ratio ─
   Use a fixed box height and let object-fit:contain do the work.
   Padding ensures narrow logos don't crowd the edges. ────────── */
.airline-cards-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.airline-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 1.8rem 2.4rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--tr);
}
.airline-card:hover { border-color: var(--teal); box-shadow: var(--sh-md); transform: translateY(-3px); }
.airline-card img,
.airline-card svg {
  display: block;
  width: 100%;
  height: 72px;
  max-width: 220px;
  object-fit: contain;
}
/* Text logos (Turkish, Pegasus span labels) */
.airline-card span {
  display: block;
  text-align: center;
  line-height: 1.2;
}

/* 4-col on wider screens */
@media (min-width: 900px) {
  .airline-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .airline-cards-grid { grid-template-columns: repeat(6, 1fr); }
  .airline-card { padding: 1.6rem 1.8rem; min-height: 120px; }
  .airline-card img { height: 66px; max-width: 190px; }
}

/* Tablet */
@media (max-width: 768px) {
  .airline-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
  .airline-card { min-height: 100px; padding: 1.2rem 1rem; }
  .airline-card img { height: 52px; max-width: 150px; }
}
/* Mobile */
@media (max-width: 480px) {
  .airline-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .airline-card { min-height: 84px; padding: 1rem 0.8rem; }
  .airline-card img { height: 42px; max-width: 120px; }
}

/* ── Logo: single transparent PNG, no filter, no duplicate ──── */
.navbar-logo img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none !important;
  display: block;
}
.navbar-logo .logo-dark { display: none !important; }
.navbar-logo .logo-light { display: none !important; }
.navbar-logo .site-logo { display: block !important; }
.footer-logo img,
.footer-brand img { filter: none !important; }

/* Responsive logo sizing */
@media (max-width: 768px) { .navbar-logo img { height: 36px; max-width: 150px; } }
@media (max-width: 480px) { .navbar-logo img { height: 30px; max-width: 120px; } }

/* ── AIRLINE CARDS: 4 per row (desktop), 2 on mobile ──────────── */
.airline-cards-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 1.4rem !important; }
@media (max-width: 900px)  { .airline-cards-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px)  { .airline-cards-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.7rem !important; } }
