* {
  font-family: __Roboto_7247e5, __Roboto_Fallback_7247e5, sans-serif;
}

.hero-image {
  background-image: url("https://images.news18.com/ibnlive/uploads/2025/04/image-2025-04-c18b42a014166707025a97ffbfa7b497.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  position: relative;
}

@media (max-width: 768px) {
  .hero-image {
    min-height: 85vh;
  }
}

/* Hero Headline Styling - Faster animation */
.hero-headline {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Benefit Badges - Reduced animation delays for faster perceived load */
.benefit-badge {
  animation: fadeIn 0.3s ease-out;
  animation-fill-mode: both;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-badge:nth-child(1) { animation-delay: 0s; }
.benefit-badge:nth-child(2) { animation-delay: 0.05s; }
.benefit-badge:nth-child(3) { animation-delay: 0.1s; }
.benefit-badge:nth-child(4) { animation-delay: 0.15s; }
.benefit-badge:nth-child(5) { animation-delay: 0.2s; }

.benefit-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero CTA Styling */
.hero-cta-primary,
.hero-cta-secondary,
.hero-cta-phone {
  min-width: 200px;
}

@media (max-width: 640px) {
  .hero-cta-primary,
  .hero-cta-secondary,
  .hero-cta-phone {
    min-width: 100%;
  }
}

/* Testimonial Cards */
.testimonial-card {
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-left-color: #f97316;
}

.trust-badge {
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Performance Optimizations - Enhanced Lazy Loading */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lazy loading placeholder - prevents layout shift */
img[loading="lazy"] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
  opacity: 1; /* Start visible, will fade in smoothly */
  transition: opacity 0.3s ease-in-out;
}

@keyframes loading-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Once image is loaded, remove placeholder */
img[loading="lazy"].loaded {
  background: none;
  animation: none;
  opacity: 1;
}

/* Optimize image rendering */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Additional Mobile Optimizations */
@media (max-width: 640px) {
  .hero-image {
    background-attachment: scroll;
  }
  
  /* Ensure buttons are tap-friendly on mobile */
  button, a {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Optimize form inputs for mobile */
  .form-input {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Critical Above-the-Fold Performance */
.hero-image {
  will-change: transform;
}

/* Reduce layout shift */
.hero-headline,
.benefit-badge,
.hero-cta-primary,
.hero-cta-secondary,
.hero-cta-phone {
  min-height: 1px; /* Prevents layout shift */
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .benefit-badge {
    font-size: 10px;
    padding: 6px 10px;
  }
}

.review-overlay {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.review-overlay .container > div {
  justify-content: center !important;
  flex-wrap: nowrap !important;
}

.review-overlay .container > div > div {
  flex-shrink: 0;
  min-width: fit-content;
}

.gradient-btn {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.5),
    0 2px 6px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.gradient-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s;
}

.gradient-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.gradient-btn:hover::before {
  left: 100%;
}

.gradient-btn:hover::after {
  opacity: 1;
}

.gradient-btn:hover {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 50%, #b91c1c 100%);
  box-shadow: 0 7px 21px rgba(249, 115, 22, 0.7),
    0 4px 9px rgba(249, 115, 22, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
}

.gradient-btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.5);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 50%, #16a34a 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5),
    0 2px 6px rgba(37, 211, 102, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s;
}

.whatsapp-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.whatsapp-btn:hover::before {
  left: 100%;
}

.whatsapp-btn:hover::after {
  opacity: 1;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #20ba5a 0%, #16a34a 50%, #15803d 100%);
  box-shadow: 0 7px 21px rgba(37, 211, 102, 0.7),
    0 4px 9px rgba(37, 211, 102, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

.limited-deal-btn {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
}

.limited-deal-btn::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.5s;
}

.limited-deal-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.limited-deal-btn:hover::before {
  left: 100%;
}

.limited-deal-btn:hover {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  box-shadow: 0 6px 25px rgba(249, 115, 22, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.limited-deal-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
}

.strikethrough-price {
  text-decoration: line-through;
  opacity: 0.6;
}

.package-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.package-image {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Package card image lazy loading with blur effect */
.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease-in-out, opacity 0.5s ease-in-out;
  filter: blur(10px);
  opacity: 0.7;
  transform: scale(1.05);
}

/* When image is loaded, remove blur */
.package-image img.loaded {
  filter: blur(0px);
  opacity: 1;
  transform: scale(1);
}

/* Remove shimmer animation when image starts loading */
.package-image img.loading {
  animation: none;
}

.package-image.loaded {
  background: none;
  animation: none;
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.collapsible-content.active {
  max-height: 500px;
  display: block;
}

.collapsible-btn.active i {
  transform: rotate(180deg);
}

.floating-whatsapp {
  animation: pulse 2s infinite;
  background-color: #25d366 !important;
}

.floating-whatsapp:hover {
  background-color: #20ba5a !important;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
  display: block;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.mobile-sticky-footer .gradient-btn {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-sticky-footer a {
  text-decoration: none;
}

@media (min-width: 768px) {
  .mobile-sticky-footer {
    display: none;
  }
}

/* Add padding to body to prevent content from being hidden behind sticky footer */
@media (max-width: 767px) {
  body {
    padding-bottom: 70px;
  }

  /* Adjust WhatsApp button position on mobile to be above sticky footer */
  .floating-whatsapp {
    bottom: 80px !important;
  }
}

/* Enquiry Modal Styles */
.enquiry-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
}

.enquiry-modal.active {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.enquiry-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.enquiry-modal-content {
  position: relative;
  background: #e0f2fe;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  border-radius: 20px 20px 0 0;
  padding: 24px;
  z-index: 1;
  transform: translateY(100%);
  animation: slideUp 0.4s ease forwards;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.enquiry-modal-header {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}

.enquiry-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.enquiry-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}

.query-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  width: 100%;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #1a5d92;
  font-size: 18px;
  z-index: 1;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  transition: all 0.2s;
  font-family: __Roboto_7247e5, __Roboto_Fallback_7247e5, sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: #1a5d92;
  box-shadow: 0 0 0 3px rgba(26, 93, 146, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

.enquiry-submit-btn {
  width: 100%;
  padding: 16px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
  font-family: __Roboto_7247e5, __Roboto_Fallback_7247e5, sans-serif;
  position: relative;
}

.enquiry-submit-btn:disabled,
.enquiry-submit-btn.loading {
  opacity: 0.8;
  cursor: not-allowed;
  pointer-events: none;
  background: #f97316;
}

.enquiry-submit-btn.loading i.fa-spinner {
  margin-right: 8px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.enquiry-submit-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.enquiry-submit-btn:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .enquiry-modal-content {
    border-radius: 20px;
    max-width: 500px;
    margin-bottom: 20px;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.logo-pin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #fbbf24;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 0;
}

/* Itinerary List Styling */
.itinerary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.itinerary-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  background: #f8fafc;
  border-left: 3px solid #3b82f6;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.itinerary-list li:hover {
  background: #e0f2fe;
  transform: translateX(4px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.itinerary-list li i {
  font-size: 0.875rem;
  flex-shrink: 0;
}

.itinerary-list li span {
  flex: 1;
  color: #374151;
  font-weight: 500;
}

/* Attractions List Styling */
.attractions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.attractions-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.attractions-list li:hover {
  background: #fef3c7;
  transform: translateX(4px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.attractions-list li i {
  font-size: 0.875rem;
  flex-shrink: 0;
}

.attractions-list li span {
  flex: 1;
  color: #374151;
  font-weight: 500;
}

.mb-3.text-sm.text-gray-600 {
  display: flex;
  gap: 4px;
  -moz-box-align: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  color: rgb(0, 42, 51);
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 100px;
  text-wrap: nowrap;
  background-color: rgb(227, 250, 255);
  scrollbar-width: none;
}

.mb-3.text-sm.text-gray-600::-webkit-scrollbar {
  display: none;
}

.inclusions-text {
  font-size: 12px;
}

.inclusions-text span {
  font-size: 12px;
}

.package-title {
  font-size: 16px;
}

.starts-from-text {
  font-size: 12px;
  font-weight: 200;
  color: rgb(75, 85, 99);
}

.package-enquire-btn {
  background: #f97316;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.package-enquire-btn:hover {
  background: #ea580c;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  transform: translateY(-1px);
}

.package-enquire-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
}

/* FAQ Section Styles */
.faq-section {
  margin-top: 4rem;
}

.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.faq-question.active {
  background-color: #f3f4f6;
}

.faq-question i {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer:not(.hidden) {
  max-height: 500px;
  opacity: 1;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  line-height: 1.6;
  font-size: 14px;
}

/* Beautiful Loading Screen */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #7c2d12 0%, #ea580c 50%, #f97316 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.page-loader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.4) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.3) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none !important;
}

.loader-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Spinner Animation */
.loader-spinner {
  position: relative;
  width: 120px;
  height: 120px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: #f97316;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
  animation-duration: 1.5s;
  border-top-color: #f97316;
}

.spinner-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation-duration: 1.2s;
  animation-direction: reverse;
  border-top-color: #3b82f6;
}

.spinner-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  animation-duration: 1s;
  border-top-color: #ffffff;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Text Content */
.loader-text-content {
  color: white;
}

.loader-main-text {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: textFadeIn 0.8s ease-out 0.3s both;
  letter-spacing: 0.5px;
}

.loader-sub-text {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 400;
  animation: textFadeIn 0.8s ease-out 0.5s both;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
  .loader-spinner {
    width: 100px;
    height: 100px;
  }
  
  .loader-main-text {
    font-size: 1.5rem;
  }
  
  .loader-sub-text {
    font-size: 0.9rem;
  }
  
  .loader-content {
    gap: 1.5rem;
  }
}
