/* ===========================
   NEXDO ADVENTOURS - MAIN STYLES
   Safari Earth Tones Theme
   =========================== */

:root {
  --primary: #E8A838;
  --primary-dark: #D4922A;
  --primary-light: #F5C563;
  --dark: #1A1A2E;
  --dark-alt: #2D2D40;
  --charcoal: #3D3B40;
  --gold: #8B7335;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --light-bg: #F5F0E8;
  --text: #333333;
  --text-light: #666666;
  --green: #2D6A4F;
  --green-light: #40916C;
  --green-dark: #1B4332;
  --logo-orange: #F7A349;
  --logo-dark: #292F39;
  --logo-gray: #5E626A;
  --logo-cream: #F8F6F2;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; font-size: 16px; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 90px;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 {
  font-size: 2.5rem;
  color: var(--logo-dark);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 20px auto 0; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,168,56,0.4);
}
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--dark); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.nav-logo img { height: 60px; width: auto; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 5px 0;
  font-size: 0.95rem;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--logo-orange); color: var(--white) !important; padding: 10px 24px !important; border-radius: 50px; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary) !important; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; background: none; border: none; }
.hamburger span { width: 28px; height: 3px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

.hero {
  display: flex;
  align-items: center;
  background-color: #1A1A2E;
  color: var(--white);
  position: relative;
  min-height: 100vh;
  padding: 20px 0 50px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.92), rgba(45,45,64,0.8));
  z-index: 1;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slideshow .slide.active {
  opacity: 1;
}
.hero-content { max-width: 650px; animation: fadeInUp 1s ease; position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(247,163,73,0.2);
  color: var(--logo-orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(247,163,73,0.3);
}
.hero h1 { font-size: 3.5rem; line-height: 1.15; margin-bottom: 20px; font-weight: 800; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero h1 span { color: var(--primary); }
#blog-hero {
  background-color: #1A1A2E;
  background-image: linear-gradient(135deg, rgba(26,26,46,0.92), rgba(45,45,64,0.8)),
                    url('../images/destinations/bwindi.jpg');
  background-position: center;
  background-size: cover;
}
#packages-hero {
  background-color: #1A1A2E;
  background-image: linear-gradient(135deg, rgba(26,26,46,0.92), rgba(45,45,64,0.8)),
                    url('../images/destinations/queen-elizabeth.jpg');
  background-position: center;
  background-size: cover;
}
#contact-hero {
  background-color: #1A1A2E;
  background-image: linear-gradient(135deg, rgba(26,26,46,0.92), rgba(45,45,64,0.8)),
                    url('../images/destinations/kampala.jpg');
  background-position: center;
  background-size: cover;
}
.hero p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 35px; line-height: 1.7; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 50px; }
.hero-stat h3 { font-size: 2rem; color: var(--primary); }
.hero-stat p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 0; }

.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-image-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-image-badge h3 { font-size: 1.8rem; line-height: 1; }
.about-image-badge p { font-size: 0.85rem; margin-top: 5px; }
.about-content h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 20px; }
.about-content h2 span { color: var(--primary); }
.about-content p { color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 25px; }
.about-feature { display: flex; align-items: center; gap: 10px; }
.about-feature i {
  width: 36px; height: 36px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.9rem; flex-shrink: 0;
}
.about-feature span { font-weight: 500; font-size: 0.95rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 65px; height: 65px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

.destinations { background: var(--off-white); }
.destinations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); object-position: center; }
.destination-card:hover img { transform: scale(1.1); }
.destination-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}
.destination-overlay h3 { font-size: 1.3rem; margin-bottom: 5px; }
.destination-overlay p { font-size: 0.9rem; opacity: 0.85; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.package-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.package-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.package-card.featured { border: 2px solid var(--primary); }
.package-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-alt));
  color: var(--white);
  padding: 25px;
  position: relative;
}
.package-header .featured-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.package-header h3 { font-size: 1.4rem; margin-bottom: 5px; padding-right: 110px; }
.package-header .duration { opacity: 0.8; font-size: 0.9rem; }
.package-body { padding: 25px; flex: 1; }
.package-price { text-align: center; margin-bottom: 20px; }
.package-price .price { font-size: 2rem; font-weight: 700; color: var(--primary); }
.package-price .per { font-size: 0.9rem; color: var(--text-light); }
.package-features { margin-bottom: 25px; }
.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.package-features li i { color: var(--green); font-size: 0.85rem; }
.package-footer { padding: 0 25px 25px; margin-top: auto; }
.package-footer .btn { width: 100%; }

