/* ========================================
   Kodee Flights — Shared Styles
   Aesthetic: bold contemporary, teal + amber
   ======================================== */

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

:root {
  --teal: #0d4a4a;
  --teal-deep: #062e2e;
  --teal-bright: #14706e;
  --amber: #f4a628;
  --amber-deep: #c6821a;
  --crimson: #e2452f;
  --ivory: #fcf9f4;
  --ivory-warm: #f5efe0;
  --charcoal: #151a1f;
  --charcoal-soft: #2e3640;
  --mute: #6c7884;
  --line: #e3dccb;
  --snow: #ffffff;
  --shadow-sm: 0 2px 10px rgba(13, 74, 74, 0.06);
  --shadow-md: 0 12px 36px rgba(13, 74, 74, 0.12);
  --shadow-lg: 0 24px 64px rgba(13, 74, 74, 0.22);
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 20px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 700; }

h1 em, h2 em { font-style: normal; color: var(--amber); }
h1 .underline-accent {
  position: relative;
  white-space: nowrap;
}
h1 .underline-accent::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0; right: 0;
  height: 0.35em;
  background: var(--amber);
  z-index: -1;
  opacity: 0.7;
}

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

a { color: var(--teal-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--amber-deep); }

.container { max-width: 1220px; margin: 0 auto; padding: 0 1.5rem; }

/* ========= TOP BAR ========= */
.topbar {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.6rem 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: 700;
  color: var(--amber);
  letter-spacing: 0.02em;
}
.topbar .phone::before { content: "◉ "; color: var(--crimson); }

/* ========= HEADER ========= */
.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: -0.03em;
}
.logo-mark {
  display: inline-flex;
  width: 42px; height: 42px;
  background: var(--teal);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1.15rem;
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  bottom: -2px; right: -2px;
  width: 12px; height: 12px;
  background: var(--crimson);
  border-radius: 50%;
  border: 2px solid var(--ivory);
}
.logo em { font-style: normal; color: var(--teal); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-menu a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0;
  position: relative;
  letter-spacing: 0.01em;
}
.nav-menu a:hover { color: var(--teal-bright); }
.nav-menu a.active { color: var(--teal); font-weight: 600; }
.nav-menu a.active::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.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);
  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(--ivory-warm); color: var(--teal); }

.btn-call {
  background: var(--teal) !important;
  color: var(--ivory) !important;
  padding: 0.7rem 1.35rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem !important;
  transition: all 0.2s;
  border: 2px solid var(--teal);
}
.btn-call:hover {
  background: var(--amber) !important;
  color: var(--charcoal) !important;
  border-color: var(--amber);
}

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

/* ========= HERO ========= */
.hero {
  background:
    linear-gradient(115deg, rgba(6, 46, 46, 0.88) 0%, rgba(13, 74, 74, 0.72) 55%, rgba(20, 112, 110, 0.55) 100%),
    url('https://images.unsplash.com/photo-1569154941061-e231b4725ef1?w=1600&auto=format&fit=crop&q=80') center/cover;
  color: var(--ivory);
  padding: 5rem 0 6.5rem;
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244, 166, 40, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.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.02; }
.hero h1 em { color: var(--amber); }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(252, 249, 244, 0.9);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.6;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(244, 166, 40, 0.15);
  border: 1px solid rgba(244, 166, 40, 0.4);
  padding: 0.45rem 1rem;
  border-radius: 40px;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--charcoal);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid var(--amber);
  transition: all 0.25s;
}
.cta-phone:hover {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}

/* ========= FLIGHT FORM ========= */
.flight-form {
  background: var(--snow);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  color: var(--charcoal);
  position: relative;
  border: 1px solid var(--line);
}
.flight-form::before {
  content: "";
  position: absolute;
  top: -4px; left: 2rem; right: 2rem;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  border-radius: 4px 4px 0 0;
}
.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}
.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(--ivory-warm);
  padding: 0.3rem;
  border-radius: var(--radius-sm);
}
.trip-tab {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mute);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  flex: 1;
}
.trip-tab.active {
  background: var(--teal);
  color: var(--ivory);
}
.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: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.form-field input,
.form-field select {
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--snow);
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 74, 74, 0.12);
}
.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn-primary:hover { background: var(--teal); }
.form-footnote {
  font-size: 0.85rem;
  color: var(--mute);
  margin-top: 1rem;
  text-align: center;
}
.form-footnote a { color: var(--amber-deep); font-weight: 700; }

