/* ============================================
   KANHA SAFARI BOOKING — STYLES.CSS
   Deep Blue + White Professional Theme
   ============================================ */

:root {
  --blue-dark:    #0B2545;
  --blue-mid:     #1A4F8A;
  --blue-light:   #2E7DD1;
  --blue-pale:    #E8F1FB;
  --gold:         #D4A017;
  --gold-light:   #F0C93A;
  --white:        #FFFFFF;
  --off-white:    #F7F9FC;
  --text-dark:    #0D1B2A;
  --text-mid:     #3D5A80;
  --text-light:   #7A9BBF;
  --border:       #D1E0F0;
  --success:      #2E8B57;
  --whatsapp:     #25D366;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(11,37,69,0.10);
  --shadow-md:    0 8px 40px rgba(11,37,69,0.16);
  --transition:   0.25s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-light { background: var(--off-white); }
.center-btn { text-align: center; margin-top: 40px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--blue-dark);
}
.logo-icon { font-size: 32px; }
.logo-main { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--blue-dark); line-height: 1.1; }
.logo-sub { display: block; font-size: 11px; color: var(--blue-light); letter-spacing: 2px; text-transform: uppercase; }
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-mid); background: var(--blue-pale); }
.nav-cta {
  background: var(--blue-mid) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  z-index: 999;
  padding: 8px 0;
  list-style: none;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 10px 16px; color: var(--text-dark); text-decoration: none; font-size: 14px; }
.dropdown-menu li a:hover { background: var(--blue-pale); color: var(--blue-mid); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--blue-dark); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, #1a6ba8 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1549366021-9f761d450615?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,37,69,0.7) 0%, rgba(11,37,69,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 760px;
  padding: 40px 24px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
}
.stat span { display: block; font-size: 28px; font-weight: 700; color: var(--gold-light); font-family: var(--font-display); }
.stat label { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue-mid);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue-mid);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--blue-mid);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--blue-mid); color: white; }
.btn-whatsapp {
  display: inline-block;
  background: var(--whatsapp);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }
.full-width { width: 100%; text-align: center; }

/* ── QUICK BOOKING BAR ── */
.quick-book {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.quick-book-inner { background: var(--blue-pale); border-radius: var(--radius); padding: 32px; }
.quick-book-inner h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blue-dark);
  margin-bottom: 20px;
  text-align: center;
}
.quick-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: end;
}
.qf-group { display: flex; flex-direction: column; gap: 6px; }
.qf-group label { font-size: 12px; font-weight: 600; color: var(--blue-mid); text-transform: uppercase; letter-spacing: 1px; }
.qf-group select, .qf-group input {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: var(--transition);
}
.qf-group select:focus, .qf-group input:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(46,125,209,0.12); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-header p { color: var(--text-mid); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-light); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 600; color: var(--blue-dark); margin-bottom: 10px; }
.feature-card p { color: var(--text-mid); font-size: 15px; line-height: 1.6; }

/* ── PARKS GRID ── */
.parks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.park-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.park-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.park-img {
  height: 220px;
  position: relative;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
}
.kanha-bg { background: linear-gradient(135deg, #0B4F6C, #1A7A8A); }
.pench-bg { background: linear-gradient(135deg, #1A5C2A, #2E8B57); }
.park-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.park-info { padding: 28px; }
.park-info h3 { font-family: var(--font-display); font-size: 24px; color: var(--blue-dark); margin-bottom: 12px; }
.park-info p { color: var(--text-mid); font-size: 15px; margin-bottom: 16px; line-height: 1.6; }
.park-highlights { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.park-highlights li { font-size: 14px; color: var(--text-dark); }
.park-price { margin-bottom: 20px; }
.price-from { font-size: 13px; color: var(--text-light); }
.price-amount { font-size: 32px; font-weight: 700; color: var(--blue-dark); font-family: var(--font-display); margin: 0 6px; }
.price-per { font-size: 13px; color: var(--text-light); }

/* ── PRICING ── */
.pricing-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; }
.tab-btn {
  padding: 10px 28px;
  border: 2px solid var(--border);
  background: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-mid);
  transition: var(--transition);
}
.tab-btn.active { background: var(--blue-mid); color: white; border-color: var(--blue-mid); }
.price-table-wrap { display: none; }
.price-table-wrap.active { display: block; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table th {
  background: var(--blue-dark);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-dark);
  background: white;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--blue-pale); }
.price-note { margin-top: 12px; font-size: 13px; color: var(--text-light); text-align: center; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  max-width: 200px;
  padding: 24px 16px;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--blue-mid);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: var(--font-display);
}
.step h3 { font-size: 17px; font-weight: 600; color: var(--blue-dark); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-mid); }
.step-arrow {
  font-size: 28px;
  color: var(--blue-light);
  margin-top: 28px;
  padding: 0 4px;
}

/* ── TESTIMONIALS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { color: var(--text-mid); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  background: var(--blue-mid);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.reviewer strong { display: block; font-size: 15px; color: var(--blue-dark); }
.reviewer span { font-size: 13px; color: var(--text-light); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: block;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
}
.blog1-bg { background: linear-gradient(135deg, #0B4F6C, #1A6B8A); }
.blog2-bg { background: linear-gradient(135deg, #1A5C2A, #0B7A4F); }
.blog3-bg { background: linear-gradient(135deg, #4A1A0B, #8A3A1A); }
.blog-content { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-mid);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.blog-content h3 { font-size: 17px; font-weight: 600; color: var(--blue-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-content p { font-size: 14px; color: var(--text-mid); margin-bottom: 14px; line-height: 1.6; }
.read-more { font-size: 14px; color: var(--blue-light); font-weight: 600; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--blue-mid); }
.faq-q span { font-size: 22px; color: var(--blue-light); font-weight: 300; min-width: 20px; text-align: center; }
.faq-a {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 0 0 20px;
  display: none;
}
.faq-a.open { display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 80px 0;
}
.cta-content { text-align: center; color: white; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand .logo-main { color: white; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 8px; }
.disclaimer { font-size: 12px; color: rgba(255,255,255,0.4) !important; }
.footer-links h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-links ul li a:hover { color: white; }
.footer-contact h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-contact p { font-size: 14px; margin-bottom: 8px; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.social-links a:hover { color: white; border-color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 9999;
  text-decoration: none;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .parks-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .topbar-inner { justify-content: center; }
  .hamburger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; display: block; }
  .dropdown-menu { position: static; display: none; box-shadow: none; border: none; padding-left: 16px; }
  .dropdown.open .dropdown-menu { display: block; }
  .quick-form { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .hero-stats { gap: 24px; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .quick-form { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .pricing-tabs { flex-wrap: wrap; }
}
