/*
Theme Name: Dream Africa Safaris
Theme URI: https://dreamafricasafaris.com
Author: Dream Africa Safaris Team
Description: Custom Safari & Travel WordPress Theme converted from React
Version: 1.0.0
*/


/* ==========================================
   SECTION: index.css
========================================== */
/* ==========================================
   GLOBAL STYLES & RESET
========================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  color: #333;
  overflow-x: hidden;
}

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

img {
  width: 30%;
  height: auto;
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: #FFD54F;
  color: #222;
}

/* ==========================================
   COMMON CONTAINER
========================================== */

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ==========================================
   CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f3f3f3;
}

::-webkit-scrollbar-thumb {
  background: #0d6b3d;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0b5a33;
}


/* ==========================================
   SECTION: Nav.css
========================================== */
/* ==========================================
   NAVBAR COMPONENT STYLES
========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background: rgba(8, 40, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: all 0.35s ease;
}

.navbar:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.nav-container {
  max-width: 1400px;
  height: 100%;
  margin: auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================
   LOGO
========================================== */

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

.logo-area:hover {
  opacity: 0.95;
}

.logo-image {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  transition: 0.4s;
  animation: floatLogo 5s ease-in-out infinite;
}

.logo-area:hover .logo-image {
  transform: rotate(-5deg) scale(1.08);
}

@keyframes floatLogo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

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

.logo-text h2 {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-text p {
  margin-top: 4px;
  color: #FFD54F;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================
   NAV LINKS
========================================== */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 38px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  transition: transform 0.3s;
}

.nav-links li:hover {
  transform: translateY(-2px);
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.35s;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
}

.nav-links a:hover {
  color: #FFD54F;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #FFD54F;
  transition: 0.35s;
  transform: translateX(-50%);
}

.nav-links a:hover::before {
  width: 100%;
}

/* ACTIVE ROUTE */

.nav-links a.active {
  color: #FFD54F;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 20px;
  background: #FFD54F;
}

/* ==========================================
   RIGHT SIDE
========================================== */

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ==========================================
   BOOK BUTTON
========================================== */

.book-btn {
  border: none;
  cursor: pointer;
  background: #FFD54F;
  color: #222;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.35s;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
  position: relative;
  overflow: hidden;
}

.book-btn:hover {
  transform: translateY(-3px);
  background: #FFC107;
  box-shadow: 0 15px 28px rgba(255, 193, 7, 0.45);
}

.book-btn::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -90px;
  width: 40px;
  height: 180px;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(25deg);
  transition: 0.7s;
}

.book-btn:hover::after {
  left: 180%;
}

/* ==========================================
   MOBILE MENU BUTTON
========================================== */

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 30px;
  transition: 0.35s;
}

.menu-btn:hover {
  color: #FFD54F;
}

/* ==========================================
   SOCIAL ICONS
========================================== */

.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.nav-social a:hover {
  background: #FFD54F;
  color: #222;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(255, 213, 79, 0.35);
}

/* ==========================================
   DROPDOWN MENU
========================================== */

.dropdown {
  position: relative;
}

.dropdown-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: 0.35s;
}

.dropdown-title:hover {
  color: #FFD54F;
}

.dropdown-title i, .dropdown-title svg {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-title i, .dropdown-title svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 60px;
  left: -20px;
  width: 260px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  padding: 10px 0;
  z-index: 999;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 14px 24px;
  color: #333;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: #f4f4f4;
  color: #0c6b3f;
  padding-left: 32px;
}

/* ==========================================
   ANIMATIONS & OVERLAY
========================================== */

