/* =============================================
   JUNGLE BUCKET LIST – Tadoba Safari
   style.css
   ============================================= */

/* ── Variables ── */
:root {
  --green-dark: #1a2e1a;
  --green-mid: #2d5a27;
  --green-light: #4a8c40;
  --gold: #c8922a;
  --gold-light: #e4b048;
  --cream: #f9f5ef;
  --white: #ffffff;
  --text-dark: #1c1c1c;
  --text-mid: #444;
  --text-light: #777;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.4);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ── Section Shared ── */
.section-tag {
  display: inline-block;
  background: rgba(200, 146, 42, 0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.section-header.light .section-title,
.section-header.light .section-desc {
  color: var(--white);
}

.section-header.light .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    padding 0.4s;
}

.navbar.scrolled {
  background: rgba(26, 46, 26, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition:
    color var(--transition),
    background var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 15, 0.82) 0%,
    rgba(26, 46, 26, 0.55) 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-color: var(--green-dark);
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 0;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-tag::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--green-dark);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(200, 146, 42, 0.3);
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.ticker-track span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 520px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-1 {
  width: 72%;
  height: 380px;
  top: 0;
  left: 0;
}

.about-img-2 {
  width: 52%;
  height: 260px;
  bottom: 0;
  right: 0;
  border: 4px solid var(--white);
}

.about-badge {
  position: absolute;
  top: 200px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 2;
}

.about-badge i {
  font-size: 1.6rem;
}

.about-content .section-title {
  color: var(--green-dark);
}

.about-text {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(200, 146, 42, 0.2);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
}

.feature-pill i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ── SAFARI ZONES ── */
.safari-zones {
  padding: 100px 0;
  background: var(--white);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.zone-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  cursor: pointer;
}

.zone-card:hover {
  background: var(--green-dark);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.zone-card:hover h3,
.zone-card:hover p {
  color: var(--white);
}

.zone-card:hover .zone-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
}

.zone-icon {
  width: 64px;
  height: 64px;
  background: rgba(45, 90, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green-mid);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.zone-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  transition: var(--transition);
}

.zone-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.zone-tag {
  display: inline-block;
  background: rgba(200, 146, 42, 0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── JUNGLE SAFARI TYPES ── */
.safari-types {
  padding: 100px 0;
  background: var(--cream);
}

.safari-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.safari-type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  position: relative;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.safari-type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.safari-type-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.safari-type-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}

.safari-type-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--green-dark);
}

.safari-type-desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.safari-type-facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.safari-type-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.safari-type-facts li i {
  color: var(--green-mid);
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

.safari-type-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.safari-type-badge.popular {
  background: rgba(200, 146, 42, 0.12);
  color: var(--gold);
}
.safari-type-badge.budget {
  background: rgba(45, 90, 39, 0.1);
  color: var(--green-mid);
}
.safari-type-badge.tatkal {
  background: rgba(220, 70, 50, 0.1);
  color: #c04030;
}

/* Safari Timings & Zones blocks */
.safari-timings-block,
.safari-zones-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.safari-zones-block {
  margin-bottom: 0;
}

.safari-info-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: linear-gradient(135deg, #f8fdf7, var(--cream));
}

.safari-info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.safari-info-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.safari-info-header p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* Table */
.safari-table-wrap {
  overflow-x: auto;
}

.safari-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.safari-table thead tr {
  background: var(--green-dark);
}

.safari-table thead th {
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 16px 24px;
  text-align: left;
}

.safari-table thead th i {
  margin-right: 6px;
  color: var(--gold-light);
}

.safari-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition);
}

.safari-table tbody tr:last-child {
  border-bottom: none;
}

.safari-table tbody tr:hover {
  background: rgba(45, 90, 39, 0.04);
}

.safari-table td {
  padding: 16px 24px;
  color: var(--text-mid);
  vertical-align: middle;
}

.date-range {
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Safari Zones List */
.safari-zones-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.safari-zone-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  transition: background var(--transition);
}

.safari-zone-item:last-child {
  border-right: none;
}

.safari-zone-item:hover {
  background: rgba(45, 90, 39, 0.04);
}

.zone-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(45, 90, 39, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-mid);
  flex-shrink: 0;
}

.zone-item-content strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.zone-item-content span {
  color: var(--text-light);
  font-size: 0.83rem;
}

@media (max-width: 900px) {
  .safari-types-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto 40px;
  }
  .safari-zones-list {
    grid-template-columns: 1fr;
  }
  .safari-zone-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
  .safari-zone-item:last-child {
    border-bottom: none;
  }
  .safari-info-header {
    padding: 20px;
  }
  .safari-table td,
  .safari-table th {
    padding: 12px 16px;
  }
}

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, #243e24 100%);
}

