:root {
    --blue: #003264;
    --black: #202124;
    --white: #f8f9fa;
    --red: #8B0000;
  }

/* Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  background-color: #f4f4f4;
  padding-top: 80px;
  color: var(--black);
}

/* Header Styles (same as activitybook.css) */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 12px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 80px;
  transition: all 0.3s ease;
}

.header-container {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
}

/* Hamburger menu - hidden by default on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  background-color: var(--blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* NAV MENU - Desktop version */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.nav-menu a {
  color: var(--blue);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: rgba(0, 50, 100, 0.1);
}

.nav-menu a.active {
  background-color: var(--red);
  color: white;
}

/* DROPDOWN MENU - For both desktop and mobile */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: ' ▼';
  font-size: 0.6em;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--red);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.dropdown-content a {
  color: white;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
}

  .dropdown-content a:hover {
    background-color: var(--blue);
    /* background-color: rgba(255, 255, 255, 0.1); */
  }

/* Show dropdown when active class is added */
.dropdown-content.show {
  display: block;
}

/* Mobile styles */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background-color: var(--blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-menu.show {
    left: 0;
  }
  
  .nav-menu a {
    color: white;
    width: 100%;
  }
  
  .dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 10px;
    margin-top: 5px;
  }
  
  /* Animate hamburger to X when menu is open */
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Tour Hero Section */
.tour-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: zoomInOut 16s infinite;
}

.slide.active {
  opacity: 1;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(0,50,100,0.7) 0%, rgba(139,0,0,0.5) 100%); */
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  animation: fadeIn 1.5s ease-out;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}

.hero-content h1 {
  color: var(--red);
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: textGlow 3s infinite alternate;
}

.hero-content h1 span {
  color: var(--blue);
  position: relative;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.hero-content:hover h1 span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-content p{
    color: var(--black);
    font-weight: bold;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 5px rgba(255,255,255,0.5), 0 0 10px rgba(255,255,255,0.3);
  }
  100% {
    text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.5);
  }
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease 0.5s both;
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.6;
  animation: blink 1.5s infinite ease-in-out;
}

.scroll-indicator span:nth-child(1) {
  animation-delay: 0s;
}
.scroll-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.scroll-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Tour Packages Section */
.tour-packages {
  padding: 80px 20px;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.5s forwards;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 2px;
}

.section-header h2 span {
  color: var(--red);
  position: relative;
}

.section-header p {
  font-size: 1.2rem;
  color: #555;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.package-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: cardAppear 0.6s ease forwards;
  animation-delay: calc(var(--order) * 0.2s);
}

@keyframes cardAppear {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.package-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.1) rotate(1deg);
}


@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.price-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1rem;
  backdrop-filter: blur(5px);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.package-card:hover .price-tag {
  transform: translateY(0);
  opacity: 1;
}

.group-discount, .student-offer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--red);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
  animation: flash 3s infinite;
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.7;
  }
}

.package-content {
  padding: 25px;
}

.package-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--blue);
  position: relative;
  padding-bottom: 10px;
}

.package-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--red);
}

.package-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  flex: 1;
}

.detail-icon {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.package-features {
  list-style: none;
  margin-bottom: 20px;
}

.package-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

.btn-container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 150px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1;
}

.know-more-btn {
  background-color: var(--red);
  color: var(--white);
  /* border: 2px solid var(--red); */
}

.know-more-btn:hover {
  background-color: var(--blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,50,100,0.2);
}

.book-now-btn {
  background-color: var(--red);
  color: white;
  border: 2px solid var(--red);
}

.book-now-btn:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139,0,0,0.2);
}

/* Package Type Specific Styles */
.honeymoon-package .package-content h3::after {
  background-color: var(--red);
}

.honeymoon-package .book-now-btn {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.honeymoon-package .book-now-btn:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: white;
}

.family-package .package-content h3::after {
  background-color: var(--red);
}

.family-package .book-now-btn {
  background-color: var(--red);
  border-color: var(--red);
}

.family-package .book-now-btn:hover {
  background-color: var(--blue);
  border-color: var(--blue);
}

.group-package .package-content h3::after {
  background-color: var(--red);
}

.group-package .book-now-btn {
  background-color: var(--red);
  border-color: var(--red);
}

.group-package .book-now-btn:hover {
  background-color: var(--blue);
  border-color: var(--blue);
}

.student-package .package-content h3::after {
  background-color: var(--red);
}

.student-package .book-now-btn {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--black);
}

.student-package .book-now-btn:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: white;
}
/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 20px;
  background: url('../images/whychooseusbg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-choose-us p{
  color: var(--black);
  font-weight: bold;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.2));
  z-index: 0;
}

/* Optional: remove if not using animated water background
@keyframes waterFlow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}
*/

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: white;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,1.0);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: calc(var(--order) * 0.2s);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 50%;
  animation: iconFloat 3s ease-in-out infinite;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--blue);
}

.feature-card p {
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* CTA Section */
.tour-cta {
  position: relative;
  height: 500px;
  background: url('../images/cta_bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  animation: bgShift 30s linear infinite;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
  color: var(--red);
}
.cta-content h2 span{
  color: var(--blue);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.cta-content p {
  color: var(--black);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.cta-btn {
  background-color: var(--red);
  color: white;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  background-color: var(--blue);
}

/* .cta-btn.secondary {
  background-color: transparent;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background-color: rgba(255,255,255,0.1);
} */

/* Footer Styling */
.main-footer {
  background-color: #003264;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
  font-family: 'Comic Neue', cursive;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo,
.footer-links,
.footer-contact {
  flex: 1 1 300px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 1rem;
  color: #ffffff;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #ffffff;
}

/* Hover Underline Animation */
.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #8B0000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Social Media Icons */
.social-media-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.social-media {
  display: flex;
  gap: 20px;
}

.social-media a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #8B0000;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .social-media {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .packages-container {
    grid-template-columns: 1fr;
  }
  
  .package-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .package-content h3 {
    font-size: 1.3rem;
  }
  
  .btn-container {
    flex-direction: column;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .package-image {
    height: 200px;
  }
  
  .package-content {
    padding: 20px;
  }
  
  .package-details {
    flex-direction: column;
    gap: 10px;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
}