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

:root {
  --primary-color: #012258;
  --primary-hover: #011b45;
  --secondary-color: #D28D01;
  --secondary-hover: #b37801;
  --text-dark: #000000;
  --text-light: #333333;
  --bg-light: #FFFFFF;
  --bg-alt: #f8f9fa;
  --white: #FFFFFF;
  --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;
  background-color: var(--bg-light);
}

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(--primary-color);
  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: 800px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  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: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 34, 88, 0.3);
  color: var(--white);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(210, 141, 1, 0.3);
  color: var(--white);
}

.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: transparent;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.solid-header {
  background-color: var(--white);
  position: sticky;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: height 0.3s ease;
}

.header.scrolled .container {
  height: 95px;
}

.logo img {
  width: 122px;
  height: 90px;
  object-fit: contain;
  transition: height 0.3s ease;
}

.header.scrolled .logo img {
  height: 95px;
}

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

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

.nav-links a {
  font-weight: 500;
  color: var(--white);
  position: relative;
}

.header.scrolled .nav-links a,
.header.solid-header .nav-links a {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.header-buttons .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}

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

.header.scrolled .mobile-menu-btn,
.header.solid-header .mobile-menu-btn {
  color: var(--primary-color);
}

/* 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 8s 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(1, 34, 88, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 900px;
  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);
}

/* Services Carousel (Using CSS Grid/Flexbox scroll for simplicity or Swiper if added later. We'll use a CSS scroll snap carousel) */
.services-section {
  background: var(--bg-alt);
}
.services-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 5px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.services-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.service-card {
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
  background-color: var(--bg-alt);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(210, 141, 1, 0.1);
  color: var(--secondary-color);
  font-size: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.service-card:hover .service-icon {
  background: var(--secondary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

/* Packages Grid */
.category-title {
  font-size: 2rem;
  color: var(--primary-color);
  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;
  border: 1px solid #eee;
}

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

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

.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);
}

.pkg-duration {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.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;
  color: var(--primary-color);
}

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

/* Why Choose Us */
.why-us {
  background: var(--bg-alt);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 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(1, 34, 88, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

/* FAQs Accordion */
.accordion {
  max-width: 800px;
  margin: 40px auto 0;
}

.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

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

.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;
}

.accordion-header.active + .accordion-content {
  padding: 20px 25px;
  max-height: 1000px;
  border-top: 1px solid #eee;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(1, 34, 88, 0.9), rgba(1, 34, 88, 0.9)), url('../images/Hero%20section%202.avif') center/cover;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}
.cta-section h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* 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 5px 15px rgba(0,0,0,0.2);
  z-index: 100;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 100;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  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(--secondary-color);
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

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

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

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

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

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

/* Package details page specific */
.pkg-hero {
  position: relative;
  min-height: 55vh;
  padding: 40px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.pkg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.pkg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.pkg-slide.active {
  opacity: 1;
}
.pkg-hero::before {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(1, 34, 88, 0.6);
  z-index: 1;
}
.pkg-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 20px;
}
.pkg-hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
}
.pkg-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}
.pkg-details {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-around;
}
.pkg-detail-item {
  text-align: center;
}
.pkg-detail-item i {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}
.incl-box h3, .available-box h3 {
  color: var(--primary-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 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #27ae60;
}
.incl-box.excluded ul li::before {
  content: '\f00d';
  color: #e74c3c;
}

/* Policies, About, Contact */
.policy-page, .about-page, .contact-page {
  padding: 60px 0;
  background-color: var(--bg-alt);
  padding-top: 150px;
}
.policy-content, .content-box {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.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;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(1, 34, 88, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-title {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: var(--primary-color);
}
.contact-text {
  font-size: 1.1rem;
  color: #444;
}
.contact-text a {
  color: inherit;
}

/* About Page Details */
.about-header-text {
  text-align: center;
  margin-bottom: 30px;
}
.about-header-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.about-subtitle {
  font-size: 1.1rem;
  color: #555;
}
.about-page .content-box p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}
.about-page .content-box p.about-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}
.about-section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--primary-color);
}

/* 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; }

/* Responsive */
@media (max-width: 991px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .header.scrolled {
    background-color: var(--white);
  }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
  }
  .nav.active .nav-links a {
    color: var(--primary-color);
  }
  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .header-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
  }
  .header-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-content h1 { font-size: 2.8rem; }
  .service-card {
    flex: 0 0 calc(50% - 15px);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .section-title h2 { font-size: 2rem; }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    flex: 0 0 100%;
    padding: 30px;
    min-height: 280px;
  }
  .service-icon {
    width: 80px;
    height: 80px;
    font-size: 35px;
    margin-bottom: 20px;
  }
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  .service-card p {
    font-size: 0.95rem;
  }
  .cta-buttons, .pkg-hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .cta-buttons .btn, .pkg-hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .policy-page, .about-page, .contact-page {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .policy-content, .content-box {
    padding: 20px;
  }
  .policy-content h1 {
    font-size: 2rem !important;
  }
  
  /* Contact Page Mobile Adjustments */
  .contact-item {
    gap: 15px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .contact-title {
    font-size: 1.1rem;
  }
  .contact-text {
    font-size: 0.95rem;
  }
  
  /* About Page Mobile Adjustments */
  .about-header-text h1 {
    font-size: 2rem;
  }
  .about-subtitle {
    font-size: 1rem;
  }
  .about-page .content-box p {
    font-size: 0.95rem;
  }
  .about-page .content-box p.about-highlight {
    font-size: 1rem;
  }
  .about-section-title {
    font-size: 1.6rem;
  }
  
  /* Package Pages Mobile Adjustments */
  .pkg-hero {
    min-height: 40vh;
    padding: 20px 0 80px 0;
  }
  .pkg-hero-content h1 {
    font-size: 2rem;
  }
  .pkg-details {
    padding: 20px;
    gap: 15px;
    margin-top: -30px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .pkg-detail-item i {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .pkg-detail-item p {
    font-size: 0.9rem;
  }
  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
