/* index.css - Enhanced mobile-responsive styles with fixes */

/* Styles for header/navbar have been moved to navbar.css to ensure consistency */


.site-header.fixed-white .navbar-toggler .fa-bars {
  color: #3b82f6;
  font-size: 1.5rem;
}

/* ========== Hero Section with Fixed Desktop Positioning ========== */
.hero {
  top: 100px;
  height: 85vh;
  padding-bottom: 10px;
  min-height: 550px;
  max-height: 750px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  margin-left: 2rem;
  margin-right: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    rgba(0, 0, 0, 0.65) 0%, 
    rgba(0, 0, 0, 0.4) 50%, 
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 3rem; /* Fixed desktop positioning */
}

.hero-content {
  color: var(--text-white);
  padding: 2.5rem;
}

.hero-text-content {
  max-width: 700px;
}

/* ========== Enhanced Hero Title Design ========== */
.hero-tagline {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 
    0 8px 25px rgba(59, 130, 246, 0.5),
    0 0 40px rgba(59, 130, 246, 0.3);
  animation: taglinePulse 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes taglinePulse {
  0%, 100% { 
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
  }
  50% { 
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.7), 0 0 60px rgba(59, 130, 246, 0.5);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  position: relative;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #e0f2fe 30%,
    #ffffff 50%,
    #bae6fd 70%,
    #ffffff 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.6))
          drop-shadow(0 0 30px rgba(59, 130, 246, 0.4));
}

@keyframes titleShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
  margin-top: 2rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(59, 130, 246, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 15px 40px rgba(59, 130, 246, 0.7),
    0 8px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Hero Stats */
.hero-stats {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
  color: var(--text-white);
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.6));
}

.stat-item p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 4;
}