.fade-down {
  animation: fadeDown 0.6s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   NAVBAR RESPONSIVE MEDIA QUERIES
========================================== */

@media screen and (max-width: 992px) {
  .nav-container {
    padding: 0 20px;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }

  .nav-social {
    display: none;
  }

  .book-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 85px;
    right: -100%;
    width: 320px;
    height: calc(100vh - 85px);
    background: rgba(10, 40, 20, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 30px 0;
    transition: all 0.45s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    margin: 0;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 18px 30px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.06);
    padding-left: 40px;
  }

  .nav-links a.active::after {
    display: none;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-title {
    width: 100%;
    padding: 18px 30px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    transition: max-height 0.35s ease;
  }

  .dropdown:hover .dropdown-menu {
    max-height: 500px;
  }

  .dropdown-menu li a {
    color: #ffffff;
    padding-left: 50px;
    background: transparent;
  }

  .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFD54F;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    height: 80px;
  }

  .nav-links {
    top: 80px;
    height: calc(100vh - 80px);
    width: 100%;
  }

  .logo-image {
    width: 55px;
    height: 55px;
  }

  .logo-text h2 {
    font-size: 1.15rem;
  }

  .logo-text p {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 576px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo-text h2 {
    font-size: 1rem;
  }

  .logo-text p {
    display: none;
  }

  .logo-image {
    width: 48px;
    height: 48px;
  }

  .menu-btn {
    font-size: 26px;
  }

  .nav-links li a {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1600px) {
  .nav-container {
    max-width: 1600px;
  }
}


/* ==========================================
   SECTION: Home.css
========================================== */
/* ==================================================
   HOME PAGE COMPONENT STYLES
================================================== */

.home-page {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
  padding-top: 85px;
}

/* ==================================================
   HERO SLIDER
================================================== */

.hero-slider {
  width: 100%;
  height: calc(100vh - 85px);
}

.hero-slide {
  width: 100%;
  height: calc(100vh - 85px);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-content {
  width: 90%;
  max-width: 1200px;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-button {
  background: #f9b400;
  color: #222;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s;
}

.hero-button:hover {
  background: #ffc928;
  transform: translateY(-5px);
}

/* ==================================================
   SWIPER CUSTOM STYLES
================================================== */

.swiper-button-prev,
.swiper-button-next {
  color: white !important;
}

.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #f9b400 !important;
}

/* ==================================================
   ABOUT SECTION
================================================== */

.about-section {
  padding: 100px 0;
}

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

.about-grid img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-grid h2 {
  color: #0d5b35;
  font-size: 2.6rem;
  margin-bottom: 25px;
}

.about-grid p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ==================================================
   WHY CHOOSE US / FEATURES
================================================== */

.features-section {
  background: #f5faf7;
  padding: 100px 0;
}

.features-section h2 {
  text-align: center;
  color: #0d5b35;
  font-size: 2.8rem;
  margin-bottom: 60px;
}

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

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: #0d5b35;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #222;
}

.feature-card p {
  color: #666;
  line-height: 1.8;
}

/* ==================================================
   DESTINATIONS
================================================== */

.destination-section {
  padding: 100px 0;
}

.destination-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #0d5b35;
  margin-bottom: 60px;
}

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

.destination-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.destination-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

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

.destination-info {
  padding: 25px;
}

.destination-info h3 {
  color: #0d5b35;
  margin-bottom: 12px;
}

.destination-info p {
  color: #666;
  line-height: 1.8;
}

/* ==================================================
   CALL TO ACTION (CTA)
================================================== */

.home-cta {
  background: linear-gradient(rgba(8, 40, 20, 0.88), rgba(8, 40, 20, 0.88)),
    url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 120px 20px;
}

.home-cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.home-cta p {
  max-width: 750px;
  margin: auto;
  line-height: 1.9;
  font-size: 1.15rem;
  margin-bottom: 35px;
}

.cta-button {
  border: none;
  background: #f9b400;
  color: #222;
  padding: 18px 45px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.35s;
}

.cta-button:hover {
  background: #ffd54f;
  transform: translateY(-5px);
}

/* ==================================================
   HOME RESPONSIVE MEDIA QUERIES
================================================== */

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }

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

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

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

@media (max-width: 768px) {
  .home-page {
    padding-top: 80px;
  }

  .hero-slider,
  .hero-slide {
    height: calc(100vh - 80px);
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

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

  .about-grid h2,
  .features-section h2,
  .destination-section h2,
  .home-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-button,
  .cta-button {
    width: 100%;
  }
}


/* ==========================================
   SECTION: Packages.css
========================================== */
/* =========================================================
   PACKAGES PAGE COMPONENT STYLES
========================================================= */

.packages-page {
  width: 100%;
  min-height: 100vh;
  background: #f8f9fa;
  overflow-x: hidden;
  padding-top: 85px;
}

/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
  width: 100%;
  height: 380px;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-overlay {
  width: 90%;
  max-width: 900px;
  text-align: center;
  color: white;
}

.page-content h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}

