@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #148c04;
  --secondary-color: #fb9b34;
  --text-dark: #000;
  --text-light: #000;
  --bg-light: #f9f9f9;
  --white: #fff;
  --dark-bg: #040404;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #107503;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(20, 140, 4, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #e08728;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 155, 52, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  width: 122px;
  height: 50px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  animation: zoomIn 6s infinite alternate ease-in-out;
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Destinations */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.dest-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
}

.dest-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.dest-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(20, 140, 4, 0.08);
  color: var(--primary-color);
  font-size: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.dest-card:hover .dest-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

.dest-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

.google-review-btn {
  background-color: #fff;
  color: #333;
  border: 2px solid #ddd;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.google-review-btn:hover {
  border-color: #4285F4;
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.2);
  transform: translateY(-3px);
}

/* Packages Section */
.category-title {
  font-size: 2rem;
  color: var(--text-dark);
  margin: 50px 0 30px;
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.package-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.package-img {
  height: 220px;
  overflow: hidden;
}

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

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

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

.package-content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.package-content .btn {
  width: 100%;
  margin-top: auto;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(20, 140, 4, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

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

/* Package Details Page */
.pkg-hero {
  position: relative;
  min-height: 55vh;
  padding: 40px 0;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.pkg-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 20px;
}

.pkg-hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.pkg-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.pkg-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Accordion */
.accordion {
  margin-top: 30px;
}

.accordion-item {
  border: 1px solid #eee;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background: var(--bg-light);
  padding: 18px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.accordion-header:hover, .accordion-header.active {
  background: var(--primary-color);
  color: var(--white);
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
}

.accordion-header.active + .accordion-content {
  padding: 20px 25px;
  max-height: 1000px;
}

/* Lists */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.incl-box h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.incl-box ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.incl-box ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

.incl-box.excluded ul li::before {
  content: '\f00d';
  color: #e74c3c;
}

/* Checklist Grid */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.check-item {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

/* Policy Pages */
.policy-page {
  padding: 60px 0;
  background-color: var(--white);
}

.policy-content {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.policy-content h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.policy-content h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.policy-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.policy-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
}

.policy-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Contact Page */
.about-page,
.contact-page,
.policy-page {
  padding-top: 120px;
}

.content-box {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* About Page Specifics */
.about-header-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.mv-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.4s ease;
  z-index: 1;
}

.mv-card:hover {
  transform: translateY(-8px);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--primary-color);
}

.mv-icon {
  font-size: 45px;
  color: var(--primary-color);
  margin-bottom: 25px;
  opacity: 0.9;
}

.mv-icon i {
  background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.mv-card p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}



.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #bbb;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: #bbb;
}

.footer-contact li i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #bbb;
  font-size: 0.9rem;
}

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 100;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: var(--secondary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-color);
}

.final-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: var(--bg-light);
  border-radius: 15px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-content h1 { font-size: 3rem; }
  .pkg-hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .header .container {
    height: 70px;
  }
  
  .logo img {
    height: 40px;
  }

  .nav {
    position: absolute;
  }

  .mobile-menu-btn { 
    display: block; 
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-left: 30px;
    transition: 0.4s;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.05);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links a {
    font-size: 1.2rem;
  }
  
  .hero {
    min-height: 100vh;
    height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
    align-items: flex-start;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-content h1 { 
    font-size: 3.5rem; 
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
  }
  
  .hero-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  .section-title h2 { font-size: 2rem; }
  .pkg-hero-content h1 { font-size: 2rem; }
  .pkg-hero-content p { font-size: 1rem; }
  
  section {
    padding: 50px 0;
  }
  
  .about-page,
  .contact-page,
  .policy-page {
    padding-top: 120px;
  }
  
  .policy-page {
    padding-bottom: 30px;
  }
  
  .policy-content {
    padding: 15px;
  }
  
  .policy-content h2 {
    font-size: 1.3rem;
    margin-top: 20px;
  }
  
  .policy-content h3 {
    font-size: 1.1rem;
    margin-top: 15px;
  }
  
  .policy-content p, 
  .policy-content li {
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-col {
    margin-bottom: 20px;
  }
  
  .footer-contact li {
    justify-content: flex-start;
  }
  
  .final-cta {
    padding: 20px;
  }
  
  .pkg-hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn { 
    width: auto; 
    display: inline-block;
  }
}
