/* ═══════════════════════════════════════════
   HOSTELLER.IN — Global Stylesheet
   Color Philosophy: Navy + Amber + Sky Blue
═══════════════════════════════════════════ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0D1B2A;
  --navy2:   #162032;
  --amber:   #F4A261;
  --amber2:  #E07B39;
  --sky:     #48CAE4;
  --sky2:    #0096C7;
  --light:   #F8F9FA;
  --mist:    #E9EEF4;
  --slate:   #4A5568;
  --slate2:  #718096;
  --white:   #ffffff;
  --text:    #1A202C;

  --ff-head: 'Space Grotesk', 'Arial Black', sans-serif;
  --ff-body: 'Nunito', Arial, sans-serif;

  --radius:  8px;
  --shadow:  0 4px 24px rgba(13,27,42,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,42,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title .accent { color: var(--amber); }
.section-title .sky { color: var(--sky2); }

.section-sub {
  font-size: 16px;
  color: var(--slate);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: .03em;
  transition: all .22s;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover { background: var(--amber2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,162,97,.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-sky {
  background: var(--sky);
  color: var(--navy);
}
.btn-sky:hover { background: var(--sky2); color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy2); }

/* ══════════════════════════════
   HEADER / NAV
══════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }

.logo-name {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}

.logo-tag {
  font-size: .55rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 2px; }

.nav-item { position: relative; }

.nav-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .55rem .75rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  text-decoration: none;
}
.nav-btn:hover { color: var(--amber); background: rgba(244,162,97,.1); }
.nav-btn.active { color: var(--amber); }

.nav-arrow { font-size: 9px; opacity: .5; }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--navy2);
  border: 1px solid rgba(72,202,228,.15);
  border-radius: 8px;
  min-width: 210px;
  padding: 6px 0;
  display: none;
  z-index: 2000;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.nav-item:hover .dropdown { display: block; }

.dd-item {
  display: block;
  color: rgba(255,255,255,.7);
  font-family: var(--ff-body);
  font-size: .85rem;
  padding: .6rem 1.1rem;
  transition: all .15s;
  text-decoration: none;
}
.dd-item:hover { color: var(--amber); background: rgba(244,162,97,.08); padding-left: 1.5rem; }
.dd-sep { height: 1px; background: rgba(255,255,255,.07); margin: 4px 0; }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.social-icons { display: flex; gap: 7px; }

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  transition: transform .2s;
  text-decoration: none;
  flex-shrink: 0;
}
.si-fb { background: #1877f2; color: #fff; }
.si-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.si-wa { background: #25d366; color: #fff; }
.social-icon:hover { transform: scale(1.15); }

.call-btn {
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: .45rem 1rem;
  border-radius: 6px;
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.call-btn:hover { background: var(--amber2); }

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

@media (max-width: 1020px) { .call-btn { display: none; } }
@media (max-width: 800px) { 
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .social-icons { display: none; }
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 24px;
}
.mobile-nav a {
  color: rgba(255,255,255,.8);
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: block;
}
.mobile-nav a:hover { color: var(--amber); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(13,27,42,.9) 0%, rgba(13,27,42,.7) 55%, rgba(0,150,199,.25) 100%),
              url('img/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(72,202,228,.15);
  border: 1px solid rgba(72,202,228,.35);
  color: var(--sky);
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}

.hero h1 .accent { color: var(--amber); }
.hero h1 .sky-txt { color: var(--sky); }

.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Floating destination tags */
.hero-tags {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.dest-tag {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 4s ease-in-out infinite;
}

.dest-tag:nth-child(2) { animation-delay: .8s; }
.dest-tag:nth-child(3) { animation-delay: 1.6s; }
.dest-tag:nth-child(4) { animation-delay: 2.4s; }
.dest-tag:nth-child(5) { animation-delay: 3.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 860px) { .hero-tags { display: none; } }

/* ══════════════════════════════
   USP STRIP
══════════════════════════════ */
.usp-strip {
  background: var(--amber);
  padding: 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.usp-item {
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.25);
}
.usp-item:last-child { border-right: none; }

.usp-item .icon { font-size: 26px; margin-bottom: 6px; }

.usp-item h5 {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.usp-item p {
  font-size: 11px;
  color: rgba(255,255,255,.75);
}

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

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { background: var(--light); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}

.about-floater {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 130px;
}

.about-floater .num {
  font-family: var(--ff-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.about-floater .lbl {
  font-size: 11px;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
  margin-top: 4px;
}

.about-text p {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.highlight-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border-radius: 10px;
  border-left: 3px solid var(--amber);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.highlight-chip .icon { font-size: 20px; flex-shrink: 0; }
.highlight-chip h5 {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.highlight-chip p {
  font-size: 11px;
  color: var(--slate2);
  line-height: 1.4;
  margin: 0;
}

/* ══════════════════════════════
   ROOMS / STAYS
══════════════════════════════ */
.rooms { background: var(--white); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.room-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s, box-shadow .28s;
  background: var(--white);
  border: 1px solid var(--mist);
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.room-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--sky2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.room-body { padding: 22px; }

.room-chip {
  display: inline-block;
  background: var(--mist);
  color: var(--navy);
  font-family: var(--ff-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.room-card h3 {
  font-family: var(--ff-head);
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.room-card p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 14px;
}

.room-amenities {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.amenity-tag {
  font-size: 11px;
  color: var(--slate2);
  background: var(--light);
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid var(--mist);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--mist);
}

.room-price {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--sky2);
}
.room-price span {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--slate2);
  font-weight: 400;
}

/* ══════════════════════════════
   ACTIVITIES
══════════════════════════════ */
.activities { background: var(--navy); }
.activities .section-title { color: var(--white); }
.activities .section-sub { color: rgba(255,255,255,.6); }
.activities .eyebrow { color: var(--sky); }

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.activity-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  transition: background .25s, border-color .25s, transform .25s;
  cursor: pointer;
}
.activity-card:hover {
  background: rgba(244,162,97,.1);
  border-color: var(--amber);
  transform: translateY(-6px);
}

.act-icon { font-size: 40px; margin-bottom: 14px; }

.activity-card h4 {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.activity-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,.58);
  line-height: 1.55;
  margin-bottom: 14px;
}

.act-price {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
}
.act-price span {
  font-family: var(--ff-body);
  font-size: 11px;
  color: rgba(255,255,255,.4);
  font-weight: 400;
}

/* ══════════════════════════════
   PACKAGES
══════════════════════════════ */
.packages { background: var(--light); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.package-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--mist);
  transition: transform .25s, box-shadow .25s;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--amber);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 2;
}

.pkg-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--sky2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.pkg-body { padding: 22px; }

.package-card h3 {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.pkg-includes {
  margin-bottom: 16px;
}
.pkg-includes li {
  font-size: 13px;
  color: var(--slate);
  padding: 5px 0;
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-includes li::before {
  content: '✓';
  color: var(--sky2);
  font-weight: 700;
  flex-shrink: 0;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--mist);
}

.pkg-price {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--sky2);
}
.pkg-price span {
  font-size: 12px;
  color: var(--slate2);
  font-weight: 400;
  font-family: var(--ff-body);
}

/* ══════════════════════════════
   SAFARI / WILDLIFE
══════════════════════════════ */
.safari { background: var(--white); }

.safari-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.safari-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a3a1a, #2d6a4f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

.safari-zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 28px;
}

.zone-card {
  padding: 14px 16px;
  border: 1.5px solid var(--mist);
  border-radius: 10px;
  transition: border-color .2s, background .2s;
  cursor: pointer;
}
.zone-card:hover, .zone-card.active {
  border-color: var(--amber);
  background: #fff8f2;
}

.zone-card h5 {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.zone-card p {
  font-size: 11px;
  color: var(--slate2);
  line-height: 1.4;
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials { background: var(--light); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--mist);
}

.testi-stars {
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testi-loc {
  font-size: 12px;
  color: var(--slate2);
}

/* ══════════════════════════════
   BOOKING FORM
══════════════════════════════ */
.booking {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0a2744 100%);
  padding: 80px 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.booking-info h2 {
  font-family: var(--ff-head);
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.22;
  font-weight: 700;
}

.booking-info h2 .accent { color: var(--amber); }

.booking-info > p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.booking-contacts { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 14px;
}

.contact-icon {
  font-size: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item a { color: var(--amber); font-weight: 600; }

.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.form-card h3 {
  font-family: var(--ff-head);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 26px;
  font-weight: 700;
}

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

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

.form-group label {
  display: block;
  font-family: var(--ff-head);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.form-group label .req { color: #E53E3E; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--mist);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--light);
  transition: border-color .2s, background .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky2);
  background: var(--white);
}

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

.form-error {
  background: #FFF5F5;
  border: 1px solid #FC8181;
  color: #C53030;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.form-success {
  background: #E6FFFA;
  border: 1px solid #81E6D9;
  color: #234E52;
  font-size: 14px;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

/* ══════════════════════════════
   LOCATION / HOW TO REACH
══════════════════════════════ */
.location { background: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.location-map {
  border-radius: 14px;
  overflow: hidden;
  height: 400px;
  border: 2px solid var(--mist);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-details > p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 26px;
}

.reach-list { display: flex; flex-direction: column; gap: 14px; }

.reach-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--light);
  border-radius: 10px;
  border-left: 3px solid var(--amber);
}

.reach-card .icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }

.reach-card h5 {
  font-family: var(--ff-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.reach-card p {
  font-size: 12.5px;
  color: var(--slate2);
  line-height: 1.55;
  margin: 0;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,.55);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  transition: transform .2s;
  text-decoration: none;
}
.footer-social a:hover { transform: scale(1.15); }

.footer-contact {
  font-size: .88rem;
  line-height: 1.9;
}
.footer-contact a { color: var(--amber); text-decoration: none; }

.footer-col-title {
  font-family: var(--ff-head);
  font-size: .73rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-links li { margin-bottom: 8px; }
.footer-links li a {
  color: rgba(255,255,255,.52);
  font-size: .88rem;
  text-decoration: none;
  transition: color .2s;
  display: block;
}
.footer-links li a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1160px;
  margin: 0 auto;
  font-size: .8rem;
}

.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--amber); }

/* ══════════════════════════════
   INNER PAGE HERO (shared)
══════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0a2744 100%);
  padding: 72px 0 60px;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.page-hero h1 .accent { color: var(--amber); }

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--amber); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ══════════════════════════════
   RESPONSIVE (shared)
══════════════════════════════ */
@media (max-width: 900px) {
  .about-grid, .safari-grid, .booking-grid, .location-grid { grid-template-columns: 1fr; gap: 36px; }
  .rooms-grid, .packages-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img { height: 320px; }
  .safari-img { height: 280px; }
  .about-floater { bottom: -16px; left: -12px; }
}

@media (max-width: 600px) {
  .rooms-grid, .packages-grid, .testi-grid, .activities-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .section-pad { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .safari-zones { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   UTILITY
══════════════════════════════ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

.info-block {
  background: var(--light);
  border-radius: 14px;
  padding: 32px 36px;
  margin-top: 20px;
}

.info-block h3 {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.info-block p, .info-block li {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.8;
}

.info-block ul { margin-left: 20px; list-style: disc; margin-top: 10px; }
.info-block ul li { margin-bottom: 6px; }

/* CTA Band */
.cta-band {
  background: var(--amber);
  padding: 52px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--ff-head);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-outline {
  border-color: rgba(255,255,255,.7);
}
