/* ================= GLOBAL ================= */
body {
  font-family: "Poppins", sans-serif;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #1b4332;
  color: #fff;
  font-size: 14px;
}

.top-bar a {
  color: #ffd166;
  margin-left: 12px;
  text-decoration: none;
}

.top-bar i {
  margin-right: 6px;
}

/* ================= NAVBAR ================= */
.main-navbar {
  background: #081c15;
  padding: 12px 0;
}

.navbar-brand span {
  color: #ffd166;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffd166 !important;
}

/* Dropdown */
.dropdown-menu {
  background: #1b4332;
  border-radius: 10px;
  border: none;
}

.dropdown-item {
  color: #fff;
  padding: 10px 20px;
}

.dropdown-item:hover {
  background: #ffd166;
  color: #000;
}

/* ================= CTA BUTTON ================= */
.safari-btn {
  background: #ffd166;
  color: #000;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  transition: 0.3s ease;
}

.safari-btn:hover {
  background: #fff;
  color: #1b4332;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .top-bar {
    text-align: center;
  }

  .top-right {
    margin-top: 5px;
  }

  .navbar-nav {
    background: #081c15;
    padding: 15px;
    border-radius: 10px;
  }
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  background: url("banner.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 28, 21, 0.85), rgba(27, 67, 50, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: #ffd166;
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title span {
  color: #ffd166;
}

.hero-text {
  font-size: 1.05rem;
  margin: 20px 0 30px;
  max-width: 550px;
}

/* Buttons */
.hero-btn {
  background: #ffd166;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  margin-right: 15px;
}

.hero-btn:hover {
  background: #fff;
  color: #1b4332;
}

.hero-btn-outline {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
}

/* Features */
.hero-features {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  font-size: 14px;
}

.hero-features i {
  color: #ffd166;
  margin-right: 6px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 10px;
  }
}

/* HERO */
.about-hero {
  background: linear-gradient(135deg, #1b4332, #081c15);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.about-hero h1 span {
  color: #ffd166;
}

/* CONTENT */
.about-box {
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  margin-top: -70px;
}

.about-box h3 {
  color: #1b4332;
  font-weight: 700;
}

.about-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* ICON CARDS */
.about-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
}

.about-card i {
  font-size: 36px;
  color: #1b4332;
  margin-bottom: 15px;
}

.about-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.about-card:hover {
  background: #1b4332;
  color: #fff;
  transform: translateY(-8px);
}

.about-card:hover i {
  color: #ffd166;
}

/* TRUST STRIP */
.trust-strip span {
  display: inline-block;
  background: #e9f5ec;
  color: #1b4332;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin: 6px;
}

/* FOOTER */
.about-footer {
  background: #081c15;
  color: #ccc;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .about-box {
    padding: 25px;
  }
}
/* ================= SAFARI PACKAGES ================= */
.safari-packages {
  background: #f8f9fa;
}

.section-badge {
  background: #ffd166;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b4332;
}

.section-subtitle {
  color: #555;
  max-width: 650px;
  margin: 0 auto;
}

.package-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-content {
  padding: 25px;
}

.package-content h4 {
  font-weight: 700;
  color: #1b4332;
}

.package-content p {
  font-size: 14px;
  color: #666;
}

.package-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.package-content ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

.package-content ul i {
  color: #40916c;
  margin-right: 6px;
}

/* Price + Button */
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #081c15;
}

.book-btn {
  background: #1b4332;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
}

.book-btn:hover {
  background: #ffd166;
  color: #000;
}

/* Featured Card */
.featured {
  border: 2px solid #ffd166;
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffd166;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }
}

/* ================= SAFARI ZONES ================= */
.safari-zones {
  background: #ffffff;
}

.zone-card {
  background: #f8f9fa;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid #e5e5e5;
}

.zone-card:hover {
  background: #1b4332;
  color: #fff;
  transform: translateY(-10px);
}

.zone-icon {
  width: 70px;
  height: 70px;
  background: #ffd166;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #000;
}

