/* =========================================================
   Sky Travel Inc. — Shared Stylesheet
   Aesthetic: Ocean & Sunset — deep teal + warm coral
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

:root {
  --teal-900: #06363a;
  --teal-800: #0c4a4e;
  --teal-700: #145a5e;
  --teal-600: #1d7a7f;
  --teal-50:  #eef7f6;
  --coral:    #ff6b4a;
  --coral-dark: #e8502f;
  --amber:    #f5a623;
  --cream:    #fbf7f0;
  --sand:     #f3ece0;
  --ink:      #14201f;
  --muted:    #5c6b6a;
  --line:     #e3ddd2;
  --white:    #ffffff;
  --shadow-sm: 0 2px 8px rgba(6,54,58,.08);
  --shadow-md: 0 12px 30px rgba(6,54,58,.12);
  --shadow-lg: 0 24px 60px rgba(6,54,58,.18);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--coral); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--teal-900); letter-spacing: -.01em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 14px;
}

.section-title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); max-width: 620px; font-size: 1.05rem; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--teal-900);
  color: #cfe6e4;
  font-size: .86rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
}
.topbar a { color: #e7f4f2; }
.topbar a:hover { color: var(--amber); }
.topbar .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar strong { color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,240,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li > a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink);
  font-size: .96rem;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background: var(--teal-50); color: var(--teal-800); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " ▾"; font-size: .7em; opacity: .6; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 12px; border-radius: 8px; font-size: .92rem; color: var(--ink); }
.dropdown li a:hover { background: var(--teal-50); color: var(--teal-800); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1;
}
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 8px 20px rgba(255,107,74,.35); }
.btn--primary:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--teal-800); border: 1.5px solid var(--teal-700); }
.btn--ghost:hover { background: var(--teal-800); color: #fff; }
.btn--call { background: var(--teal-800); color: #fff; }
.btn--call:hover { background: var(--teal-900); color:#fff; transform: translateY(-2px); }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--teal-900); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: 96px 0 120px;
  background:
    linear-gradient(180deg, rgba(6,54,58,.62), rgba(6,54,58,.78)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, var(--cream));
}
.hero-inner { max-width: 720px; position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.05; }
.hero h1 em { font-style: italic; color: var(--amber); }
.hero p { font-size: 1.18rem; margin: 20px 0 30px; color: #eef6f5; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; position: relative; z-index: 2; }
.hero-trust div { display:flex; flex-direction:column; }
.hero-trust b { font-family: var(--font-display); font-size: 1.7rem; color: #fff; }
.hero-trust span { font-size: .85rem; color: #cfe6e4; letter-spacing: .03em; }

/* ---------- Flight query form ---------- */
.flight-form-wrap { position: relative; z-index: 3; margin-top: -70px; }
.flight-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  border: 1px solid var(--line);
}
.flight-form h3 { font-size: 1.25rem; margin-bottom: 4px; }
.flight-form .form-note { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.trip-toggle { display: inline-flex; background: var(--sand); border-radius: 999px; padding: 4px; margin-bottom: 18px; }
.trip-toggle label { padding: 7px 18px; border-radius: 999px; font-size: .88rem; font-weight: 500; cursor: pointer; color: var(--muted); }
.trip-toggle input { display: none; }
.trip-toggle input:checked + label { background: #fff; color: var(--teal-800); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .8rem; font-weight: 600; color: var(--teal-800); letter-spacing: .02em; }
.field input, .field select {
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  background: var(--cream);
  color: var(--ink);
  transition: border .2s ease, background .2s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--teal-600); background: #fff; }
.flight-form .btn { width: 100%; justify-content: center; }
.form-disclaimer { font-size: .8rem; color: var(--muted); margin-top: 14px; }

/* ---------- Deals / cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.deal-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.deal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.deal-card .img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.deal-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.deal-card:hover .img img { transform: scale(1.07); }
.deal-card .tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--coral); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px;
}
.deal-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.deal-card .route { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.18rem; color: var(--teal-900); margin-bottom: 4px; }
.deal-card .route .arrow { color: var(--coral); }
.deal-card .meta { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.deal-card .price-row { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.deal-card .price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--teal-800); }
.deal-card .price small { font-size: .8rem; font-weight: 400; color: var(--muted); }
.deal-card .old { font-size: .9rem; color: var(--muted); text-decoration: line-through; }
.deal-card .book { font-size: .85rem; font-weight: 600; color: var(--coral-dark); }

/* destination tiles */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.dest-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-sm);
}
.dest-tile.wide { aspect-ratio: 3/2; grid-column: span 2; }
.dest-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-tile:hover img { transform: scale(1.08); }
.dest-tile .label {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; color: #fff;
  background: linear-gradient(180deg, transparent 40%, rgba(6,54,58,.85));
}
.dest-tile .label b { font-family: var(--font-display); font-size: 1.3rem; }
.dest-tile .label span { font-size: .85rem; color: #e9f4f3; }

/* ---------- Feature strip ---------- */
.feature-strip { background: var(--teal-900); color: #e7f4f2; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature .ico {
  flex: 0 0 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  color: var(--amber);
}
.feature h4 { color: #fff; font-size: 1.08rem; margin-bottom: 3px; }
.feature p { font-size: .9rem; color: #b9d6d3; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--coral), var(--amber));
  color: #fff; text-align: center; border-radius: var(--radius);
  padding: 52px 24px; box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-band p { margin: 12px auto 26px; max-width: 560px; color: #fff5ef; font-size: 1.08rem; }
.cta-band .btn--call { background: #fff; color: var(--coral-dark); }
.cta-band .btn--call:hover { background: var(--teal-900); color: #fff; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    linear-gradient(180deg, rgba(6,54,58,.72), rgba(6,54,58,.86)),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff; padding: 70px 0 64px; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
.page-hero p { color: #d7ebe9; margin-top: 10px; }
.breadcrumb { font-size: .85rem; color: #bcd9d6; margin-top: 14px; }
.breadcrumb a { color: var(--amber); }

/* ---------- Article / policy content ---------- */
.article { max-width: 820px; margin: 0 auto; }
.article h2 { font-size: 1.55rem; margin: 38px 0 12px; }
.article h3 { font-size: 1.18rem; margin: 26px 0 8px; color: var(--teal-800); }
.article p { margin-bottom: 14px; color: #34423f; }
.article p, .article li { color: #34423f; }
.article ul, .article ol { margin: 0 0 16px 22px; }
.article li { margin-bottom: 8px; }
.article .updated { color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.article a { font-weight: 500; text-decoration: underline; }
.toc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 24px; margin-bottom: 30px; box-shadow: var(--shadow-sm);
}
.toc b { display:block; margin-bottom: 8px; color: var(--teal-900); font-family: var(--font-display); }
.toc ol { margin: 0 0 0 18px; columns: 2; gap: 24px; }
.toc li { margin-bottom: 6px; font-size: .92rem; }
.callout {
  background: var(--teal-50); border-left: 4px solid var(--teal-600);
  padding: 16px 20px; border-radius: 8px; margin: 20px 0; font-size: .95rem;
}

/* ---------- About ---------- */
.about-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.about-split img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.owner-card {
  display: flex; gap: 20px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); margin-top: 26px;
}
.owner-card .avatar {
  flex: 0 0 78px; height: 78px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
  display: grid; place-items: center; color: #fff; font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
}
.owner-card h4 { font-size: 1.15rem; }
.owner-card span { color: var(--muted); font-size: .9rem; }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 34px; }
.stat { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; text-align:center; }
.stat b { display:block; font-family: var(--font-display); font-size: 1.9rem; color: var(--teal-800); }
.stat span { font-size: .85rem; color: var(--muted); }

/* ---------- Contact / address box ---------- */
.info-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; }
.info-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.info-card .ico { width:44px;height:44px;border-radius:12px;background:var(--teal-50);display:grid;place-items:center;color:var(--teal-700);margin-bottom:14px; }
.info-card h4 { font-size:1.05rem; margin-bottom:6px; }
.info-card p, .info-card a { font-size:.95rem; color: var(--muted); }
.info-card a { color: var(--teal-700); font-weight:500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #b9d6d3; padding: 64px 0 28px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h5 { color:#fff; font-family: var(--font-display); font-size:1.05rem; margin-bottom: 16px; font-weight:600; }
.site-footer ul { list-style:none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color:#b9d6d3; font-size:.92rem; }
.site-footer a:hover { color: var(--amber); }
.footer-brand p { font-size:.92rem; margin-top: 14px; max-width: 320px; color:#9ec4c0; }
.footer-brand .brand svg { height: 40px; }
.footer-contact-line { display:flex; gap:10px; align-items:center; margin-bottom:10px; font-size:.92rem; color:#cfe6e4; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px;
  display:flex; justify-content: space-between; gap:16px; flex-wrap:wrap; font-size:.85rem; color:#8fb3af;
}
.footer-bottom a { color:#8fb3af; }
.disclosure {
  background: var(--teal-800); color:#a9cbc8; font-size:.8rem; line-height:1.6;
  border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 30px;
}

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  background: var(--coral); color:#fff; border-radius:999px; padding: 14px 22px;
  font-weight:700; box-shadow: 0 12px 30px rgba(255,107,74,.5); display:flex; gap:9px; align-items:center;
}
.float-call:hover { background: var(--coral-dark); color:#fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .dest-tile.wide { grid-column: span 1; }
  .toc ol { columns: 1; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px; gap: 2px; display: none; box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .dropdown { position: static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; background:var(--sand); margin:4px 0 4px 10px; }
  .has-dropdown:hover .dropdown { transform:none; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .float-call span.txt { display:none; }
}
