:root {
  --green-dark: #145a32;
  --green: #1e8449;
  --green-mid: #27ae60;
  --green-light: #eafaf1;
  --gold: #f5b041;
  --white: #ffffff;
  --gray-text: #4b5b53;
  --shadow: 0 6px 20px rgba(20, 90, 50, 0.10);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #223027;
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--green); text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--green-dark); margin: 0 0 .5rem; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

/* Loading screen — water-filling logo effect */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity .5s ease, visibility .5s ease;
}
#loading-screen.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.load-logo-wrap { position: relative; width: 150px; height: 150px; }
.load-logo-img { position: absolute; left: 0; width: 100%; height: 150px; object-fit: contain; }
.load-logo-base { top: 0; filter: grayscale(1); opacity: .18; }

.load-logo-fill-wrap {
  position: absolute; left: 0; right: 0; bottom: 0; overflow: hidden;
  height: 12%;
  animation: waterLevel 2.2s ease-in-out infinite;
}
.load-logo-fill-wrap .load-logo-fill { bottom: 0; top: auto; }

.load-wave {
  position: absolute; top: -7px; left: 0; width: 200%; height: 14px;
  background-image: linear-gradient(135deg, var(--green-mid) 25%, transparent 25%),
    linear-gradient(225deg, var(--green-mid) 25%, transparent 25%);
  background-position: 0 0;
  background-size: 20px 14px;
  opacity: .55;
  animation: waveScroll 1s linear infinite;
}

@keyframes waterLevel {
  0%   { height: 12%; }
  50%  { height: 78%; }
  100% { height: 12%; }
}
@keyframes waveScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-20px); }
}

.load-text {
  font-weight: 700; color: var(--green-dark); letter-spacing: .04em;
  font-size: .95rem; opacity: .85;
}
section { padding: 64px 0; }

/* About section — guide photo + bio */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 50px; align-items: center; }
.about-photo-wrap { display: flex; justify-content: center; }
.about-photo-oval {
  width: 300px; height: 380px; object-fit: cover;
  border-radius: 50% / 42%;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  outline: 3px solid var(--green-light);
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo-oval { width: 260px; height: 330px; }
}
.section-alt { background: var(--green-light); }
.eyebrow { color: var(--green-mid); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.center { text-align: center; }
.muted { color: var(--gray-text); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { background: transparent; border-color: var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); display: inline-flex; align-items: center; gap: 8px; }
.btn-whatsapp:hover { background: #1ebe5b; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-block.btn-whatsapp { justify-content: center; }
.btn-sm { padding: 6px 16px; font-size: .85rem; }

.icon-whatsapp { width: 1.1em; height: 1.1em; flex-shrink: 0; vertical-align: -0.15em; }

/* Top info bar */
.topbar { background: var(--green-dark); color: #cfe8d8; font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; }
.topbar-contact { display: flex; align-items: center; gap: 10px; }
.topbar-contact a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.topbar-contact .icon-whatsapp { width: 14px; height: 14px; }
.topbar-divider { opacity: .5; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 24px; height: 24px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s ease;
}
.topbar-social a:hover { transform: translateY(-2px); }
.topbar-social .icon-brand { width: 16px; height: 16px; }
@media (max-width: 600px) { .topbar-inner { font-size: .72rem; } .topbar-contact span:not(.topbar-divider) { display: none; } }

/* Main navbar */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(20,90,50,.08);
  transition: box-shadow .2s ease;
  border-bottom: 3px solid var(--green-light);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar-main { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--green-dark); font-size: 1.25rem; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a:not(.btn-whatsapp-pill) {
  position: relative;
  color: #2a3b31; font-weight: 600; font-size: .92rem; padding: 4px 0;
}
.nav-links a:not(.btn-whatsapp-pill)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--green); transition: width .25s ease;
}
.nav-links a:not(.btn-whatsapp-pill):hover { color: var(--green-dark); }
.nav-links a:not(.btn-whatsapp-pill):hover::after { width: 100%; }
.btn-whatsapp-pill {
  background: #1DA851; color: #fff !important; font-weight: 700;
  padding: 9px 22px; border-radius: 30px; font-size: .88rem;
  box-shadow: 0 4px 12px rgba(29,168,81,.35);
  transition: transform .15s ease, background .15s ease;
}
.btn-whatsapp-pill:hover { transform: translateY(-2px); background: #178a42; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; color: var(--green-dark); cursor: pointer; }
.nav-close { display: none; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 320px;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 26px 26px; gap: 22px; box-shadow: -8px 0 24px rgba(0,0,0,.15);
    transform: translateX(100%); transition: transform .3s ease; z-index: 200;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-close { display: block; align-self: flex-end; background: none; border: none; font-size: 1.8rem; color: var(--green-dark); cursor: pointer; margin-bottom: 10px; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(20,90,50,.4); z-index: 150; }
  .nav-overlay.open { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}
.hero h1 { color: var(--white); font-size: 2.6rem; margin-bottom: 16px; }
.hero p { font-size: 1.15rem; opacity: .95; max-width: 640px; margin: 0 auto 28px; }
.hero .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Full-bleed photo hero (used when a gallery photo is available) */
.hero-photo {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,90,50,.55) 0%, rgba(20,90,50,.75) 100%);
  z-index: -1;
}
.hero-photo .eyebrow { color: #d9f2e2; }
.hero-photo h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.hero-photo .tagline-list { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin: 18px 0 26px; font-weight: 600; }
.hero-photo .tagline-list span { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35); padding: 6px 16px; border-radius: 30px; font-size: .9rem; }
.hero-photo p.subtitle { font-size: 1.1rem; opacity: .95; max-width: 640px; margin: 0 auto 26px; }
.hero-photo .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-info-line {
  display: flex; gap: 0; flex-wrap: wrap; justify-content: center;
  margin-top: 22px; font-size: .85rem; color: #e8f5ec;
}
.hero-info-line span { position: relative; padding: 0 14px; }
.hero-info-line span:first-child { padding-left: 0; }
.hero-info-line span:not(:last-child)::after {
  content: '\2022'; position: absolute; right: -4px; opacity: .5;
}
@media (max-width: 700px) {
  .hero-photo { min-height: 620px; }
  .hero-photo h1 { font-size: 2rem; }
}

/* Trust badges strip */
.badge-strip { background: var(--white); margin-top: -46px; position: relative; z-index: 5; padding: 0 0 30px; }
.badge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .badge-grid { grid-template-columns: repeat(2, 1fr); } }
.badge-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
  text-align: center;
  border-top: 3px solid var(--green);
}
.badge-card .badge-icon { font-size: 1.8rem; margin-bottom: 8px; }
.badge-card h4 { font-size: .98rem; margin-bottom: 6px; }
.badge-card p { font-size: .82rem; color: var(--gray-text); margin: 0; }