/* =========================================================
   SEARCH & FILTER BAR
========================================================= */

.package-search {
  padding: 40px 0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.search-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 20px;
  align-items: center;
}

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f4f4f4;
  padding: 16px 24px;
  border-radius: 50px;
  color: #666;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 1rem;
  color: #333;
}

.package-search select {
  padding: 16px 28px;
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
}

.package-search select:focus,
.package-search select:hover {
  border-color: #0d5b35;
}

/* =========================================================
   PACKAGES GRID
========================================================= */

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

.package-grid {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.package-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

.package-card:hover img {
  transform: scale(1.06);
}

.package-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-content h2 {
  font-size: 1.5rem;
  color: #0d5b35;
  margin-bottom: 12px;
}

.package-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.package-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 22px;
  font-size: 0.9rem;
  color: #555;
}

.package-details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-details i, .package-details svg {
  color: #f9b400;
}

/* =========================================================
   WHY BOOK WITH US
========================================================= */

.why-book {
  background: #f5faf7;
  padding: 90px 0;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  color: #0d5b35;
  margin-bottom: 60px;
}

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

.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.why-icon {
  font-size: 2.5rem;
  color: #0d5b35;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 12px;
}

.why-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================================
   CTA SECTION
========================================================= */

.cta {
  background: linear-gradient(rgba(8, 40, 20, 0.9), rgba(8, 40, 20, 0.9)),
    url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

/* =========================================================
   PACKAGES RESPONSIVE MEDIA QUERIES
========================================================= */

@media (max-width: 992px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

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

  .page-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .packages-page {
    padding-top: 80px;
  }

  .page-hero {
    height: 300px;
  }

  .page-content h1 {
    font-size: 2.3rem;
  }

  .search-container {
    flex-direction: column;
  }

  .package-search select {
    width: 100%;
  }

  .package-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   SECTION: Gallery.css
========================================== */
/* =========================================================
   GALLERY PAGE COMPONENT STYLES
========================================================= */

.gallery-page {
  width: 100%;
  min-height: 100vh;
  background: #f8f9fa;
  overflow-x: hidden;
  padding-top: 85px;
}

/* =========================================================
   HERO SECTION
========================================================= */

.gallery-hero {
  width: 100%;
  min-height: 380px;
  background: linear-gradient(rgba(8, 40, 20, 0.85), rgba(8, 40, 20, 0.85)),
    url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.hero-overlay {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.gallery-icon {
  font-size: 3.5rem;
  color: #f9b400;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 3.8rem;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.15rem;
  color: #e0e0e0;
  line-height: 1.8;
  max-width: 750px;
  margin: auto;
}

/* =========================================================
   CATEGORY FILTER BUTTONS SECTION
========================================================= */

.gallery-filter {
  padding: 40px 20px 30px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1100px;
  margin: auto;
}

.filter-btn {
  padding: 12px 26px;
  border: 2px solid #0d5b35;
  border-radius: 50px;
  background: #ffffff;
  color: #0d5b35;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  outline: none;
}

.filter-btn:hover {
  background: #0d5b35;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 91, 53, 0.2);
}

.filter-btn.active-filter {
  background: #0d5b35;
  color: #ffffff;
  border-color: #0d5b35;
  box-shadow: 0 6px 18px rgba(13, 91, 53, 0.3);
  position: relative;
}

.filter-btn.active-filter::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 4px;
  background: #f9b400;
  border-radius: 10px;
}

/* =========================================================
   GALLERY GRID & IMAGE CARDS
========================================================= */

.gallery-section {
  padding: 60px 0 90px;
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

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

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.gallery-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(8, 40, 20, 0.1),
    rgba(8, 40, 20, 0.85)
  );
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-badge {
  background: #f9b400;
  color: #222;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-info h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.gallery-info p {
  color: #e0e0e0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.gallery-info p i, .gallery-info p svg {
  color: #f9b400;
}

.gallery-view-btn {
  background: #ffffff;
  color: #0d5b35;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.gallery-view-btn:hover {
  background: #f9b400;
  color: #222;
}

/* =========================================================
   LIGHTBOX MODAL STYLES
========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: 0.3s;
}

.lightbox-close:hover {
  background: #f9b400;
  color: #222;
}

.lightbox-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.lightbox-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #0d5b35;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 5;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.lightbox-nav:hover {
  background: #f9b400;
  color: #222;
}

.lightbox-details {
  padding: 25px 30px;
  background: #ffffff;
}

.lightbox-details h2 {
  color: #0d5b35;
  font-size: 1.6rem;
  margin: 10px 0 6px;
}

.lightbox-details p {
  color: #666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

.lightbox-details p i, .lightbox-details p svg {
  color: #f9b400;
}

.image-counter {
  font-size: 0.9rem;
  color: #888;
  font-weight: 600;
  margin-bottom: 15px;
}

/* =========================================================
   GALLERY CTA SECTION
========================================================= */

.gallery-cta {
  background: linear-gradient(rgba(8, 40, 20, 0.9), rgba(8, 40, 20, 0.9)),
    url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 90px 20px;
}

.gallery-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.gallery-cta p {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto 35px;
  line-height: 1.8;
  color: #e0e0e0;
}

.primary-btn {
  background: #f9b400;
  color: #222;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s;
}

.primary-btn:hover {
  background: #ffc928;
  transform: translateY(-4px);
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES
========================================================= */

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}

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

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}


/* ==========================================
   SECTION: Blog.css
========================================== */
/* =========================================================
   BLOG COMPONENT STYLES
========================================================= */

.blog-page {
  width: 100%;
  min-height: 100vh;
  background: #f8f9fa;
  padding-top: 85px;
}

.blog-hero {
  width: 100%;
  min-height: 400px;
  background: linear-gradient(rgba(8, 40, 20, 0.88), rgba(8, 40, 20, 0.88)),
    url("https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 60px 20px;
}

.blog-hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.blog-hero p {
  font-size: 1.15rem;
  color: #ffd54f;
  max-width: 750px;
  margin: auto auto 25px;
  line-height: 1.7;
}

.blog-search-bar {
  max-width: 550px;
  margin: auto;
}

.blog-search-bar input {
  width: 100%;
  padding: 16px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 213, 79, 0.5);
  background: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  outline: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: #222;
}

.blog-search-bar input:focus {
  border-color: #ffd54f;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.blog-section {
  padding: 70px 0 90px;
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.08);
}

.blog-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f9b400;
  color: #222;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 14px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i, .blog-meta svg {
  color: #f9b400;
}

