/* Global theme and layout variables */
:root {
  --primary: #2f6b3f;
  --primary-dark: #1e4a2c;
  --accent: #d4a017;
  --accent-soft: #f1c65d;
  --text: #23312a;
  --muted: #5c6c62;
  --background: #f8f4ea;
  --surface: #ffffff;
  --border: #e6ddca;
  --shadow: 0 20px 45px rgba(35, 49, 42, 0.14);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Base page styling */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; object-fit: cover; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5rem 0; }
.alt-section { background: rgba(47, 107, 63, 0.06); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 244, 234, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(35, 49, 42, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}
.brand strong, .brand small { display: block; }
.brand small { font-size: 0.75rem; color: var(--muted); }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 700;
}
.site-nav { display: flex; gap: 1rem; align-items: center; }
.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}
.site-nav a:hover, .site-nav a.active { background: var(--primary); color: white; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: transparent;
  border: 0;
  padding: 0.3rem;
}
.menu-toggle span {
  width: 1.6rem;
  height: 2px;
  background: var(--text);
}
/* Hero and page banner styling */
.hero, .page-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  color: white;
  background-size: cover;
  background-position: center;
}
.hero::before, .page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12, 31, 18, 0.79), rgba(12, 31, 18, 0.33)); }
.hero-content { position: relative; z-index: 1; padding: 4rem 0; }
.hero-home { background-image: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1600&q=80'); }
.page-hero-about { background-image: url('https://images.unsplash.com/photo-1517840901100-8179e982acb7?auto=format&fit=crop&w=1600&q=80'); }
.page-hero-destinations { background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1600&q=80'); }
.page-hero-safety { background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1600&q=80'); }
.page-hero-gallery { background-image: url('https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1600&q=80'); }
.page-hero-contact { background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80'); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4vw, 3.7rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 0.8rem; }
h3 { font-size: 1.2rem; margin: 0 0 0.5rem; }
.hero p { font-size: 1.05rem; max-width: 680px; color: rgba(255,255,255,0.94); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.75rem 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--text); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,0.7); color: white; }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-highlights > div {
  min-width: 140px;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.hero-highlights strong { display: block; font-size: 1.2rem; }
.intro-grid, .card-grid { display: grid; gap: 1.25rem; }
.intro-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid.three-up { grid-template-columns: repeat(3, 1fr); }
.card-grid.two-up { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.info-card, .detail-card { padding: 1.5rem; }
.info-card i { font-size: 1.45rem; color: var(--primary); margin-bottom: 0.8rem; }
.package-card img, .destination-card img, .destination-page-card img, .gallery-card img { height: 220px; }
.card-body { padding: 1.25rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }
.price { font-weight: 700; color: var(--primary); }
.text-link { color: var(--primary); font-weight: 700; }
.split-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem; align-items: center; }
.check-list { padding-left: 1.2rem; }
.check-list li { margin-bottom: 0.6rem; }
.quote-card { padding: 2rem; background: linear-gradient(135deg, #fdf6df, #fffef8); }
.quote-card i { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }
.testimonial-slider { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; }
.slider-btn {
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  cursor: pointer;
}
.testimonial-card { display: none; padding: 2rem; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }
.testimonial-card.active { display: block; }
.newsletter-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}
.newsletter-form { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.newsletter-form input {
  min-width: min(320px, 100%);
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1rem;
}
.site-footer { padding: 3.5rem 0 1.5rem; background: #16261d; color: rgba(255,255,255,0.9); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.5rem; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.95rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a { display: inline-grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: rgba(255,255,255,0.12); }
.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 1.35rem;
  box-shadow: var(--shadow);
  z-index: 1100;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.gallery-card { border-radius: var(--radius); overflow: hidden; }
.gallery-card figcaption { padding: 0.9rem 1rem 1rem; font-size: 0.95rem; background: white; }
.gallery-card a { color: var(--primary); font-weight: 700; }
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.5rem; }
.contact-card, .form-card { padding: 1.5rem; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 0.7rem; margin-bottom: 1rem; }
.map-card iframe { width: 100%; min-height: 250px; border: 0; border-radius: var(--radius); }
form label { display: grid; gap: 0.4rem; margin-bottom: 0.9rem; font-weight: 700; }
form input, form select, form textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fcfbf7;
}
.form-message { min-height: 1.3rem; color: var(--primary); font-weight: 700; margin-top: 0.75rem; }
.sr-only { position: absolute; left: -9999px; }
@media (max-width: 900px) {
  .intro-grid, .card-grid.three-up, .card-grid.two-up, .gallery-grid, .footer-grid, .contact-layout, .split-layout { grid-template-columns: 1fr; }
  .newsletter-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    padding: 0.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }
  .hero-highlights { flex-direction: column; }
  .testimonial-slider { grid-template-columns: 1fr; }
  .slider-btn { display: none; }
}
