/* =========================================
   Tag Flights — Shared Styles
   Aesthetic: modern, midnight navy + coral
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --midnight: #0c1e3e;
  --midnight-deep: #061330;
  --navy: #1e3a6b;
  --coral: #ff6b4a;
  --coral-deep: #e04a2a;
  --sunset: #ffa850;
  --cloud: #fafaf7;
  --snow: #ffffff;
  --sand: #f2ede3;
  --ink: #0a0f1f;
  --ink-soft: #3d4558;
  --mute: #6b7688;
  --line: #e5e3dc;
  --shadow-sm: 0 2px 12px rgba(12, 30, 62, 0.06);
  --shadow-md: 0 14px 36px rgba(12, 30, 62, 0.12);
  --shadow-lg: 0 28px 70px rgba(12, 30, 62, 0.22);
  --radius: 14px;
  --radius-sm: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cloud);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.12;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 600; }

h1 em, h2 em { font-style: italic; color: var(--coral); font-weight: 500; }

p { margin-bottom: 1rem; color: var(--ink-soft); }

a { color: var(--coral-deep); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--midnight); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ========== TOP BAR ========== */
.topbar {
  background: var(--midnight-deep);
  color: var(--cloud);
  padding: 0.55rem 0;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar .phone {
  font-weight: 600;
  color: var(--sunset);
  letter-spacing: 0.02em;
}
.topbar .phone::before { content: "✈  "; }

/* ========== HEADER ========== */
.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-mark {
  display: inline-flex;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--sunset) 100%);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--snow);
  font-size: 1rem;
  transform: rotate(-8deg);
}
.logo em { color: var(--coral); font-style: italic; font-weight: 500; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-menu a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--coral); }
.nav-menu a.active { color: var(--coral); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--coral);
}

.dropdown { position: relative; }
.dropdown-trigger::after { content: " ⌄"; font-size: 0.9em; color: var(--mute); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -0.75rem;
  background: var(--snow);
  min-width: 230px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s;
  padding: 0.5rem 0;
  list-style: none;
  border: 1px solid var(--line);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
}
.dropdown-menu li a:hover { background: var(--sand); color: var(--coral-deep); }

.btn-call {
  background: var(--coral) !important;
  color: var(--snow) !important;
  padding: 0.65rem 1.3rem !important;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 14px rgba(255, 107, 74, 0.35);
  transition: all 0.2s;
}
.btn-call:hover {
  background: var(--coral-deep) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

/* ========== HERO WITH BG IMAGE ========== */
.hero {
  background:
    linear-gradient(120deg, rgba(6, 19, 48, 0.85) 0%, rgba(12, 30, 62, 0.65) 60%, rgba(12, 30, 62, 0.4) 100%),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&auto=format&fit=crop&q=80') center/cover;
  color: var(--cloud);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { color: var(--snow); margin-bottom: 1.25rem; line-height: 1.05; }
.hero h1 em { color: var(--sunset); }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(250, 250, 247, 0.9);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.6;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 107, 74, 0.2);
  border: 1px solid rgba(255, 168, 80, 0.4);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  color: var(--sunset);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.hero-eyebrow::before { content: "✦"; }

.cta-phone {
  display: inline-block;
  background: var(--coral);
  color: var(--snow);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 40px;
  border: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
}
.cta-phone:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  color: var(--snow);
}

/* ========== FLIGHT FORM ========== */
.flight-form {
  background: var(--snow);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  position: relative;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}
.form-subtitle {
  font-size: 0.85rem;
  color: var(--mute);
  margin-bottom: 1.25rem;
}
.trip-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  background: var(--sand);
  padding: 0.3rem;
  border-radius: 30px;
}
.trip-tab {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mute);
  border-radius: 30px;
  transition: all 0.2s;
  flex: 1;
}
.trip-tab.active {
  background: var(--midnight);
  color: var(--snow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-field input,
.form-field select {
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--snow);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.12);
}
.btn-primary {
  background: var(--coral);
  color: var(--snow);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}
.form-footnote {
  font-size: 0.85rem;
  color: var(--mute);
  margin-top: 1rem;
  text-align: center;
}
.form-footnote a { color: var(--coral); font-weight: 600; }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* ========== SECTIONS ========== */
section { padding: 5rem 0; }
.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--mute);
  margin-top: 0.75rem;
}