.prev-btn, .next-btn {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.prev-btn:hover, .next-btn:hover {
  background: #3b82f6;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Fixed Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 4;
}

.indicator {
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.indicator.active {
  background: #3b82f6;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

.indicator:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.8);
}

/* ========== Services Section ========== */
.services-section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tagline {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #3b82f6;
}

.service-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover img {
  transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin-bottom: 1rem;
  color: #1e293b;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.service-card p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ========== Destinations Section ========== */
.destinations-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-card .card-body {
  padding: 1.75rem;
  background: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.destination-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin-bottom: 0.75rem;
  color: #1e293b;
  font-weight: 600;
}

.destination-card p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.card-price {
  font-weight: 700;
  color: #3b82f6;
  font-size: 1.2rem;
}

.btn-outline-primary {
  border: 2px solid #3b82f6;
  color: #3b82f6;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
}

.btn-outline-primary:hover {
  background: #3b82f6;
  color: white;
}

/* ========== Booking Steps Section ========== */
.booking-section {
  padding: 5rem 0;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: rgba(59, 130, 246, 0.05);
  transform: translateX(10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.step-content h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin-bottom: 0.75rem;
  color: #1e293b;
  font-weight: 600;
}

.step-content p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.booking-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-10px);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.card-img-top {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.booking-card:hover .card-img-top {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #3b82f6;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
  transition: all 0.3s ease;
}

.card-badge:hover {
  transform: scale(1.1);
}

.avatars-group {
  display: flex;
  align-items: center;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -12px;
  transition: all 0.3s ease;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:hover {
  transform: scale(1.2);
  z-index: 10;
}

.avatar-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  margin-left: 0.5rem;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
  text-align: center;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #3b82f6;
}

.testimonial-card .quote-icon {
  position: absolute;
  top: -10px;
  left: 25px;
  font-size: 2.5rem;
  color: #3b82f6;
  opacity: 0.2;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 3px solid #3b82f6;
  transition: all 0.3s ease;
}

.testimonial-card:hover img {
  transform: scale(1.1);
}

.testimonial-card p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card h3 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  margin-bottom: 0.5rem;
  color: #1e293b;
  font-weight: 600;
}

.testimonial-card .rating {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ========== Sponsors Section ========== */
.sponsors {
  padding: 3rem 0;
  background: rgba(59, 130, 246, 0.02);
}

.sponsor-img {
  max-height: 60px;
  opacity: 0.5;
  transition: all 0.4s ease;
  filter: grayscale(100%);
}

.sponsor-img:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* ========== WhatsApp Contact Section ========== */
.whatsapp-contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.whatsapp-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.whatsapp-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.whatsapp-icon i {
  font-size: 2.5rem;
  color: white;
}

.whatsapp-content h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.whatsapp-content p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

.btn-whatsapp {
  background: white;
  color: #25d366;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #128c7e;
}

/* ========== Modal Styles ========== */
.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-radius: 20px 20px 0 0;
  padding: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-header .btn-close {
  color: white;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  padding: 1.5rem;
}

.modal-footer .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.modal-footer .btn-secondary {
  background: #e5e7eb;
  color: #374151;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

/* ========== Newsletter Form ========== */
.newsletter-form input {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 8px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn-primary {
  background: #3b82f6;
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
}

/* ========== Footer ========== */
.site-footer {
  background: #1e293b;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-brand-container {
  display: inline-block;
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
}

.footer-brand-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1rem;
  color: #60a5fa;
  font-weight: 600;
  margin-left: 0.5rem;
}

.footer-col h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #60a5fa;
  padding-left: 5px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
  .hero {
    top: 30px;
    height: 75vh;
    min-height: 500px;
  }
  
  .hero-content-wrapper {
    padding-top: 2rem;
  }
}

@media (max-width: 992px) {
  .site-header.fixed-white .navbar {
    padding: 0.6rem 0;
  }

  .hero {
    top: 30px;
    height: 65vh;
    min-height: 450px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  
  .hero-content-wrapper {
    padding-top: 1rem;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-wrapper {
  padding-top: 10px;
}
  .site-header.fixed-white .navbar {
    padding: 0.5rem 0;
  }

  .brand-logo {
    width: 35px;
    height: 35px;
  }

  .brand-text {
    font-size: 1.3rem;
  }

  .brand-subtitle {
    font-size: 0.85rem;
  }

  /* Mobile Menu Styles - Fixed Dropdown Positioning */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 15px 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    margin-top: 0;
  }

  .navbar-nav {
    gap: 0.5rem;
  }

  .nav-item {
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .site-header.fixed-white .nav-link {
    padding: 1rem !important;
    font-size: 1.05rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
  }  

  .site-header.fixed-white .nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    padding-left: 1.5rem !important;
  }

  .site-header.fixed-white .nav-link::after {
    display: none;
  }

  .navbar-toggler {
    padding: 0.5rem;
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .hero {
    top: 50px;
    height: auto;
    min-height: 480px;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 15px;
    margin-top: 70px;
  }
  
  .hero-content-wrapper {
    padding-top: 0;
  }

  .hero-content {
    text-align: center;
    padding: 2rem 1.25rem;
  }

  .hero-text-content {
    max-width: 100%;
  }

  .hero-tagline {
    font-size: 0.7rem;
    padding: 0.5rem 1.2rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.15rem);
    margin-bottom: 1.5rem;
  }

  .btn-primary-custom {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .stat-item {
    text-align: center;
    flex: 0 0 calc(33.333% - 1rem);
  }

  .stat-item h3 {
    font-size: 1.75rem;
  }

  .stat-item p {
    font-size: 0.85rem;
  }

  .slider-controls {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .prev-btn, .next-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  /* Smaller slider indicators on mobile */
  .slider-indicators {
    bottom: 1rem;
    gap: 0.5rem;
  }
  
  .indicator {
    width: 6px;
    height: 6px;
  }
  
  .indicator.active {
    transform: scale(1.2);
  }

  .services-section,
  .destinations-section,
  .booking-section,
  .testimonials-section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-card img {
    width: 60px;
    height: 60px;
  }

  .destination-card img {
    height: 240px;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .booking-card .card-img-top {
    height: 200px;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .whatsapp-contact {
    padding: 3.5rem 0;
  }

  .whatsapp-icon {
    width: 70px;
    height: 70px;
  }

  .whatsapp-icon i {
    font-size: 2.2rem;
  }

  .btn-whatsapp {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }

  .sponsors {
    padding: 2.5rem 0;
  }

  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-col {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
   /* Mobile Menu Styles */
  .navbar-collapse {
    background: white;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    gap: 0.5rem;
  }

  .nav-item {
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .site-header.fixed-white .nav-link {
    padding: 1rem !important;
    font-size: 1.05rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .site-header.fixed-white .nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    padding-left: 1.5rem !important;
  }

  .site-header.fixed-white .nav-link::after {
    display: none;
  }

  .navbar-toggler {
    padding: 0.5rem;
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
  .site-header.fixed-white .navbar {
    padding: 0.4rem 0;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .brand-subtitle {
    font-size: 0.8rem;
  }

  /* Mobile Menu Styles */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 15px 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    margin-top: 0;
  }

  .navbar-nav {
    gap: 0.5rem;
  }

  .nav-item {
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .site-header.fixed-white .nav-link {
    padding: 1rem !important;
    font-size: 1.05rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .site-header.fixed-white .nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    padding-left: 1.5rem !important;
  }

  .site-header.fixed-white .nav-link::after {
    display: none;
  }

  .navbar-toggler {
    padding: 0.5rem;
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .hero {
    top: 30px;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    min-height: 450px;
    margin-top: 65px;
    border-radius: 12px;
  }

  .hero-content {
    padding: 1.75rem 1rem;
  }

  .hero-tagline {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .btn-primary-custom {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .hero-stats {
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
  }

  .stat-item {
    flex: 0 0 calc(33.333% - 0.75rem);
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .stat-item p {
    font-size: 0.75rem;
  }

  .prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Even smaller indicators on small mobile */
  .indicator {
    width: 4px;
    height: 4px;
  }

  .section-tagline {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}

/* Extra Small Devices */
@media (max-width: 375px) {
  /* Mobile Menu Styles - Fixed Dropdown Positioning */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 15px 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    margin-top: 0;
  }

  .navbar-nav {
    gap: 0.5rem;
  }

  .nav-item {
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .site-header.fixed-white .nav-link {
    padding: 1rem !important;
    font-size: 1.05rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
  }  

  .site-header.fixed-white .nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    padding-left: 1.5rem !important;
  }

  .site-header.fixed-white .nav-link::after {
    display: none;
  }

  .navbar-toggler {
    padding: 0.5rem;
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
  .hero {
    top: 30px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    min-height: 420px;
    margin-top: 60px;
  }

  .hero-content {
    padding: 1.5rem 0.75rem;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .stat-item h3 {
    font-size: 1.35rem;
  }

  .stat-item p {
    font-size: 0.7rem;
  }

  .btn-primary-custom {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.skip-link {
  display: none;
}