.services .section-title {
  color: var(--white);
}
.services .section-desc {
  color: rgba(255, 255, 255, 0.65);
}
.services .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 146, 42, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.service-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.07);
}

.service-body {
  padding: 18px 18px 20px;
}

.service-card h3 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ── WILDLIFE ── */
.wildlife {
  padding: 100px 0;
  background: var(--green-dark);
}

.wildlife-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wildlife-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.wildlife-card:hover {
  transform: scale(1.02);
}

.wildlife-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  background-color: var(--green-mid);
}

.wildlife-card:hover .wildlife-img {
  transform: scale(1.06);
}

.wildlife-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(
    to top,
    rgba(15, 30, 15, 0.95) 0%,
    transparent 100%
  );
}

.wildlife-info h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.wildlife-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

/* ── BEST TIME ── */
.best-time {
  padding: 100px 0;
  background: var(--cream);
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.season-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
}

.season-card.peak {
  background: linear-gradient(135deg, #fff8ee, #fff3d6);
  border-color: var(--gold);
}
.season-card.good {
  background: linear-gradient(135deg, #f0f8ee, #e3f4df);
  border-color: var(--green-light);
}
.season-card.closed {
  background: linear-gradient(135deg, #f0f4f8, #e8eef4);
  border-color: #a0b4c4;
}

.season-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.season-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.season-card.peak .season-icon {
  color: var(--gold);
}
.season-card.good .season-icon {
  color: var(--green-light);
}
.season-card.closed .season-icon {
  color: #6b8fa8;
}

.season-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.season-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.season-card.peak .season-label {
  color: var(--gold);
}
.season-card.good .season-label {
  color: var(--green-light);
}
.season-card.closed .season-label {
  color: #6b8fa8;
}

.season-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  color: var(--green-dark);
}

.contact-desc {
  color: var(--text-mid);
  margin-bottom: 40px;
  font-size: 0.97rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(45, 90, 39, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-mid);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* Map */
.contact-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 480px;
  height: 100%;
}

.contact-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  border-radius: var(--radius-lg);
}

/* ── FOOTER ── */
.footer {
  background: var(--green-dark);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── FLOATING ELEMENTS ── */
.whatsapp-float {
  position: fixed;
  bottom: 162px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.call-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #0ea82b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14, 168, 43, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(14, 168, 43, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-stack {
    height: 340px;
  }
  .about-img-1 {
    width: 68%;
    height: 280px;
  }
  .about-img-2 {
    width: 50%;
    height: 200px;
  }
  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wildlife-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .seasons-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 46, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px;
    gap: 4px;
  }
  .nav-links.open + .nav-cta {
    display: block;
    position: absolute;
    top: 260px;
    left: 24px;
  }
  .hamburger {
    display: flex;
  }
  .navbar {
    position: fixed;
  }
  .hero-content {
    padding-top: 140px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wildlife-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-wrap {
    min-height: 320px;
  }
  .contact-map {
    min-height: 320px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .zones-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.4rem;
  }
}

/* ── Onload Popup ── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.active {
  display: flex;
}
.popup-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: popupIn 0.35s ease;
}
@keyframes popupIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-mid);
  cursor: pointer;
  transition: color var(--transition);
}
.popup-close:hover { color: #8b3777; }
.popup-header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.popup-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.popup-header p {
  font-size: 0.875rem;
  color: var(--text-light);
}
.popup-box .form-control {
  display: block;
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 2px solid #8b3777;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: 0.85rem;
}
.popup-box .form-control:focus { border-color: var(--green-mid); }
.popup-submit {
  width: 100%;
  padding: 0.75rem;
  background: #8b3777;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.25rem;
}
.popup-submit:hover { background: #6e2a5f; }
@media (max-width: 480px) {
  .popup-box { padding: 1.5rem 1.25rem 1.25rem; }
}

/* ── Enquire Now Floating Button ── */
#enquireFloatBtn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #8b3777, #6e2a5f);
  color: #fff;
  border: none;
  border-radius: 10px 0 0 10px;
  padding: 18px 10px;
  cursor: pointer;
  z-index: 9998;
  box-shadow: -4px 4px 20px rgba(139, 55, 119, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-lr;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: padding 0.2s ease, background 0.2s ease;
}
#enquireFloatBtn:hover {
  padding: 18px 13px;
  background: linear-gradient(180deg, #a0437f, #8b3777);
}
#enquireFloatBtn i {
  font-size: 1rem;
  writing-mode: horizontal-tb;
}
@media (max-width: 600px) {
  #enquireFloatBtn {
    font-size: 0.75rem;
    padding: 14px 8px;
    gap: 7px;
  }
}
