: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: 1140px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
.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); }
.btn-whatsapp:hover { background: #1ebe5b; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-sm { padding: 6px 16px; font-size: .85rem; }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--green-dark); font-size: 1.2rem; }
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--green-dark); font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--green-mid); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--green-dark); cursor: pointer; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; width: 100%;
    background: var(--white); position: absolute; left: 0; top: 64px;
    padding: 16px 20px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
}

/* 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; }

/* 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: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
.footer-bottom { text-align: center; margin-top: 24px; font-size: .85rem; opacity: .8; }

/* 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);
  font-size: 1.7rem;
}

/* 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); }