.blog-title {
  font-size: 1.3rem;
  color: #0d5b35;
  margin-bottom: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.blog-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}

.blog-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.blog-author {
  font-size: 0.85rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.blog-author i, .blog-author svg {
  color: #0d5b35;
}

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d5b35;
  font-weight: 700;
  font-size: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.blog-read-btn:hover {
  color: #f9b400;
}

/* =========================================================
   ARTICLE READER MODAL
========================================================= */

.blog-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.blog-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 850px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  padding: 40px;
  animation: slideUpModal 0.35s ease;
}

@keyframes slideUpModal {
  from { transform: translateY(30px); }
  to { transform: translateY(0); }
}

.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0f4f1;
  color: #0d5b35;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.blog-modal-close:hover {
  background: #0d5b35;
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-category {
  display: inline-block;
  background: #0d5b35;
  color: #ffd54f;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.modal-header h1 {
  font-size: 2.2rem;
  color: #0d5b35;
  line-height: 1.3;
  margin-bottom: 15px;
}

.modal-meta {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 25px;
}

.modal-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-meta i, .modal-meta svg {
  color: #f9b400;
}

.modal-cover-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 30px;
}

.modal-body p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 20px;
}

.modal-takeaway-box {
  background: #f5faf7;
  border-left: 5px solid #0d5b35;
  padding: 22px 25px;
  border-radius: 12px;
  margin: 30px 0;
}

.modal-takeaway-box h4 {
  color: #0d5b35;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.modal-takeaway-box p {
  margin: 0;
  font-weight: 600;
  color: #222;
}