@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: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--amber-deep);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }

.section-head p {
  font-size: 1.05rem;
  color: var(--mute);
  margin-top: 0.75rem;
}

/* ========= DESTINATION PHOTO GRID ========= */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 1rem;
}
.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.02); }
.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 46, 46, 0.9) 0%, rgba(6, 46, 46, 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: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.photo-tile .caption .country {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}
.photo-tile.tall { grid-row: span 2; }
.photo-tile.wide { grid-column: span 2; }

@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-tile { height: 200px; }
  .photo-tile.tall, .photo-tile.wide { grid-row: auto; grid-column: 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;
  border: 1px solid var(--line);
}
.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.deal-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.deal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 46, 46, 0.4), transparent 55%);
}
.deal-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--crimson);
  color: var(--ivory);
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.deal-body {
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.deal-route {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}
.deal-route .arrow {
  color: var(--amber);
  margin: 0 0.35rem;
  font-weight: 600;
}
.deal-meta {
  font-size: 0.82rem;
  color: var(--mute);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.deal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.deal-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.deal-price small {
  display: block;
  font-size: 0.65rem;
  color: var(--mute);
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}
.deal-cta {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.deal-cta:hover { background: var(--amber); color: var(--charcoal); }

/* ========= EXCLUSIVE BANNER ========= */
.exclusive-banner {
  background:
    linear-gradient(120deg, rgba(6, 46, 46, 0.92) 0%, rgba(13, 74, 74, 0.82) 100%),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&auto=format&fit=crop&q=80') center/cover;
  color: var(--ivory);
  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(--amber); }
.exclusive-banner p {
  color: rgba(252, 249, 244, 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: 1.5rem 1rem;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--teal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--amber);
}

/* ========= CONTENT PAGES ========= */
.page-header {
  background:
    linear-gradient(120deg, rgba(6, 46, 46, 0.9) 0%, rgba(13, 74, 74, 0.78) 100%),
    url('https://images.unsplash.com/photo-1529074963764-98f45c47344b?w=1600&auto=format&fit=crop&q=80') center/cover;
  color: var(--ivory);
  padding: 4.5rem 0 3.5rem;
  position: relative;
}
.page-header h1 { color: var(--snow); margin-bottom: 0.5rem; }
.page-header p { color: rgba(252, 249, 244, 0.85); font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(252, 249, 244, 0.6);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: rgba(252, 249, 244, 0.7); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: var(--amber); }

.content {
  padding: 4rem 0;
  max-width: 820px;
  margin: 0 auto;
}
.content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.content h2::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}
.content h3 { margin-top: 2rem; color: var(--teal); }
.content p, .content li { color: var(--charcoal-soft); }
.content ul, .content ol { margin: 0 0 1.25rem 1.5rem; }
.content li { margin-bottom: 0.5rem; }

.callout {
  background: var(--ivory-warm);
  border-left: 4px solid var(--amber);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout strong { color: var(--teal); font-weight: 700; }

/* ========= CTA BLOCK ========= */
.cta-block {
  background: var(--teal);
  color: var(--ivory);
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(244, 166, 40, 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: 2.1rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}
.cta-block h3 em { color: var(--amber); font-style: normal; }
.cta-block p {
  color: rgba(252, 249, 244, 0.85);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

/* ========= FOOTER ========= */
.site-footer {
  background: var(--charcoal);
  color: rgba(252, 249, 244, 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(--amber);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(252, 249, 244, 0.7); font-size: 0.92rem; }
.footer-col a:hover { color: var(--amber); }
.footer-col .logo { color: var(--snow); margin-bottom: 1rem; font-size: 1.7rem; }
.footer-col .logo em { color: var(--amber); }

.footer-disclaimer {
  background: rgba(244, 166, 40, 0.08);
  border: 1px solid rgba(244, 166, 40, 0.25);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(252, 249, 244, 0.85);
}
.footer-disclaimer strong {
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

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

/* ========= RESPONSIVE ========= */
@media (max-width: 860px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    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(--ivory-warm);
  }
  .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; }
}
