:root {
  --ink: #10182b;
  --ink-soft: #5b6478;
  --paper: #ffffff;
  --cream: #f6f7fb;
  --line: #e7e9f2;
  --brand: #1b6d7a;
  --brand-dark: #114b54;
  --accent: #f2994a;
  --shadow: 0 10px 30px -12px rgba(16, 24, 43, .18);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
h1, h2, h3, h4 { font-family: 'Poppins', system-ui, sans-serif; margin: 0; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #201202; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); width: 100%; }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-block { width: 100%; }

/* ---- header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.75); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4.4rem; }
.logo { display: flex; align-items: center; gap: .65rem; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--brand-dark); }
.logo-badge {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 2.3rem; height: 2.3rem; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #e0782a);
  box-shadow: 0 6px 14px -6px rgba(242,153,74,.6);
  transform: rotate(-8deg);
}
.logo-text em { font-style: normal; color: var(--accent); }
.footer-brand .logo-text em { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.nav-cta) { font-weight: 500; font-size: .92rem; color: var(--ink-soft); }
.nav a:not(.nav-cta):hover { color: var(--brand); }
.nav-cta { background: var(--brand); color: #fff !important; padding: .55rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: .88rem; }
.nav-cta:hover { background: var(--brand-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---- hero ---- */
.hero {
  position: relative; overflow: hidden; padding: 9.5rem 0 8rem;
  color: #fff;
}
.hero-bg-slideshow { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.6s ease;
  animation: hero-ken-burns 16s ease-in-out infinite alternate;
}
.hero-bg-slide.active { opacity: 1; }
@keyframes hero-ken-burns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide { animation: none; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(1200px 600px at 15% -10%, rgba(42,143,158,.55) 0%, transparent 60%),
              linear-gradient(135deg, rgba(17,75,84,.92), rgba(27,109,122,.82) 55%, rgba(10,40,45,.75));
}
.hero-shapes { position: absolute; inset: 0; z-index: 0; }
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; height: 140px; fill: var(--paper); }
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.eyebrow { font-weight: 600; letter-spacing: .04em; color: #d9f3ec; margin-bottom: 1rem; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.12; margin-bottom: 1.1rem; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.88); max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; }
.hero-stats span { font-size: .82rem; color: rgba(255,255,255,.75); }

/* Floating rating card - the "unique element" that breaks the hero out of a
   plain flat rectangle by overlapping its own bottom edge. */
.hero-float-card {
  position: absolute; z-index: 2; right: 6%; bottom: 34px;
  background: var(--paper); color: var(--ink); border-radius: 14px;
  padding: 1rem 1.3rem; box-shadow: 0 20px 45px -12px rgba(0,0,0,.35);
  display: flex; flex-direction: column; gap: .15rem; min-width: 170px;
}
.hero-float-stars { color: var(--accent); font-size: .85rem; letter-spacing: .1em; }
.hero-float-card strong { font-family: 'Poppins', sans-serif; font-size: 1.3rem; }
.hero-float-card span { font-size: .76rem; color: var(--ink-soft); }
@media (max-width: 720px) { .hero-float-card { display: none; } }

/* ---- sections ---- */
.section { padding: 6rem 0; }
.section-alt { background: var(--cream); }
.section-eyebrow { font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; margin-bottom: .6rem; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; margin-bottom: .8rem; }
.section-sub { color: var(--ink-soft); max-width: 560px; font-size: 1rem; margin-bottom: 3rem; }

.grid { display: grid; gap: 1.75rem; }

/* ---- reveal-on-scroll ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ---- destinations ---- */
.destinations-grid { grid-template-columns: repeat(3, 1fr); }
.dest-card {
  position: relative; background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -14px rgba(16,24,43,.28); }
.dest-media-wrap { position: relative; width: 100%; height: 210px; overflow: hidden; }
.dest-media {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease, transform .5s ease;
}
.dest-media.active { opacity: 1; }
.dest-card:hover .dest-media.active { transform: scale(1.07); }
.dest-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  background: rgba(16,24,43,.55); backdrop-filter: blur(3px); color: #fff;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: .3rem .7rem; border-radius: 999px;
}
.dest-body { padding: 1.3rem 1.4rem 1.5rem; }
.dest-body h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.dest-body p { font-size: .88rem; color: var(--ink-soft); margin-bottom: .9rem; }
.dest-price { font-weight: 700; color: var(--accent); font-size: .9rem; }

/* ---- why us (split image + feature list) ---- */
.why-us-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.why-us-media { position: relative; }
.why-us-media img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); }
.why-us-float {
  position: absolute; left: -1.5rem; bottom: -1.5rem; z-index: 1;
  background: var(--brand-dark); color: #fff; border-radius: 16px; padding: 1.1rem 1.4rem;
  box-shadow: 0 20px 45px -14px rgba(0,0,0,.35); display: flex; flex-direction: column; gap: .1rem;
}
.why-us-float strong { font-family: 'Poppins', sans-serif; font-size: 1.7rem; }
.why-us-float span { font-size: .78rem; color: rgba(255,255,255,.8); max-width: 150px; }
.why-us-content .section-sub, .why-us-content .section-eyebrow, .why-us-content .section-title { max-width: none; }
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.feature-row { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 2.8rem; height: 2.8rem;
  border-radius: 12px; background: rgba(27,109,122,.1); color: var(--brand);
}
.feature-row h3 { font-size: 1rem; margin-bottom: .3rem; }
.feature-row p { font-size: .88rem; color: var(--ink-soft); }