.modal-cta-box {
  background: linear-gradient(135deg, #082814 0%, #0d5b35 100%);
  color: #ffffff;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  margin-top: 35px;
}

.modal-cta-box h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.modal-cta-box p {
  color: #ffd54f;
  margin-bottom: 22px;
  font-size: 1rem;
}

.modal-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f9b400;
  color: #222;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

.modal-cta-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(249, 180, 0, 0.4);
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero h1 {
    font-size: 2.4rem;
  }
  .modal-header h1 {
    font-size: 1.6rem;
  }
}


/* ==========================================
   SECTION: Contacts.css
========================================== */
/* =========================================================
   CONTACT PAGE COMPONENT STYLES
========================================================= */

.contact-page {
  width: 100%;
  background: #f8f9fa;
  overflow-x: hidden;
  padding-top: 85px;
}

/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
  width: 100%;
  height: 420px;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-overlay {
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 900px;
}

.contact-overlay h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-overlay p {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* =========================================================
   CONTACT SECTION & GRID
========================================================= */

.contact-details {
  padding: 90px 0;
}

.contact-grid {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.contact-information h2 {
  color: #0d5b35;
  margin-bottom: 35px;
  font-size: 2rem;
}

/* =========================================================
   CONTACT CARDS
========================================================= */

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eeeeee;
}

.contact-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-card i, .contact-card svg {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #0d5b35;
  color: #ffffff;
  padding: 16px;
  flex-shrink: 0;
  transition: 0.35s;
}

.contact-card:hover i, .contact-card:hover svg {
  background: #f4b400;
  color: #222;
  transform: rotate(-10deg);
}

.contact-card h4 {
  margin-bottom: 8px;
  color: #222;
  font-size: 1.1rem;
}

.contact-card p {
  color: #666;
  line-height: 1.7;
}

/* =========================================================
   SOCIAL MEDIA LINKS
========================================================= */

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  background: #0d5b35;
  color: #fff;
  font-size: 20px;
  transition: 0.35s;
}

.social-links a:hover {
  background: #f4b400;
  color: #222;
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   BOOKING FORM CONTAINER & INPUTS
========================================================= */

.booking-form-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.booking-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 100%;
  animation: fadeUp 0.8s ease;
}

.booking-form h2 {
  color: #0d5b35;
  margin-bottom: 22px;
  font-size: 1.8rem;
}

.booking-form form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #999;
}

.booking-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

.booking-form input[type="date"] {
  cursor: pointer;
}