.daycation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.daycation-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}
.daycation-card:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); }
.daycation-card h4 { color: var(--dark); margin-bottom: 8px; font-size: 1.1rem; }
.daycation-card .price-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary-dark);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.community {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.community::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,168,56,0.15), transparent);
  border-radius: 50%;
}
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.community-content h2 { font-size: 2.3rem; margin-bottom: 20px; }
.community-content h2 span { color: var(--primary); }
.community-content p { opacity: 0.85; line-height: 1.7; margin-bottom: 30px; }
.community-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.benefit-item { display: flex; align-items: flex-start; gap: 12px; }
.benefit-item i {
  width: 40px; height: 40px;
  background: rgba(232,168,56,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.benefit-item h4 { font-size: 0.95rem; margin-bottom: 3px; }
.benefit-item p { font-size: 0.85rem; opacity: 0.7; margin-bottom: 0; }
.community-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.tip-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.tip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tip-icon {
  width: 70px; height: 70px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary); font-size: 1.5rem;
}
.tip-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.2rem; }
.tip-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

.calendar { background: var(--off-white); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.calendar-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.calendar-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-top-color: var(--primary); }
.calendar-item .month {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.calendar-item h4 { color: var(--dark); font-size: 1rem; margin-bottom: 5px; }
.calendar-item.event { background: linear-gradient(135deg, var(--logo-orange), var(--primary-dark)); color: var(--white); }
.calendar-item.event .month { color: var(--white); }
.calendar-item.event h4 { color: var(--white); }

.reviews-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-card .stars { color: var(--primary); margin-bottom: 15px; font-size: 1rem; }
.review-card .review-text { color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.review-card .reviewer { display: flex; align-items: center; gap: 12px; }
.review-card .reviewer-avatar {
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 1.1rem;
}
.review-card .reviewer-info h4 { font-size: 0.95rem; color: var(--dark); }
.review-card .reviewer-info p { font-size: 0.8rem; color: var(--text-light); }
.review-card .google-badge {
  position: absolute;
  top: 20px; right: 20px;
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--text-light);
}

.annual-event {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.annual-event::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.annual-event h2 { font-size: 2.5rem; margin-bottom: 15px; }
.annual-event h2 span { color: var(--primary-light); }
.annual-event p { max-width: 700px; margin: 0 auto 30px; opacity: 0.9; line-height: 1.7; }
.annual-event .event-date {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(255,255,255,0.2);
}

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card .blog-image { height: 220px; overflow: hidden; }
.blog-card .blog-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-card .blog-content { padding: 25px; }
.blog-card .blog-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card h3 { color: var(--dark); font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 15px; }
.blog-card .read-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.blog-full { display: none; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; }
.blog-full p { margin-bottom: 10px; line-height: 1.7; }
.blog-full p strong { color: var(--dark); }
.blog-full p em { color: var(--text-light); font-size: 0.85rem; }
.blog-card .read-more:hover { gap: 10px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { display: flex; flex-direction: column; gap: 25px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; }
.contact-item .icon {
  width: 50px; height: 50px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { color: var(--dark); margin-bottom: 5px; font-size: 1rem; }
.contact-item p, .contact-item a { color: var(--text-light); font-size: 0.95rem; }
.contact-item a:hover { color: var(--primary); }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--dark); font-size: 0.95rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,168,56,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.faqs { background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); overflow: hidden; }
.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: var(--transition); color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-content { padding: 0 25px 20px; color: var(--text-light); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

.cta-section {
  background: linear-gradient(135deg, var(--logo-dark), var(--dark-alt));
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.cta-section h2 span {
  color: var(--logo-orange);
}
.cta-section p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer { background: var(--dark); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-about img { height: 55px; margin-bottom: 15px; }
.footer-about p { opacity: 0.7; font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--white); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { opacity: 0.7; font-size: 0.9rem; }
.footer-links a:hover { opacity: 1; color: var(--primary); padding-left: 5px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; opacity: 0.7; font-size: 0.9rem; }
.footer-contact i { color: var(--primary); width: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { opacity: 0.6; font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { opacity: 0.6; font-size: 0.85rem; }
.footer-bottom-links a:hover { opacity: 1; color: var(--primary); }

.whatsapp-float {
  position: fixed;
  bottom: 25px; right: 25px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid #4285F4;
  color: #4285F4;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.google-review-btn:hover {
  background: #4285F4;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66,133,244,0.3);
}

.review-hidden { display: none; }
.gallery-hidden { display: none; }
.booking-info { background: var(--light-bg); }
.booking-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.booking-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.booking-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.booking-card i { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.booking-card h4 { color: var(--dark); margin-bottom: 10px; font-size: 1.1rem; }
.booking-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.subpackages { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 15px; }
.subpackage-item {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.subpackage-item p { font-size: 0.85rem; margin-bottom: 5px; }
.subpackage-item .price { font-size: 1rem; font-weight: 700; color: var(--primary); }

.book-deposit {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 40px;
  border-radius: var(--radius-lg);
}
.book-deposit h3 { font-size: 1.5rem; margin-bottom: 10px; }
.book-deposit p { opacity: 0.9; }

.customize-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  transition: var(--transition);
  background: #e8e4dc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-hidden { display: none; }

.dest-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dest-modal.active { display: flex; }
.dest-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: fadeInUp 0.3s ease;
}
.dest-modal-content h2 { font-size: 1.8rem; color: var(--logo-dark); margin-bottom: 15px; }
.dest-modal-content p { margin-bottom: 15px; line-height: 1.7; color: var(--text); }
.dest-modal-content ul { list-style: none; padding: 0; }
.dest-modal-content ul li { padding: 10px 0; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 10px; }
.dest-modal-content ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--green); font-size: 0.85rem; }
.dest-modal-content .close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  line-height: 1;
}
.dest-modal-content .close:hover { color: var(--text); }

.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox .close {
  position: absolute;
  top: 20px; right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}
.lightbox .close:hover { opacity: 1; }

.map-section iframe { width: 100%; height: 400px; border: none; border-radius: var(--radius-lg); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .about-grid, .community-grid, .contact-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 25px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 25px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-stats { margin-top: 20px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-badge { font-size: 0.8rem; padding: 6px 16px; }
  .section { padding: 50px 0; }
  .section-title { margin-bottom: 35px; }
  .section-title h2 { font-size: 2rem; }
  .section-title h2::after { width: 45px; }
  .section-title p { font-size: 1rem; }
  .destinations-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 200px; }
  .tips-grid { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
  .community-benefits { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .subpackages { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .faq-question { padding: 18px 15px; font-size: 0.95rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .nav-logo img { height: 45px; }
  .nav { padding: 10px 0; }
  .hero-stats { gap: 15px; margin-top: 30px; justify-content:center; width:100%; }
  .hero-stat { flex:1; text-align:center; }
  .hero-stat h3 { font-size: 1.5rem; }
  .hero-stat p { font-size: 0.8rem; }
  .map-section iframe { height: 280px; }
  .blog-grid { grid-template-columns: 1fr; }
  .customize-form input, .customize-form select, .customize-form textarea { padding: 12px 14px; font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.9rem; margin-bottom: 25px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; padding: 14px 20px; font-size: 0.9rem; }
  .hero-badge { font-size: 0.75rem; padding: 5px 14px; }
  .section { padding: 40px 0; }
  .section-title { margin-bottom: 25px; }
  .section-title h2 { font-size: 1.5rem; }
  .section-title p { font-size: 0.9rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: auto; min-height: 200px; }
  .gallery-item img { object-fit: contain; max-height: 300px; }
  .calendar-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card .blog-content { padding: 18px; }
  .blog-card h3 { font-size: 1.1rem; }
  .blog-card p { font-size: 0.9rem; }
  .package-card { padding: 20px; }
  .package-card h3 { font-size: 1.2rem; }
  .customize-form { padding: 20px; }
  .customize-form input, .customize-form select, .customize-form textarea { padding: 10px 12px; font-size: 0.9rem; }
  .container { padding: 0 15px; }
  .faq-question { padding: 15px 12px; font-size: 0.9rem; }
  .faq-answer-content { padding: 0 12px 15px; font-size: 0.9rem; }
  .about-grid { gap: 30px; }
  .destination-card { border-radius: 10px; }
  .destination-info { padding: 18px; }
  .destination-info h3 { font-size: 1.1rem; }
  .event-card { flex-direction: column; padding: 18px; text-align: center; }
  .event-icon { margin-bottom: 10px; }
  .community-image img { border-radius: 12px; }
  .tip-card { padding: 25px 20px; }
  .about-features { gap: 10px; }
  .about-feature span { font-size: 0.9rem; }
  .footer { padding: 50px 0 20px; }
  .footer-about img { height: 40px; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 18px; right: 18px; }
  .hero-stats { gap: 10px; margin-top: 20px; width:100%; justify-content:space-around; }
  .hero-stat h3 { font-size: 1.3rem; }
  .hero-stat p { font-size: 0.75rem; }
  .hero-stat { flex:1; text-align:center; }
}