@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #06140c;
  /* Deep Dark Jungle Green */
  --bg-light: #0b2214;
  /* Slightly lighter jungle green for cards */
  --bg-card: #0d2c1a;
  /* Rich card background */
  --text: #f3f4f6;
  /* Off-white for high contrast */
  --text-muted: #9ca3af;
  /* Cool gray for labels/secondary text */
  --accent: #d4af37;
  /* Royal Gold */
  --accent-hover: #f3c63f;
  /* Bright Gold */
  --border: rgba(212, 175, 55, 0.15);
  /* Subtle gold border */
  --border-focus: rgba(212, 175, 55, 0.4);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 15px 40px rgba(212, 175, 55, 0.1);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1100px;
}

/* Base resets & typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Helpers */
h1,
h2,
h3,
.brand-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

h4,
h5,
h6,
.subtitle,
.nav-link,
button,
label {
  font-family: 'Montserrat', sans-serif;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background: rgba(6, 20, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: var(--transition);
}

.nav {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav>div:last-child {
  flex-shrink: 0;
}

.brand-logo {
  height: 50px;
  width: auto;
  border-radius: 50%;
  border: 1px solid var(--accent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-btn {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  transition: var(--transition);
  cursor: pointer;
}

.nav-btn:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 24px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Hero Section */
.hero-banner {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-bottom: 2px solid var(--border);
}

/* Cinematic overlay for natural documentary feel */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 12, 0.4) 0%, rgba(6, 20, 12, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 24px;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
  animation: fadeInDown 1.2s ease-out;
}

.hero-title span {
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 32px;
  font-weight: 500;
  animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: #fff;
  color: var(--bg);
  transform: translateY(-3px);
}

/* Sections General Layout */
section.py-section {
  padding: 80px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--text);
  margin-bottom: 8px;
}

.section-title span {
  color: var(--accent);
}

.section-tagline {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Grid Layouts & Cards */
.card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-title {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Custom Grid: 4 Premium Cards */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Safari Zones Carousel & Grid */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  transition: var(--transition);
}

.zone-card:hover {
  border-color: var(--accent);
  transform: scale(1.02);
}

.zone-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.zone-info {
  margin-bottom: 16px;
}

.zone-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.zone-best-for {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  border-top: 1px dashed var(--border);
  padding-top: 12px;
  margin-top: 8px;
}

/* Packages Grid & Form Inputs */
.packages-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.tab {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.tab:hover,
.tab.active,
.tab[aria-selected="true"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  background: rgba(6, 20, 12, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.stepper {
  display: flex;
  align-items: center;
}

.addons-list {
  display: grid;
  gap: 12px;
}

.addon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.addon-card:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
}

.addon-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin-right: 12px;
  cursor: pointer;
}

.addon-label-wrapper {
  display: flex;
  align-items: center;
}

.addon-info {
  display: flex;
  flex-direction: column;
}

.addon-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.addon-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.addon-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

/* Sticky Booking Bottom Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 34, 20, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1.5px solid var(--accent);
  padding: 16px 24px;
  z-index: 90;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
}

.sticky-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-wrapper {
  display: flex;
  flex-direction: column;
}

.total-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.total-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-meta {
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, rgba(6, 20, 12, 0.95) 0%, rgba(6, 20, 12, 0.1) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-meta {
  opacity: 1;
}

.gallery-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.gallery-tag {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}

/* Accordion FAQs */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Home Carousel Styling */
.carousel-wrap {
  margin-bottom: 60px;
}

.carousel {
  position: relative;
  aspect-ratio: 16/7;
  min-height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(360deg, rgba(6, 20, 12, 0.9) 0%, transparent 100%);
  color: #fff;
  z-index: 2;
}

.slide-caption h3 {
  font-size: 2.2rem;
  color: var(--accent);
}

.slide-caption p {
  color: var(--text-muted);
}

.ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.ctrl.prev {
  left: 20px;
}

.ctrl.next {
  right: 20px;
}

.ctrl-btn {
  background: rgba(6, 20, 12, 0.6);
  border: 1px solid var(--border);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.ctrl-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* About Us Section specific layout */
.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-bio-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
}

/* Pricing Guides Tables */
.pricing-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: rgba(212, 175, 55, 0.08);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

/* Contact & Booking Grid */
.contact-grid,
.booking-grid {
  display: grid;
  gap: 32px;
}

.contact-grid {
  grid-template-columns: 1.2fr 1.8fr;
}

.booking-grid {
  grid-template-columns: 1.7fr 1.3fr;
}


.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 350px;
}

/* Footer styling */
footer {
  border-top: 1px solid var(--border);
  background: #030a06;
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  list-style: none;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile menu toggler styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  transition: var(--transition);
}

.mobile-menu-toggle svg line {
  transition: var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle:hover {
  color: var(--accent);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block;
    margin-right: 12px;
  }

  .navlinks {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(6, 20, 12, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1.5px solid var(--accent);
    padding: 30px 24px;
    gap: 20px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

  .navlinks.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.1);
  }

  .nav-link::after {
    display: none;
  }

  .about-bio-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  table {
    font-size: 0.78rem;
  }

  th,
  td {
    padding: 10px 6px;
    white-space: nowrap;
  }

  th {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .carousel {
    aspect-ratio: 4/3;
    min-height: unset;
  }

  .slide-caption {
    padding: 16px;
  }

  .slide-caption h3 {
    font-size: 1.6rem;
  }

  .slide-caption p {
    font-size: 0.85rem;
  }

  .ctrl-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}