.booking-form textarea {
  resize: vertical;
  min-height: 110px;
  margin-top: 5px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #0d5b35;
  box-shadow: 0 0 0 3px rgba(13, 91, 53, 0.12);
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover {
  border-color: #0d5b35;
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.submit-btn {
  margin-top: 20px;
  width: 100%;
  border: none;
  outline: none;
  background: #0d5b35;
  color: #fff;
  padding: 15px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.35s;
}

.submit-btn:hover {
  background: #f4b400;
  color: #222;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.submit-btn i, .submit-btn svg {
  font-size: 18px;
}

/* INPUT ERROR STYLE */

.input-error {
  border: 1px solid #dc3545 !important;
}

.error-text {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 6px;
}

/* =========================================================
   GOOGLE MAP SECTION
========================================================= */

.map-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.map-section iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* =========================================================
   NEWSLETTER SECTION
========================================================= */

.newsletter {
  background: linear-gradient(rgba(13, 91, 53, 0.95), rgba(13, 91, 53, 0.95)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #ffffff;
  padding: 90px 20px;
  animation: fadeIn 0.8s ease;
}

.newsletter h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.newsletter p {
  max-width: 700px;
  margin: auto;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 40px;
}

.newsletter-box {
  max-width: 650px;
  margin: auto;
  display: flex;
  overflow: hidden;
  border-radius: 60px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.newsletter-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 25px;
  font-size: 1rem;
}

.newsletter-box button {
  border: none;
  background: #f4b400;
  color: #222;
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 35px;
  cursor: pointer;
  transition: 0.35s;
}

.newsletter-box button:hover {
  background: #ffcf40;
}

.contact-information {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   CONTACT RESPONSIVE MEDIA QUERIES
========================================================= */

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-form,
  .contact-information {
    padding: 35px;
  }

  .newsletter h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding-top: 80px;
  }

  .contact-hero {
    height: 320px;
  }

  .contact-overlay h1 {
    font-size: 2.8rem;
  }

  .contact-overlay p {
    font-size: 1rem;
  }

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

  .booking-form,
  .contact-information {
    padding: 30px;
  }

  .map-section iframe {
    height: 400px;
  }

  .newsletter {
    padding: 70px 20px;
  }

  .newsletter-box {
    flex-direction: column;
    border-radius: 18px;
  }

  .newsletter-box input,
  .newsletter-box button {
    width: 100%;
    padding: 18px;
  }
}

@media (max-width: 576px) {
  .contact-details {
    padding: 60px 0;
  }

  .contact-overlay h1 {
    font-size: 2.2rem;
  }

  .contact-overlay p {
    font-size: 0.95rem;
  }

  .booking-form h2,
  .contact-information h2 {
    font-size: 1.8rem;
  }

  .booking-form,
  .contact-information {
    padding: 22px;
  }

  .contact-card {
    gap: 15px;
  }

  .contact-card i, .contact-card svg {
    width: 48px;
    height: 48px;
    padding: 14px;
  }

  .submit-btn {
    padding: 16px;
    font-size: 0.95rem;
  }

  .newsletter h2 {
    font-size: 1.8rem;
  }

  .newsletter p {
    font-size: 0.95rem;
  }

  .map-section iframe {
    height: 320px;
  }
}

@media (max-width: 400px) {
  .contact-overlay h1 {
    font-size: 1.9rem;
  }

  .booking-form,
  .contact-information {
    padding: 18px;
  }

  .newsletter {
    padding: 60px 15px;
  }

  .newsletter-box {
    border-radius: 15px;
  }

  .newsletter-box input,
  .newsletter-box button {
    font-size: 0.9rem;
  }
}


/* ==========================================
   SECTION: Terms.css
========================================== */
/* =========================================================
   TERMS & CONDITIONS COMPONENT STYLES
========================================================= */

.terms-page {
  width: 100%;
  min-height: 100vh;
  background: #f8f9fa;
  padding-top: 85px;
}

.terms-hero {
  width: 100%;
  height: 300px;
  background: linear-gradient(rgba(8, 40, 20, 0.85), rgba(8, 40, 20, 0.85)),
    url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.terms-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.terms-hero p {
  font-size: 1.1rem;
  color: #ffd54f;
}

.terms-content-section {
  padding: 80px 0;
}

.terms-container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.terms-article {
  margin-bottom: 40px;
}

.terms-article:last-child {
  margin-bottom: 0;
}

.terms-article h2 {
  color: #0d5b35;
  font-size: 1.8rem;
  margin-bottom: 18px;
  border-bottom: 2px solid #f9b400;
  padding-bottom: 8px;
  display: inline-block;
}

.terms-article p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 15px;
}

.terms-article ul {
  padding-left: 20px;
  color: #555;
  line-height: 1.8;
}

.terms-article li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .terms-container {
    padding: 30px 20px;
  }

  .terms-hero h1 {
    font-size: 2.2rem;
  }
}


/* ==========================================
   SECTION: Footer.css
========================================== */
/* =========================================================
   FOOTER COMPONENT STYLES
========================================================= */

.site-footer {
  background: #061e0f;
  color: #e0e0e0;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 4px solid #f9b400;
  position: relative;
  overflow: hidden;
}

.footer-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================================
   FOOTER BRANDING
========================================================= */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-text h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.footer-logo-text p {
  color: #ffd54f;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-brand p.brand-desc {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 400px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.35s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #f9b400;
  color: #222;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(249, 180, 0, 0.35);
}

/* =========================================================
   FOOTER COLUMNS & LINKS
========================================================= */

.footer-col h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  background: #f9b400;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #ffd54f;
  transform: translateX(5px);
}

/* =========================================================
   CONTACT INFO COLUMN
========================================================= */

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-item i, .footer-contact-item svg {
  color: #f9b400;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* =========================================================
   FOOTER BOTTOM BAR
========================================================= */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.9rem;
  color: #888;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-bottom-left p {
  margin: 0;
}

.developer-credit {
  color: #ffd54f;
  font-weight: 600;
}

