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

:root {
  --navy: #0d1b2e;
  --navy2: #152640;
  --navy3: #1e3455;
  --amber: #f5a623;
  --amber2: #f7b84b;
  --amber3: #fcd07a;
  --coral: #f05a3a;
  --teal: #0eb8a0;
  --sky: #4db8e8;
  --white: #ffffff;
  --off: #f7f9fc;
  --off2: #eef2f7;
  --text: #1a2535;
  --muted: #6b7f99;
  --border: #dde4ef;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 70px;
  background: rgba(13, 27, 46, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo .logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
  margin-bottom: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 100px !important;
}
.nav-cta:hover { background: var(--amber2) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── PAGES ── */
.page { display: none; padding-top: 70px; min-height: 100vh; }
.page.active { display: block; }

/* ── HOME HERO ── */
.hero {
  min-height: calc(100vh - 70px);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(245,166,35,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(14,184,160,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(77,184,232,0.07) 0%, transparent 50%);
}

.hero-map {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 90%;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500'%3E%3Cpath d='M100,200 Q200,150 300,180 T500,160 T700,200' stroke='white' fill='none' stroke-width='1'/%3E%3Ccircle cx='150' cy='200' r='4' fill='white'/%3E%3Ccircle cx='300' cy='180' r='4' fill='white'/%3E%3Ccircle cx='450' cy='170' r='4' fill='white'/%3E%3Ccircle cx='600' cy='190' r='4' fill='white'/%3E%3C/svg%3E");
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 4rem;
  max-width: 700px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber2);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s ease both;
}
.hero-pill .pill-badge {
  background: var(--amber);
  color: var(--navy);
  border-radius: 100px;
  padding: 0.15rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 .h1-accent {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-search {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.3s ease both;
  flex-wrap: wrap;
}
.search-field {
  flex: 1;
  min-width: 140px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.search-field::placeholder { color: rgba(255,255,255,0.35); }
.search-field:focus { border-color: var(--amber); }
.search-btn {
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--amber2); }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-tag-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
}
.hero-tag-pill:hover { background: rgba(245,166,35,0.15); border-color: rgba(245,166,35,0.3); color: var(--amber2); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--amber);
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-item .sn {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-item .sl { font-size: 0.75rem; font-weight: 600; color: rgba(13,27,46,0.6); letter-spacing: 0.05em; }
.stat-sep { width: 1px; height: 36px; background: rgba(13,27,46,0.15); }

/* ── SECTION ── */
.section { padding: 6rem 4rem; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
h2 em { font-style: italic; color: var(--coral); }
.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 3rem;
}

/* ── DESTINATION CARDS ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dest-grid.large {
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
}
.dest-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.dest-card:hover { transform: translateY(-6px); }
.dest-card:first-child { grid-row: span 2; }

.dest-thumb {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}
.dest-card:first-child .dest-thumb { height: 100%; min-height: 460px; }
.dest-card:hover .dest-thumb { transform: scale(1.05); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.9) 0%, rgba(13,27,46,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.dest-state {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber2);
  margin-bottom: 0.3rem;
}
.dest-name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.dest-card:first-child .dest-name { font-size: 2rem; }
.dest-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.dest-tag {
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  font-size: 0.68rem;
  color: var(--amber2);
  font-weight: 600;
}

/* ── HOW IT WORKS ── */
.how-bg { background: var(--navy); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), transparent);
}
.how-step { text-align: center; position: relative; }
.how-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--amber);
  position: relative;
  z-index: 1;
}
.how-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.how-step p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── SERVICES PAGE ── */
.page-hero {
  background: var(--navy);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(245,166,35,0.1), transparent 60%);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.5rem); position: relative; }
.page-hero h1 em { color: var(--amber); }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 520px; margin-top: 1rem; line-height: 1.8; position: relative; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 5rem 4rem;
}
.service-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { border-color: transparent; box-shadow: 0 20px 60px rgba(13,27,46,0.12); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.svc-features { display: flex; flex-direction: column; gap: 0.5rem; }
.svc-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
}
.svc-feat::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ── DESTINATIONS PAGE ── */
.dest-filters {
  padding: 2rem 4rem 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--off2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.dest-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 4rem 5rem;
}
.dest-full-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  background: var(--white);
}
.dest-full-card:hover { box-shadow: 0 16px 48px rgba(13,27,46,0.12); transform: translateY(-4px); border-color: transparent; }
.dfc-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.dfc-body { padding: 1.5rem; }
.dfc-region {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.3rem;
}
.dfc-body h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.dfc-body p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.dfc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dfc-price { font-size: 0.78rem; color: var(--muted); }
.dfc-price strong { font-size: 1rem; color: var(--navy); font-weight: 700; }
.dfc-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.dfc-btn:hover { background: var(--navy3); }

/* ── CONTACT ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  min-height: calc(100vh - 70px);
}
.contact-left {
  background: var(--navy);
  padding: 5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(14,184,160,0.15), transparent 60%);
}
.contact-left h2 {
  color: var(--white);
  font-size: clamp(2rem,3.5vw,3rem);
  position: relative;
  margin-bottom: 1rem;
}
.contact-left h2 em { color: var(--amber); }
.contact-left > p { color: rgba(255,255,255,0.5); font-size: 0.92rem; line-height: 1.8; margin-bottom: 3rem; position: relative; }
.c-info-items { position: relative; display: flex; flex-direction: column; gap: 1.5rem; }
.c-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ci-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.2rem; }
.ci-val { font-size: 0.88rem; color: rgba(255,255,255,0.65); font-weight: 400; }

.contact-right { padding: 5rem 4rem; background: var(--off); }
.contact-right h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-right > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--amber); }
.form-group select option { background: var(--white); }
.form-group textarea { min-height: 120px; }
.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-submit:hover { background: var(--navy3); transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 3rem 0; }
.form-success .fs-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .fl {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.footer-brand .fl .logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); margin-bottom: 2px; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber2); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1rem;
  }
  .hero-content { padding: 3rem 1.5rem; }
  .stats-bar { padding: 1rem 1.5rem; gap: 1rem; }
  .stat-sep { display: none; }
  .section { padding: 4rem 1.5rem; }
  .dest-grid, .dest-grid.large { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-row: auto; }
  .dest-card:first-child .dest-thumb { min-height: 220px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
  .page-hero { padding: 3.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .dest-filters { padding: 1.5rem 1.5rem 0; }
  .dest-full-grid { grid-template-columns: 1fr; padding: 1.5rem 1.5rem 4rem; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-left { padding: 3.5rem 1.5rem; }
  .contact-right { padding: 3.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