/* Image-forward journey cards */
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .journey-grid { grid-template-columns: 1fr; } }
.journey-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .journey-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .journey-grid-4 { grid-template-columns: 1fr; } }
.journey-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}
.journey-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .4s ease; }
.journey-card:hover img { transform: scale(1.06); }
.journey-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,90,50,0) 30%, rgba(15,60,35,.92) 100%);
  z-index: -1;
}
.journey-card .journey-body { padding: 22px; width: 100%; }
.journey-card .tag { background: rgba(255,255,255,.2); color: var(--white); border: 1px solid rgba(255,255,255,.4); }
.journey-card h3 { color: var(--white); margin: 8px 0 6px; }
.journey-card p { color: #e6f2e9; font-size: .88rem; margin: 0 0 12px; }
.journey-card .price-tag { color: #fff; font-size: .95rem; }
.journey-card .btn { padding: 8px 18px; font-size: .85rem; }

/* Quote-style testimonial cards */
.quote-card { background: var(--white); border-radius: 14px; box-shadow: var(--shadow); padding: 26px 24px; position: relative; }
.quote-card::before {
  content: '\201C';
  position: absolute; top: 8px; left: 18px;
  font-size: 3.2rem; color: var(--green-light); font-family: Georgia, serif; line-height: 1;
  z-index: 0;
}
.quote-card > * { position: relative; z-index: 1; }

/* Cards grid */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e4f2e9;
}
.card img { height: 200px; width: 100%; object-fit: cover; }
.card-body { padding: 20px; }
.card-body .tag { display: inline-block; background: var(--green-light); color: var(--green); font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; }
.card-body ul { padding-left: 18px; margin: 10px 0; color: var(--gray-text); }
.price-tag { color: var(--green-dark); font-weight: 700; margin: 10px 0; }

/* Gallery slider */
.slider { position: relative; overflow: hidden; border-radius: 16px; box-shadow: var(--shadow); }
.slider-track { display: flex; transition: transform .5s ease; }
.slider-slide { min-width: 100%; }
.slider-slide img { height: 420px; width: 100%; object-fit: cover; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(20,90,50,.6); color: #fff; border: none; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; }
.slider-nav.prev { left: 14px; }
.slider-nav.next { right: 14px; }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.slider-dots span { width: 10px; height: 10px; border-radius: 50%; background: #cfe8d8; cursor: pointer; }
.slider-dots span.active { background: var(--green); }
@media (max-width: 700px) { .slider-slide img { height: 260px; } }

/* Places / custom tour */
.places-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.place-check { position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow); border: 2px solid transparent; }
.place-check img { height: 140px; object-fit: cover; }
.place-check input { position: absolute; top: 10px; right: 10px; width: 22px; height: 22px; }
.place-check .info { padding: 10px 14px; }
.place-check.selected { border-color: var(--green); }

/* Forms */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--green-dark); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 14px; border-radius: 8px; border: 1px solid #cfe0d5; font-size: 1rem; font-family: inherit;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-card { background: var(--white); border-radius: 16px; box-shadow: var(--shadow); padding: 30px; }

/* Reviews */
.review-card { background: var(--white); border-radius: 14px; box-shadow: var(--shadow); padding: 22px; border-left: 4px solid var(--green); }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.review-name { font-weight: 700; color: var(--green-dark); margin-top: 8px; }

/* Ratings badges */
.ratings-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.rating-badge { background: var(--white); border-radius: 12px; box-shadow: var(--shadow); padding: 14px 20px; text-align: center; min-width: 150px; }
.rating-badge .score { font-size: 1.5rem; font-weight: 800; color: var(--green-dark); }
.rating-badge .platform { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-text); }
.rating-badge a { display: inline-block; margin-top: 6px; font-size: .85rem; font-weight: 700; }