.footer-separator {
  color: #f9b400;
  margin: 0 6px;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-right a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #ffd54f;
  text-decoration: underline;
}

/* =========================================================
   FOOTER RESPONSIVE MEDIA QUERIES
========================================================= */

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom-right {
    justify-content: center;
  }
}


/* ==========================================
   SECTION: WhatsAppWidget.css
========================================== */
/* =========================================================
   WHATSAPP FLOATING CHAT WIDGET STYLES
========================================================= */

.whatsapp-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  font-family: "Poppins", sans-serif;
}

/* =========================================================
   FLOATING BUTTON
========================================================= */

.whatsapp-float-btn {
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.35s ease;
  position: relative;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  background: #20ba5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* PULSE ANIMATION */

.whatsapp-float-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.7;
  animation: whatsappPulse 2s infinite ease-in-out;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* BADGE NOTIFICATION */

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: #ff3b30;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

/* TOOLTIP HOVER (Desktops) */

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 40, 20, 0.92);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

/* =========================================================
   POPUP CHAT WINDOW
========================================================= */

.whatsapp-chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
  animation: chatFadeIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom right;
}

@keyframes chatFadeIn {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* CHAT HEADER */

.chat-header {
  background: #082814;
  color: #ffffff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #25d366;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d5b35;
  border: 2px solid #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #ffffff;
}

.status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #25d366;
  border: 2px solid #082814;
  border-radius: 50%;
}

.chat-header-text h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.chat-header-text p {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: #ffd54f;
}

.chat-close-btn {
  background: none;
  border: none;
  color: #aaaaaa;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.chat-close-btn:hover {
  color: #ffffff;
}

/* CHAT BODY */

.chat-body {
  padding: 20px;
  background: #f4f7f5;
  background-image: radial-gradient(#d5e2da 1px, transparent 0);
  background-size: 14px 14px;
}

.chat-message-bubble {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 0 16px 16px 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  position: relative;
}

.chat-sender {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d5b35;
  margin-bottom: 4px;
}

.chat-text {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

.chat-time {
  font-size: 0.7rem;
  color: #999999;
  text-align: right;
  margin-top: 6px;
}

/* CHAT ACTION BUTTON */

.chat-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: all 0.35s ease;
  text-align: center;
}

.chat-action-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.chat-action-btn i, .chat-action-btn svg {
  font-size: 1.3rem;
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES
========================================================= */

@media (max-width: 576px) {
  .whatsapp-widget-container {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float-btn {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

  .whatsapp-chat-box {
    width: calc(100vw - 40px);
    right: 0;
    bottom: 75px;
  }
}


/* ==========================================
   GLOBAL MOBILE RESPONSIVENESS & NAV RULES
========================================== */
@media (max-width: 992px) {
  .menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 26px !important;
    cursor: pointer !important;
    z-index: 100001 !important;
    padding: 8px !important;
  }
  .nav-social, .book-btn {
    display: none !important;
  }
  .nav-links {
    display: none !important;
    position: absolute !important;
    top: 85px !important;
    left: 0 !important;
    width: 100% !important;
    max-height: calc(100vh - 85px) !important;
    background: #082814 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 15px 0 !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
    overflow-y: auto !important;
    z-index: 100000 !important;
  }
  .nav-links.active, .nav-links.open {
    display: flex !important;
  }
  .nav-links li {
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }
  .nav-links li a, .nav-links .dropdown-title {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 16px 25px !important;
    color: #ffffff !important;
    font-size: 1.05rem !important;
  }
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    transform: none !important;
    background: rgba(0, 0, 0, 0.3) !important;
    box-shadow: none !important;
    width: 100% !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  .dropdown-menu.show {
    display: block !important;
  }
  .dropdown-menu a {
    padding: 14px 40px !important;
    color: #ffd54f !important;
    font-size: 0.95rem !important;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px;
  }
  .blog-grid, .package-grid, .features-grid, .destination-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 35px;
  }
  .footer-brand p.brand-desc {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-bottom-right {
    justify-content: center;
  }
  .blog-grid, .package-grid, .features-grid, .destination-grid {
    grid-template-columns: 1fr !important;
  }
  .whatsapp-chat-box {
    width: calc(100vw - 40px);
    right: -10px;
  }
}