/* ---- packages ---- */
.packages-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.package-card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.8rem; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.package-card.featured { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); transform: scale(1.04); }
.package-card.featured h3 { color: #fff; }
.package-badge {
  position: absolute; top: -.9rem; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #201202; font-size: .74rem; font-weight: 700;
  padding: .35rem .9rem; border-radius: 999px; white-space: nowrap;
}
.package-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.package-price { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 1.4rem; }
.package-price span { font-size: .85rem; font-weight: 500; opacity: .7; }
.package-list { margin-bottom: 1.8rem; flex: 1; }
.package-list li { padding: .5rem 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .9rem; }
.package-card.featured .package-list li { border-bottom-color: rgba(255,255,255,.15); }
.package-card.featured .btn-primary { color: #201202; }

/* ---- testimonials ---- */
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.testimonial-card p { font-size: .95rem; color: var(--ink); margin-bottom: 1.4rem; }
.testimonial-card figcaption { display: flex; align-items: center; gap: .8rem; }
.avatar {
  width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--brand);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .82rem; flex-shrink: 0;
}
.testimonial-card figcaption div { display: flex; flex-direction: column; font-size: .85rem; }
.testimonial-card figcaption span { color: var(--ink-soft); font-size: .78rem; }

/* ---- cta band ---- */
.cta-band { position: relative; overflow: hidden; color: #fff; padding: 4.5rem 0; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(10,20,40,.9), rgba(27,109,122,.75)); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: 1.5rem; margin-bottom: .4rem; }
.cta-inner p { color: rgba(255,255,255,.85); }
.newsletter-form { display: flex; gap: .7rem; flex-wrap: wrap; }
.newsletter-form input {
  padding: .8rem 1.1rem; border-radius: 999px; border: none; min-width: 240px; font: inherit;
}

/* ---- contact ---- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-details { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .9rem; }
.contact-details li { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: var(--ink-soft); }
.contact-details svg { color: var(--brand); flex-shrink: 0; }
.contact-form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: var(--paper); color: var(--ink); resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus, .newsletter-form input:focus { outline: 2px solid var(--brand); outline-offset: 1px; }

/* ---- footer ---- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 3.5rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand p { margin-top: .8rem; font-size: .88rem; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-brand .logo { color: #fff; }
.social-icons { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-icons a {
  width: 2.2rem; height: 2.2rem; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: background .15s ease;
}
.social-icons a:hover { background: var(--brand); }
.footer-links h4 { color: #fff; font-size: .88rem; margin-bottom: 1rem; }
.footer-links a { display: block; font-size: .88rem; padding: .35rem 0; color: rgba(255,255,255,.65); }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; font-size: .82rem; text-align: center; color: rgba(255,255,255,.5); }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-media img { height: 300px; }
}
@media (max-width: 720px) {
  .nav { position: fixed; top: 4.4rem; left: 0; right: 0; background: var(--paper);
         flex-direction: column; align-items: stretch; padding: 1rem 1.5rem 1.5rem; gap: .3rem;
         border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .25s ease; }
  .nav.open { transform: translateY(0); }
  .nav a:not(.nav-cta) { padding: .7rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: .8rem; text-align: center; }
  .nav-toggle { display: flex; }
  .destinations-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .why-us-float { left: .8rem; bottom: -1.2rem; padding: .8rem 1rem; }
}
