:root {
  --color-primary: #0f6b4c;
  --color-primary-dark: #0a4d37;
  --color-primary-light: #12a878;
  --color-gold: #c9a24a;
  --color-gold-dark: #a5822f;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1ba955;
  --color-bg: #faf8f3;
  --color-surface: #ffffff;
  --color-text: #1f2a24;
  --color-text-muted: #5c6b63;
  --color-border: #e7e2d6;
  --shadow-sm: 0 1px 3px rgba(15, 40, 30, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 40, 30, 0.10);
  --shadow-lg: 0 16px 40px rgba(15, 40, 30, 0.16);
  --radius: 14px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0;
  color: var(--color-primary-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}
.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  box-shadow: var(--shadow-md);
}
.btn-lg {
  padding: 16px 30px;
  font-size: 1.05rem;
}
.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary);
  padding: 10px 18px;
  font-size: 0.88rem;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-primary-dark);
}
.brand-icon {
  color: var(--color-gold-dark);
  font-size: 1.4rem;
}
.brand-accent {
  color: var(--color-primary);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a {
  color: var(--color-text-muted);
  transition: color 0.15s;
}
.main-nav a:hover {
  color: var(--color-primary);
}
.nav-cta {
  background: var(--color-whatsapp);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  background: var(--color-whatsapp-dark);
}

/* ===================== Hero ===================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, #0d5a41 100%);
  color: #fff;
  padding: 90px 24px 70px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201, 162, 74, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(201, 162, 74, 0.14) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  list-style: none;
  flex-wrap: wrap;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ===================== Discount Banner ===================== */
.discount-banner {
  background: linear-gradient(100deg, #124a34 0%, #0f6b4c 100%);
  padding: 0;
}
.discount-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
}
.discount-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
}
.discount-text {
  flex: 1;
  min-width: 240px;
}
.discount-text h2 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.discount-text p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.98rem;
}

/* ===================== Sections generic ===================== */
.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 10px;
}
.section-heading p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* ===================== Filters ===================== */
.packages-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 40px;
}
.filters-bar {
  display: flex;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filter-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.filter-group select {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  min-width: 200px;
  color: var(--color-text);
}
.filter-count {
  margin-left: auto;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
#result-count {
  font-weight: 700;
  color: var(--color-primary);
}

/* ===================== Package Cards ===================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.package-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.package-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.agency-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  background: #e6f2ec;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.nights-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  background: #fbf1de;
  padding: 5px 12px;
  border-radius: 999px;
}
.package-title {
  font-size: 1.12rem;
  line-height: 1.35;
}
.package-dates {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.package-dates i {
  color: var(--color-primary);
}
.date-arrow {
  font-size: 0.75rem;
  opacity: 0.6;
}
.package-hotels {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.84rem;
  color: var(--color-text-muted);
}
.package-hotels li {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.package-hotels i {
  color: var(--color-gold-dark);
  margin-top: 2px;
}
.package-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.package-highlights li {
  font-size: 0.74rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 4px 10px;
  border-radius: 999px;
}
.package-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--color-border);
  flex-wrap: wrap;
}
.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-from {
  font-size: 0.76rem;
  color: var(--color-text-muted);
}
.price-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}
.price-per {
  font-size: 0.76rem;
  color: var(--color-text-muted);
}
.no-results {
  text-align: center;
  color: var(--color-text-muted);
  padding: 40px 0;
  font-size: 1rem;
}

/* ===================== Agencies ===================== */
.agencies-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}
.agencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.agency-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.agency-card h3 {
  font-size: 1.05rem;
}
.agency-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  flex: 1;
  margin: 0;
}

/* ===================== Disclaimer ===================== */
.disclaimer-section {
  background: #f1ede1;
  padding: 30px 24px;
}
.disclaimer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--color-text-muted);
  font-size: 0.86rem;
}
.disclaimer-inner i {
  color: var(--color-gold-dark);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===================== Footer ===================== */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 44px 24px 30px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  margin: 8px 0;
}
.footer-links a:hover {
  color: var(--color-gold);
}
.footer-copy {
  font-size: 0.76rem;
  opacity: 0.6;
  margin: 8px 0 0;
}

/* ===================== Floating WhatsApp ===================== */
#whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 60;
  animation: pulse-whatsapp 2.4s infinite;
}
#whatsapp-float:hover {
  background: var(--color-whatsapp-dark);
}
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================== Responsive ===================== */
@media (max-width: 768px) {
  .main-nav {
    gap: 12px;
    font-size: 0.85rem;
  }
  .main-nav a:not(.nav-cta) {
    display: none;
  }
  .hero-section {
    padding: 60px 20px 50px;
  }
  .hero-stats {
    gap: 28px;
  }
  .filters-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-group select {
    min-width: 0;
    width: 100%;
  }
  .filter-count {
    margin-left: 0;
  }
}