/* Footer */
footer { background: var(--green-dark); color: #d9ede1; padding: 40px 0 20px; margin-top: 40px; }
footer a { color: #fff; }
footer .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
footer .container > div { text-align: center; }
footer h4 { font-size: .95rem; letter-spacing: .02em; }
footer p { margin: 0 0 8px; font-size: .9rem; }
footer .btn-whatsapp { margin: 0 auto; }
@media (max-width: 900px) { footer .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { footer .container { grid-template-columns: 1fr; } }
.footer-bottom { text-align: center; margin-top: 24px; font-size: .85rem; opacity: .8; }
.footer-credit { text-align: center; margin-top: 6px; font-size: .8rem; opacity: .7; }
.footer-credit a { text-decoration: none; font-weight: 700; }
.footer-tagline { text-align: center; font-weight: 600; letter-spacing: .03em; color: var(--gold); margin-top: 6px; font-size: .85rem; }
.footer-social { display: flex; gap: 12px; margin-top: 10px; }
.footer-social a { background: rgba(255,255,255,.12); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  background: #25D366; color: #fff; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.wa-float .icon-whatsapp { width: 30px; height: 30px; }

/* Admin */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar { width: 230px; background: var(--green-dark); color: #fff; padding: 20px 0; flex-shrink: 0; }
.admin-sidebar a { display: block; color: #d9ede1; padding: 12px 22px; font-weight: 600; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-main { flex: 1; padding: 30px; background: #f6faf7; }
.admin-card { background: #fff; border-radius: 12px; box-shadow: var(--shadow); padding: 22px; margin-bottom: 22px; }
table.admin-table { width: 100%; border-collapse: collapse; }
table.admin-table th, table.admin-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #e6f0ea; font-size: .92rem; }
table.admin-table th { color: var(--green-dark); }
.badge { padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; }
.badge-pending { background: #fdebd0; color: #b9770e; }
.badge-approved, .badge-new { background: var(--green-light); color: var(--green-dark); }
.badge-rejected, .badge-closed { background: #fadbd8; color: #922b21; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 24px; }
.stat-box { background: #fff; border-radius: 12px; box-shadow: var(--shadow); padding: 20px; text-align: center; }
.stat-box .num { font-size: 2rem; font-weight: 800; color: var(--green-dark); }
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--green-light); }
.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; }
.alert-error { background: #fadbd8; color: #922b21; }
.alert-success { background: var(--green-light); color: var(--green-dark); }
