:root {
  --green: #006337;
  --green-2: #004426;
  --orange: #ff9226;
  --gold: #f7c873;
  --ink: #12231c;
  --muted: #607068;
  --line: #dce7e1;
  --soft: #f6faf7;
  --shadow: 0 18px 48px rgba(12, 50, 36, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--green); color: #fff; padding: 10px; z-index: 80; }
.skip-link:focus { left: 8px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 44px);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,99,55,.12);
  transition: padding .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { padding-top: 8px; padding-bottom: 8px; box-shadow: 0 10px 30px rgba(9,45,31,.1); }
.brand { display: inline-flex; align-items: center; min-width: max-content; }
.brand img { width: 248px; height: auto; transition: width .25s ease; }
.site-header.scrolled .brand img { width: 220px; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 14px;
  white-space: nowrap;
}
.nav-link, .site-nav > a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #263a33;
  font-weight: 600;
  letter-spacing: .01em;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.nav-link:hover, .nav-link[aria-current="page"], .site-nav > a[aria-current="page"] { background: #eaf4ef; color: var(--green); }
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 12px 18px !important;
  box-shadow: 0 8px 24px rgba(255,146,38,.28);
  gap: 8px;
  margin-left: 6px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,146,38,.34); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: .2s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.open .dropdown { opacity: 1; transform: translateY(0); visibility: visible; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; color: #263a33; font-weight: 650; }
.dropdown a:hover, .dropdown a[aria-current="page"] { background: #eaf4ef; color: var(--green); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--green); margin: 5px auto; }
.hero, .page-hero { position: relative; min-height: 700px; display: grid; align-items: center; overflow: hidden; }
.page-hero { min-height: 520px; }
.hero img, .page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay, .page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,36,27,.9), rgba(5,36,27,.55), rgba(5,36,27,.16)); }
.hero-content, .page-hero .container { position: relative; color: #fff; padding: 78px 0; }
.hero-copy { animation: heroFade .9s ease both; }
@keyframes heroFade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero h1, .page-hero h1 { max-width: 880px; font-size: clamp(42px, 7vw, 88px); line-height: .98; letter-spacing: 0; margin: 14px 0 20px; }
.page-hero h1 { font-size: clamp(38px, 5vw, 68px); }
.hero p:not(.eyebrow), .page-hero p:not(.eyebrow) { max-width: 760px; font-size: clamp(18px, 2vw, 22px); color: rgba(255,255,255,.9); }
.eyebrow { color: var(--orange); text-transform: uppercase; letter-spacing: .12em; font-weight: 850; font-size: 12px; margin: 0 0 10px; }
.hero-actions, .form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary, .card-btn { background: var(--orange); color: #21140a; }
.btn.secondary { background: #fff; color: var(--green); border-color: var(--line); }
.btn.ghost { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.trip-search-wrap { margin-top: -70px; position: relative; z-index: 2; }
.trip-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}
.trip-search-intro { grid-column: 1 / -1; max-width: 720px; }
.trip-search h2 { font-size: 34px; margin: 0 0 6px; }
.trip-search-intro p:not(.eyebrow) { margin: 0; color: var(--muted); }
.trip-search label { gap: 8px; }
.trip-search input, .trip-search select { min-height: 58px; border-radius: 14px; }
.search-btn { min-height: 58px; border-radius: 999px; color: #fff !important; gap: 9px; }
.trip-search .form-status { grid-column: 1 / -1; margin: 0; }
.section { padding: clamp(64px, 8vw, 108px) 0; }
.trip-search-wrap + .section { padding-top: clamp(72px, 8vw, 96px); }
.muted { background: var(--soft); }
.section-head { text-align: center; max-width: 820px; margin-bottom: 36px; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.05; margin: 0 0 16px; color: var(--green-2); letter-spacing: 0; }
h3 { font-size: 22px; line-height: 1.18; margin: 0 0 10px; color: var(--green-2); }
.section-head p, .copy p, .card-body p, .value p, .destination-card p, .article p, .seo-card p { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.package-card, .blog-card, .value, .testimonial, .contact-card, .booking-form, .cta-panel, .seo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(13,55,40,.08);
}
.package-card, .blog-card { overflow: hidden; transition: .25s ease; }
.package-card:hover, .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-card img, .blog-card img { height: 235px; width: 100%; object-fit: cover; transition: transform .45s ease; }
.package-card:hover img, .blog-card:hover img, .destination-card:hover img, .gallery-item:hover img { transform: scale(1.06); }
.card-body { padding: 24px; }
dl { display: grid; gap: 10px; margin: 18px 0; }
dl div { display: flex; justify-content: space-between; gap: 12px; padding-top: 10px; border-top: 1px solid var(--line); }
dt { font-weight: 850; color: var(--green); }
dd { margin: 0; color: var(--muted); text-align: right; }
.text-link { color: var(--green); font-weight: 850; border-bottom: 2px solid var(--orange); }
.card-btn { width: 100%; color: #21140a; }
.destinations { grid-template-columns: repeat(4, 1fr); }
.destination-card { position: relative; min-height: 315px; overflow: hidden; border-radius: 12px; color: #fff; display: flex; align-items: flex-end; }
.destination-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,39,29,.9), rgba(5,39,29,.08)); }
.destination-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .45s; }
.destination-card div { position: relative; z-index: 1; padding: 22px; }
.destination-card h3 { color: #fff; }
.destination-card p { color: rgba(255,255,255,.86); }
.destination-card a { color: var(--gold); font-weight: 850; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse .copy { order: 2; }
.feature-img { height: 520px; width: 100%; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; font-weight: 750; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); }
.value-grid, .testimonial-grid, .seo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value, .testimonial, .seo-card { padding: 24px; }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.seo-grid { grid-template-columns: repeat(2, 1fr); }
.testimonial blockquote { margin: 0 0 18px; color: #324740; font-size: 17px; }
.testimonial figcaption { font-weight: 850; color: var(--green); }
.testimonial span { display: block; color: var(--muted); font-weight: 600; }
.two-col, .contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq { border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 850; color: var(--green-2); }
.faq p { color: var(--muted); margin-bottom: 0; }
.cta-panel { padding: 32px; background: var(--green); color: #fff; position: sticky; top: 120px; }
.cta-panel h2 { color: #fff; }
.cta-panel p { color: rgba(255,255,255,.86); }
.final-cta { background: linear-gradient(135deg, var(--green-2), var(--green)); color: #fff; padding: 70px 0; }
.final-cta h2 { color: #fff; max-width: 880px; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; font: inherit; color: var(--ink); background: #fff; }
label { display: grid; gap: 7px; font-weight: 800; color: var(--green-2); }
.booking-form { padding: clamp(22px, 4vw, 38px); }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wide { grid-column: 1 / -1; }
.submit-btn.loading { opacity: .75; pointer-events: none; }
.form-status { font-weight: 800; color: var(--green); }
.contact-card { padding: 32px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { margin: 0; border-radius: 12px; overflow: hidden; position: relative; min-height: 290px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: .45s; }
.gallery-item figcaption { position: absolute; left: 16px; bottom: 16px; right: 16px; color: #fff; font-weight: 850; z-index: 1; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent); }
.blog-articles { display: grid; gap: 28px; }
.article { display: grid; grid-template-columns: 360px 1fr; gap: 28px; align-items: center; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.article img { height: 260px; width: 100%; object-fit: cover; border-radius: 12px; }
.site-footer { background: #08251d; color: rgba(255,255,255,.78); padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr .8fr 1fr; gap: 28px; }
.site-footer img { width: 250px; margin-bottom: 14px; background: #fff; border-radius: 12px; padding: 8px; }
.site-footer h2 { color: #fff; font-size: 19px; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.86); }
.newsletter-form { display: flex; gap: 10px; margin: 18px 0; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a { border: 1px solid rgba(255,255,255,.18); padding: 7px 10px; border-radius: 999px; margin: 0; }
.payments { color: rgba(255,255,255,.62); }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; margin: 34px auto 0; width: min(1180px, calc(100% - 32px)); }
.whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 50; background: #25d366; color: #06351a; font-weight: 900; padding: 14px 18px; border-radius: 999px; box-shadow: var(--shadow); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 94px);
    overflow: auto;
    white-space: normal;
  }
  .site-nav.open { display: flex; }
  .has-dropdown { display: grid; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 12px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .trip-search { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .destinations, .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .site-header { padding: 10px 16px; }
  .brand img { width: 190px; }
  .site-header.scrolled .brand img { width: 170px; }
  .site-nav { top: 72px; }
  .hero { min-height: 690px; }
  .page-hero { min-height: 480px; }
  .hero-overlay, .page-hero::before { background: linear-gradient(0deg, rgba(5,36,27,.9), rgba(5,36,27,.52)); }
  .hero-actions, .newsletter-form, .form-actions { flex-direction: column; align-items: stretch; }
  .trip-search-wrap { margin-top: -38px; }
  .trip-search { grid-template-columns: 1fr; padding: 22px; gap: 16px; }
  .trip-search h2 { font-size: 28px; }
  .card-grid, .destinations, .split-grid, .value-grid, .testimonial-grid, .two-col, .contact-grid, .footer-grid, .gallery, .article, .form-grid, .seo-grid { grid-template-columns: 1fr; }
  .split.reverse .copy { order: initial; }
  .feature-img { height: 340px; }
  .cta-panel { position: static; }
}
@media (max-width: 420px) {
  .whatsapp { left: 18px; text-align: center; }
}