/* ========== DESTINATION PHOTO GRID (HOME) ========== */
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 1rem;
  margin-bottom: 3rem;
}
.photo-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.photo-tile:hover { transform: scale(1.015); }
.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 19, 48, 0.85) 0%, rgba(6, 19, 48, 0.1) 60%);
}
.photo-tile .caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  color: var(--snow);
}
.photo-tile .caption .place {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.photo-tile .caption .country {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sunset);
  font-weight: 500;
}
.photo-tile.hero-tile { grid-row: span 2; }

@media (max-width: 760px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .photo-tile.hero-tile { grid-column: span 2; grid-row: auto; }
}

/* ========== DEALS ========== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.deal-card {
  background: var(--snow);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.deal-image {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.deal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 19, 48, 0.45), transparent 60%);
}
.deal-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--coral);
  color: var(--snow);
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.deal-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.deal-route {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--ink);
}
.deal-route .arrow { color: var(--coral); margin: 0 0.3rem; font-style: italic; }
.deal-meta {
  font-size: 0.82rem;
  color: var(--mute);
  margin-bottom: 1.25rem;
}
.deal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.deal-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1;
}
.deal-price small {
  display: block;
  font-size: 0.65rem;
  color: var(--mute);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}
.deal-cta {
  background: var(--midnight);
  color: var(--snow);
  padding: 0.6rem 1.1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s;
}
.deal-cta:hover { background: var(--coral); color: var(--snow); }

/* ========== EXCLUSIVE BANNER ========== */
.exclusive-banner {
  background:
    linear-gradient(120deg, rgba(6, 19, 48, 0.92) 0%, rgba(30, 58, 107, 0.8) 100%),
    url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&auto=format&fit=crop&q=80') center/cover;
  color: var(--cloud);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
}
.exclusive-banner h2 { color: var(--snow); margin-bottom: 0.75rem; }
.exclusive-banner h2 em { color: var(--sunset); }
.exclusive-banner p {
  color: rgba(250, 250, 247, 0.85);
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}
.feature {
  text-align: center;
  padding: 1rem 0.5rem;
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--coral) 0%, var(--sunset) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--snow);
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

/* ========== CONTENT PAGES ========== */
.page-header {
  background:
    linear-gradient(120deg, rgba(6, 19, 48, 0.88) 0%, rgba(30, 58, 107, 0.78) 100%),
    url('https://images.unsplash.com/photo-1530521954074-e64f6810b32d?w=1600&auto=format&fit=crop&q=80') center/cover;
  color: var(--snow);
  padding: 4rem 0 3rem;
  position: relative;
}
.page-header h1 { color: var(--snow); margin-bottom: 0.5rem; }
.page-header p { color: rgba(250,250,247,0.85); font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(250,250,247,0.6);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: rgba(250,250,247,0.7); }
.breadcrumb a:hover { color: var(--sunset); }
.breadcrumb span { color: var(--sunset); }

.content {
  padding: 4rem 0;
  max-width: 820px;
  margin: 0 auto;
}
.content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--midnight);
}
.content h2::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  background: var(--coral);
  margin-right: 0.75rem;
  vertical-align: middle;
  transform: translateY(-6px);
}
.content h3 { margin-top: 2rem; color: var(--midnight); }
.content p, .content li { color: var(--ink-soft); }
.content ul, .content ol { margin: 0 0 1.25rem 1.5rem; }
.content li { margin-bottom: 0.5rem; }

.callout {
  background: linear-gradient(100deg, var(--sand) 0%, rgba(255, 168, 80, 0.12) 100%);
  border-left: 4px solid var(--coral);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout strong { color: var(--midnight); font-weight: 600; }

/* ========== CTA BLOCK ========== */
.cta-block {
  background:
    linear-gradient(120deg, var(--midnight) 0%, var(--navy) 100%);
  color: var(--snow);
  padding: 3.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 2; }
.cta-block h3 {
  color: var(--snow);
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.cta-block h3 em { color: var(--sunset); }
.cta-block p {
  color: rgba(250,250,247,0.85);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}
.cta-block .cta-phone {
  background: var(--coral);
  color: var(--snow);
}
.cta-block .cta-phone:hover { background: var(--sunset); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--midnight-deep);
  color: rgba(250,250,247,0.75);
  padding: 4rem 0 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  color: var(--sunset);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(250,250,247,0.7); font-size: 0.92rem; }
.footer-col a:hover { color: var(--sunset); }
.footer-col .logo { color: var(--snow); margin-bottom: 1rem; font-size: 1.7rem; }
.footer-col .logo em { color: var(--coral); }

.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 168, 80, 0.2);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(250,250,247,0.82);
}
.footer-disclaimer strong {
  color: var(--sunset);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(250,250,247,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(250,250,247,0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 860px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--snow);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: var(--sand);
  }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; text-align: center; }
}
