/* ============================================
   TADOBA TIGER HOOD RESORT — GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green:        #0F3D2E;
  --green-mid:    #1a5c44;
  --green-light:  #e8f0ec;
  --gold:         #E6C200;
  --gold-dark:    #c4a500;
  --white:        #FFFFFF;
  --black:        #0B0B0B;
  --grey:         #6b7280;
  --grey-light:   #f4f4f2;
  --border:       rgba(15,61,46,0.12);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Poppins', system-ui, sans-serif;

  --max-w: 1200px;
  --section-py: 100px;
  --nav-h: 76px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--green);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--grey);
  font-size: 0.975rem;
  font-weight: 300;
  max-width: 640px;
}

/* ─── LAYOUT ─── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background: var(--grey-light);
}

.section--dark {
  background: var(--green);
}

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label--light {
  color: rgba(230,194,0,0.85);
}

/* ─── DIVIDER ─── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 28px;
}

.divider--center {
  margin: 18px auto 28px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.btn--outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn--outline-green:hover {
  background: var(--green);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--ghost:hover {
  background: var(--gold);
  color: var(--green);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar--transparent {
  background: transparent;
}

.navbar--scrolled {
  background: var(--green);
  box-shadow: 0 2px 30px rgba(0,0,0,0.18);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-main {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.navbar__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--gold);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--green);
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
}

.navbar__mobile.open {
  display: block;
}

.navbar__mobile a {
  display: block;
  padding: 12px 32px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}

.navbar__mobile a:hover {
  color: var(--gold);
  padding-left: 40px;
}

/* Hamburger active state */
.navbar__toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
}

.footer__brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__contact-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
}

.footer__bottom-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  height: 52vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
  background: var(--green);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero .section-label {
  color: var(--gold);
}

.page-hero h1 {
  color: var(--white);
  margin-top: 8px;
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15,61,46,0.1);
}

.card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card__body {
  padding: 28px;
}

.card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 22px;
}

/* ─── PRICE TAG ─── */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
}

.price-tag__amount {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 600;
}

.price-tag__unit {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ─── HIGHLIGHT ICONS ─── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.highlight-item {
  background: var(--white);
  padding: 44px 32px;
  text-align: center;
  transition: background 0.3s;
}

.highlight-item:hover {
  background: var(--green-light);
}

.highlight-item__icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: block;
}

.highlight-item__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 8px;
}

.highlight-item__text {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--green);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.75;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  color: var(--white);
  font-size: 1.5rem;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.6;
  background: none;
  border: none;
  padding: 12px;
  transition: opacity 0.2s;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }

/* ─── FORM ─── */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* ─── INFO BOX ─── */
.info-box {
  background: var(--green-light);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 28px 0;
}

.info-box p {
  font-size: 0.875rem;
  color: var(--green);
  max-width: none;
}

/* ─── TWO-COL SPLIT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split--reverse .split__img {
  order: 2;
}

.split--reverse .split__content {
  order: 1;
}

.split__img {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split__img:hover img {
  transform: scale(1.03);
}

/* ─── SAFARI PRICING ─── */
.safari-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}

.safari-price-card {
  border: 1px solid var(--border);
  padding: 36px 32px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}

.safari-price-card:hover {
  border-color: var(--gold);
  background: var(--green-light);
}

.safari-price-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

.safari-price-card__price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}

.safari-price-card__sub {
  font-size: 0.8rem;
  color: var(--grey);
}

.safari-price-card--featured {
  background: var(--green);
  border-color: var(--green);
}

.safari-price-card--featured .safari-price-card__label,
.safari-price-card--featured .safari-price-card__price,
.safari-price-card--featured .safari-price-card__sub {
  color: rgba(255,255,255,0.8);
}

.safari-price-card--featured .safari-price-card__price {
  color: var(--gold);
}

/* ─── PROCESS STEPS ─── */
.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.step {
  background: var(--white);
  padding: 40px 28px;
  counter-increment: steps;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.65;
  max-width: none;
}

/* ─── MAP ─── */
.map-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

/* ─── CONTACT GRID ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --nav-h: 64px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split--reverse .split__img,
  .split--reverse .split__content {
    order: unset;
  }

  .split__img {
    aspect-ratio: 16/9;
  }

  .safari-pricing {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 13px 24px;
    font-size: 0.78rem;
  }
}