.zone-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.zone-card p {
  font-size: 14px;
  color: #555;
}

.zone-card:hover p {
  color: #eaeaea;
}

.zone-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.zone-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

.zone-card ul i {
  color: #40916c;
  margin-right: 6px;
}

.zone-card:hover ul i {
  color: #ffd166;
}

/* Info Note */
.zone-note {
  font-size: 14px;
  color: #555;
}

.zone-note i {
  color: #1b4332;
  margin-right: 6px;
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
  background: #f8f9fa;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 32px;
  color: #ffd166;
}

/* ================= LIGHTBOX ================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }
}

/* ================= FAQ SECTION ================= */
.faq-section {
  background: #ffffff;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: #f8f9fa;
  font-weight: 600;
  color: #1b4332;
  padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
  background: #1b4332;
  color: #fff;
}

.accordion-button::after {
  filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

.accordion-body {
  background: #ffffff;
  font-size: 15px;
  color: #555;
  padding: 20px;
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
  background: linear-gradient(135deg, #081c15, #1b4332);
  color: #fff;
}

.testimonial-card {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  color: #000;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.testimonial-user h5 {
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 2px;
}

.testimonial-user span {
  font-size: 14px;
  color: #666;
}

.stars {
  color: #ffd166;
  font-size: 20px;
  margin-top: 10px;
}

/* Carousel arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 25px;
  }

  .testimonial-text {
    font-size: 15px;
  }
}

/* ================= CONTACT + WHATSAPP CTA ================= */
.contact-cta-section {
  background: linear-gradient(135deg, #1b4332, #081c15);
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-info i {
  color: #ffd166;
  margin-right: 8px;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 16px;
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  color: #fff;
}

/* Contact Form */
.contact-form-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.contact-form-box h4 {
  font-weight: 700;
  color: #1b4332;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
}

/* Submit Button */
.submit-btn {
  background: #ffd166;
  color: #000;
  font-weight: 600;
  padding: 12px;
  border-radius: 30px;
}

.submit-btn:hover {
  background: #1b4332;
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .contact-cta-section {
    text-align: center;
  }

  .whatsapp-btn {
    display: inline-block;
  }
}

/* ================= FOOTER ================= */
.footer-section {
  background: #081c15;
  color: #ffffff;
  padding: 60px 0 0;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffd166;
}

.footer-text {
  font-size: 14px;
  color: #dcdcdc;
  line-height: 1.7;
}

/* Trust Badges */
.trust-badges span {
  display: inline-block;
  background: #1b4332;
  color: #ffd166;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 6px 6px 0 0;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dcdcdc;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffd166;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact i {
  color: #ffd166;
  margin-right: 8px;
}

/* Social Icons */
.footer-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: #1b4332;
  color: #ffd166;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ffd166;
  color: #081c15;
}

/* COPYRIGHT */
.footer-bottom {
  background: #06150f;
  margin-top: 40px;
  padding: 15px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #ccc;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-social {
    margin-top: 15px;
  }
}

/* ================= FLOATING BUTTONS ================= */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.float-btn i {
  font-size: 18px;
}

/* Colors */
.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.call {
  background: #1b4332;
}

.float-btn.email {
  background: #ffd166;
  color: #000;
}

/* Hover */
.float-btn:hover {
  transform: translateX(-5px);
  opacity: 0.95;
}

/* ================= SCROLL TO TOP ================= */
#scrollTopBtn {
  position: fixed;
  right: 25px;
  bottom: 40px;
  width: 48px;
  height: 48px;
  background: #1b4332;
  color: #ffd166;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

#scrollTopBtn:hover {
  background: #ffd166;
  color: #081c15;
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {
  .float-btn span {
    display: none;
  }

  .float-btn {
    padding: 12px;
    border-radius: 50%;
    justify-content: center;
  }

  .floating-buttons {
    right: 15px;
    bottom: 110px;
  }
}
