/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Body Styling */
body {
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
/* Full-page snow effect */
.initial-snow {
  position: fixed; /* Covers the entire page */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none; /* Allow clicks through snow */
  z-index: 10; /* On top of all content */
}

.snow {
  position: absolute;
  top: -10vh;
  color: #9cb5d4;
  user-select: none;
  pointer-events: none;
  animation: snowfall linear infinite;
}

@keyframes snowfall {
  0% {
    transform: translateY(-10vh);
  }
  100% {
    transform: translateY(110vh);
  }
}

/*body.pink-background,
body.pink-background section#after-home-image,
body.pink-background .locations-section,
body.pink-background .driver-section,
body.pink-background .reviews,
body.pink-background .tripadvisor {
  background-color: #ffe8f2 !important;
}*/

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #012c60;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* MAIN CONTAINER */
.header-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 45px;
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex: 1;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a:hover {
  color: #cce5ff;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* TRENDING BADGE */
.badge-trending {
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 6px;
}

/* RIGHT BUTTONS */
.right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON BUTTON */
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  width: 20px;
  height: 20px;
}

/* PROFILE BUTTON */
.profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: #012c60;
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

#myAccountLink {
  text-decoration: none;
}

.profile-btn:hover {
  background: #f0f0f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* SEARCH BOX */
.search-box {
  position: absolute;
  top: 75px;
  right: 20px;
  background: white;
  padding: 8px 14px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-box input {
  flex: 1;
  outline: none;
  border: none;
  color: #012c60;
}

.search-box button {
  background: #014f8c;
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
}

/* MOBILE MENU */
.mobile-menu {
  background: #012c60;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  color: white;
  padding: 8px 0;
  text-decoration: none;
}

/* ===================== SECOND ROW ===================== */
.second-row {
  background: #012c60;
  text-align: center;
  overflow-x: auto; /* horizontal scroll */
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.second-row::-webkit-scrollbar {
  display: none;
}

.scroll-x {
  display: flex;
  gap: 20px;
  padding: 6px;
}

.scroll-x a {
  color: white;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.scroll-x a:hover {
  color: #ffdf85;
  text-decoration: underline;
}

/* ===================== LOCATION ROW ===================== */
.location-row {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  padding: 5px 10px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}

.location-row::-webkit-scrollbar {
  display: none;
}

.location-row .loc-btn {
  display: inline-block;
  background: #fff7dc;
  color: #012c70;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  flex-shrink: 0;
}

.location-row .loc-btn:hover {
  background: #ffe3a3;
  color: #014f8c;
}

/* ===================== FLIPPING BANNER ===================== */
.flip-banner {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#flipText {
  font-size: 13px;
  font-weight: bold;
  color: #012c60;
  white-space: nowrap;
  text-align: center;
  padding: 0 10px;
}

/* ===================== RESPONSIVE ===================== */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  .lbl {
    display: none;
  }

  /* Second row scroll */
  .scroll-x {
    justify-content: flex-start;
  }

  .scroll-x a {
    font-size: 13px;
    padding: 0 6px;
  }

  /* Location row scroll */
  .location-row {
    justify-content: flex-start;
    padding: 4px 8px;
  }

  .location-row .loc-btn {
    font-size: 11px;
    padding: 2px 6px;
  }
}

@media (min-width: 769px) {
  .scroll-x {
    justify-content: center;
  }

  .location-row {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* HIDDEN ELEMENTS */
.hidden {
  display: none !important;
}

/* WhatsApp floating button style */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 999;
}

.whatsapp-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-link img {
  width: 70px;
  height: 70px;
  border-radius: 10%;
  transition: transform 0.3s ease;
}

.whatsapp-link:hover img {
  transform: scale(1.1);
}

/* Tooltip message */
.whatsapp-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 75px;
  background-color: #2e7d32;
  color: #ffffff;
  border-radius: 5px;
  font-weight: bold;
  padding: 8px 12px;
  font-size: 16px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

/* Show tooltip on hover */
.whatsapp-link:hover .whatsapp-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Show tooltip on mobile tap */
@media (hover: none) {
  .whatsapp-link:active .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
  }
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .whatsapp-link img {
    width: 55px;
    height: 55px;
  }

  .whatsapp-tooltip {
    font-size: 14px;
    right: 65px;
    padding: 6px 10px;
  }
}

@media screen and (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-link img {
    width: 50px;
    height: 50px;
  }

  .whatsapp-tooltip {
    font-size: 13px;
    right: 60px;
  }
}

/* Home Image Section */
.home-image {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background: #012c60; /* Blue background */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 75px;
}

/* Only first slide active shows pink */
/*.slide[data-index='0'].active {
  background-color: #f29db7;
}*/

/* Text and Button on Home Image */
.home-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  z-index: 1;

  /* Stronger text shadow */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 4px 4px 12px rgba(0, 0, 0, 0.6),
    0px 0px 20px rgba(0, 0, 0, 0.5);

  /* Optional: extra glow around text */
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.8));
}

.home-btn-container {
  position: absolute;
  text-align: center;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.home-book-now-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: bold;
  background-color: #e2ae3f;
  color: #012c60;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
  filter: drop-shadow(0px 0px 10px rgba(54, 48, 48, 0.8));
}

.home-book-now-btn:hover {
  background-color: #012c60;
  color: #ffffff;
}

.home-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 60px;
  left: 0;
  opacity: 0;
  pointer-events: none; /* Prevent clicks when hidden */
  transition: opacity 0.5s ease;
  width: 100%;
  height: calc(100% - 100px); /* 70px for navbar or margin offset */
  display: none;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  pointer-events: auto; /* Allow clicks */
  display: block;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease; /* Smooth transition for height, width, margins */
  display: block;
  cursor: pointer;
}

/* Apply individual styles to each image using its index */
.slide:nth-child(1) img {
  margin-top: 0; /* Adjust top margin for first image */
  width: 100%; /* Adjust width for the first image */
  height: 100%; /* Adjust height for the first image */
  object-fit: contain;
}

.slide:nth-child(2) img {
  margin-top: 0;
  width: 100%;
  height: 100%; /* Maintain aspect ratio */
  max-width: 100%;
  display: block;
  object-fit: contain; /* Ensures full image visibility */
  opacity: 1;
}

.slide:nth-child(3) img {
  margin-top: 0;
  width: 100%;
  height: 100%; /* Maintain aspect ratio */
  max-width: 100%;
  display: block;
  object-fit: contain; /* Ensures full image visibility */
  opacity: 1;
}

/* Show the active slide */
.slide.active {
  display: block;
}

/* Center dots + button together */
.slider-dots-container {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column; /* Stack dots above button */
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-top: 25px; /* Adds space above the dots & button block */
}

/* Keep your existing dots style */
.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background-color: #e2ae3f;
}

/* WhatsApp button styling */
.dots-whatsapp-btn a {
  background-color: #e2ae3f;
  color: #012c60;
  padding: 5px 20px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.dots-whatsapp-btn a:hover {
  background-color: #012c60;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-weight: 800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dots-whatsapp-btn a {
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .dots-whatsapp-btn a {
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 3px;
  }
}

/* Make sure the slider-dots-container fits well on small screens */
@media (max-width: 768px) {
  .slider-dots-container {
    bottom: 8px; /* Adjust vertical position for smaller screens */
    gap: 8px; /* Slightly less gap on mobile */
    padding: 0 10px; /* Add horizontal padding to avoid edge overflow */
  }

  /* Make dots a bit smaller on mobile for better spacing */
  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }

  /* Adjust WhatsApp button font and padding on small screens */
  .dots-whatsapp-btn a {
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 4px;
  }
}

@media (max-width: 768px) {
  .home-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #012c60; /* Blue background */
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*pop up message------------------------------------*/
/* Main Popup Container */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.popup-content {
  background: linear-gradient(135deg, #ffaaaa, #ffeaf6);
  padding: 20px;
  width: 100%;
  max-width: 850px; /* larger for desktop */
  display: flex;
  flex-direction: row;
  border-radius: 15px;
  overflow: hidden;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.5s ease-in-out;
  position: relative;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s;
}
.popup-close:hover {
  transform: scale(1.2);
  color: #012c60;
}

/* Inner Layout */
.popup-inner {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.popup-image {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.popup-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.popup-image img:hover {
  transform: scale(1.05);
}

/* Text Content */
.popup-text {
  flex: 2;
  text-align: left;
  font-size: 15px;
  padding: 10px;
}

.popup-text h2 {
  color: #f20254;
  font-size: 35px;
  margin-bottom: 10px;
  font-weight: 800;
}

.popup-text h2 strong {
  color: #007f5f;
  font-weight: 700;
}

.popup-text p {
  line-height: 1.6;
  color: #333;
  font-size: 1.2rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    max-width: 85%;
    align-items: center;
    padding: 15px;
    margin-top: 75px;
  }

  .popup-inner {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .popup-image {
    width: 70%;
    max-width: 300px;
  }

  .popup-text {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
  }

  .popup-text h2 {
    font-size: 28px;
  }
  .popup-text p {
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
}

@media (max-width: 480px) {
  .popup-image {
    width: 100%;
    max-width: 250px;
  }

  .popup-text h2 {
    font-size: 20px;
    margin-top: -15px;
  }

  .popup-text {
    font-size: 13px;
  }
  .popup-text p {
    line-height: 1.6;
    color: #333;
    font-size: 0.8rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
}

/* Animations */
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes glowButton {
  from {
    box-shadow: 0 0 10px #e2ae3f;
  }
  to {
    box-shadow: 0 0 20px #e2ae3f;
  }
}

/*--------------------------------------------------------------------------------------------------*/
/* Kandy Esala Perahera Text Styling */

/* Ensure .slide is relative */
.slide {
  position: relative;
}

/* Text for Kandy Banner */
.kandy-banner-text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 12px 24px;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 8px;
  z-index: 10;
  text-align: center;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .kandy-banner-text {
    font-size: 1.8rem;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .kandy-banner-text {
    font-size: 1.4rem;
    padding: 8px 16px;
    top: 12%;
  }
}

@media (max-width: 480px) {
  .kandy-banner-text {
    font-size: 1.1rem;
    padding: 6px 12px;
    top: 15%;
  }
}

.indian-booking {
  padding: 1.3rem 1rem;
  background: linear-gradient(135deg, #c9ffd4, #dacdff);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.booking-container {
  max-width: 900px;
  margin: auto;
}

.booking-title {
  font-size: 2rem;
  color: #012c60;
  margin-bottom: 1rem;
}

.booking-title span {
  color: #007f5f;
}

.booking-subtext {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.whatsapp-button {
  display: inline-block;
  background-color: #012c60;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: -10px;
}

.whatsapp-button:hover {
  background-color: #e2ae3f;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-title {
    font-size: 1.5rem;
  }

  .booking-subtext {
    font-size: 1rem;
  }

  .whatsapp-button {
    font-size: 1rem;
    padding: 0.7rem 1.4rem;
  }
}
/*-------------------------------------------------------------------------------------------------*/

/* header title link section */
#after-home-image {
  scroll-margin-top: 70px; /* Adjust based on your header height */
}

/* Background Section Below Image */
.after-home-image {
  background-color: #ffffff;
  text-align: center;
  padding: 50px 20px;
}

.after-home-image h2 {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
  margin-top: -10px;
}

/* Activities Section */
.activities-container {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  padding: 20px;
}

.popular-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 120px;
  background: linear-gradient(45deg, #e2ae3f, #e2ae3f);
  color: #012c60;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s infinite;
}

.activity-card {
  position: relative; /* Ensures the tag is positioned inside the card */
}

.activity-card {
  background: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  border: 1px solid #012c60;
  overflow: hidden;
  width: 350px;
  text-align: center;
  transition: 0.3s ease-in-out;
  padding: 0;
}

.activity-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  display: block;
}

.activity-card-content {
  padding: 15px;
}

.activity-card h3 {
  font-size: 24px;
  gap: 10px;
  margin: 10px 0;
  color: #000000;
}

.activity-card p {
  font-size: 18px;
  color: #555;
  padding: 0 10px;
}

/* Location */
.location {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000000 !important;
  margin: 10px 0;
}

.location i {
  margin-right: 8px;
  color: #ff0000;
}

/* Buttons Section */
.activity-book-now-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #012c60; /* Green color for differentiation */
  color: white;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
  width: 70%;
  margin-top: 10px;
  text-align: center;
}

.activity-book-now-btn:hover {
  background-color: #e2ae3f;
}

.learn-more-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #ffffff;
  color: #012c60;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
  border: 2px solid #012c60; /* Add border color */
  width: 70%;
  margin-top: 20px;
  text-align: center;
}

.learn-more-btn:hover {
  color: #012c60;
  border-color: #e2ae3f; /* Change border color on hover */
}

/*-------------------------------------------------------------------------------------------------*/
/*inquiry-form*/
.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 30px 30px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #012c60;
}

.tabs {
  display: flex;
  margin-bottom: 15px;
  gap: 5px !important; /* Increased from 10px to 20px */
}

.tab-button {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  background: #eee;
  border: 1px solid #dfdfdf;
  outline: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
  font-size: 15px;
  border-radius: 8px;
  text-transform: uppercase;
}

.tab-button:hover {
  background-color: #ddd;
}

.tab-button.active {
  background-color: #012c60;
  color: white;
  border-bottom: 3px solid #e2ae3f;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/*airport-transfer*/
.sub-tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.sub-tab-button {
  padding: 10px 120px;
  margin: 0 5px;
  background: #e7e7e7;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.sub-tab-button:hover {
  background: #ccc;
}

.sub-tab-button.active {
  background-color: #e2ae3f;
  color: #012c60;
}
.sub-tab-content {
  display: none;
  margin-top: 10px;
}

.sub-tab-content.active {
  display: block;
}

/*check boxes*/
.form-with-checkboxes {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-left: 480px;
}

.checkbox-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.checkbox-column label {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 8px;
  white-space: nowrap;
}

.form-column {
  flex: 1;
  min-width: 300px;
  margin-top: 80px;
}

/*promo code*/
input[readonly] {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 4px;
}
.sub-tab-content label {
  font-weight: bold;
  font-size: 16px;
  color: #444444;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 8px;
  text-align: left;
  margin-left: 0 !important; /* Aligns it left */
  display: block;
}

.sub-tab-content input[readonly] {
  padding: 9px 16px;
  font-size: 18px;
  color: #007f5f;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  cursor: default;
  width: 400px;
  justify-content: left;
  margin-left: 0 !important; /* Aligns it left */
  display: block;
}

.sub-tab-content input[readonly]:hover {
  transform: scale(1.03);
}

.sub-tab-content input[readonly]:focus {
  border-color: #ffa000;
  outline: none;
}

.dropdown-group {
  margin-top: 15px;
}

.dropdown-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.dropdown-group select {
  padding: 10px;
  width: 400px;
  max-width: 800px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  background-color: #fefefe;
  margin-top: 8px;
  justify-content: left !important;
  margin-left: 0 !important; /* Aligns it left */
  display: block;

  /* Custom arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23000' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
  padding-right: 40px; /* space for arrow */
}

.dropdown-group select:focus {
  border-color: #ffa000;
  outline: none;
}

.dropdown-group input[type='date'] {
  width: 400px;
  max-width: 800px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fefefe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  cursor: pointer;
  align-items: left;
  margin-left: 0 !important; /* Aligns it left */
  display: block;
}

.dropdown-group input[type='date']:focus {
  border-color: #ffa000;
  outline: none;
}

.vehicle-dropdown-wrapper {
  position: relative;
  width: 350px;
}

.vehicle-select {
  width: 350px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 2px;

  /* Remove default arrow in most browsers */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: white;
  background-image: none;
}

/* Custom arrow styling */
.vehicle-dropdown-wrapper .arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  pointer-events: none;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.vehicle-description {
  margin-top: 12px;
  background-color: #eef5ff;
  padding: 12px 16px;
  border-left: 6px solid #007f5f;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  white-space: pre-line;
  line-height: 1.5;
  text-align: left;
  width: 700px;
}

/* Ensure the whole group aligns left */
.dropdown-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* aligns content (like label + input) to the left */
}

#whatsapp-number,
#whatsapp-number-pickup {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: block;
  box-sizing: border-box;
}
/* Target the intl-tel-input wrapper */
.iti {
  width: 100%; /* allow full width */
  max-width: 400px; /* match input width */
  margin-left: 0 !important;
}

/* Input styles */
#whatsapp-number,
#whatsapp-number-drop {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: block;
  box-sizing: border-box;
}

.error-msg {
  color: red;
  font-size: 0.9rem;
  margin-top: 5px;
  text-align: left;
}

#check-availability-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e2ae3f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  width: 100%; /* ✅ Makes button fill available space */
  max-width: 300px; /* ✅ Limits size on larger screens */
  box-sizing: border-box;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

#check-availability-btn:hover {
  background-color: #012c60;
}

#check-availability-drop-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e2ae3f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

#check-availability-drop-btn:hover {
  background-color: #012c60;
}

.swal-confirm-btn {
  font-weight: bold;
}

.swal-cancel-btn {
  font-weight: bold;
}

/* Responsive Inquiry Form */
/* Responsive adjustments */
@media (max-width: 1024px) {
  .container {
    padding: 20px;
    max-width: 90%;
  }
  .form-with-checkboxes {
    margin-left: 0 !important;
    gap: 15px;
    justify-content: center;
  }
  .checkbox-column {
    min-width: 150px;
  }
  .form-column {
    min-width: 100%;
    margin-top: 30px;
  }
  .dropdown-group select,
  .dropdown-group input[type='date'],
  input[readonly],
  #whatsapp-number,
  #whatsapp-number-drop,
  .vehicle-select {
    width: 400px;
    max-width: 100%;
  }
  .vehicle-description {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
  }
  .tab-button {
    font-size: 14px;
    padding: 8px;
  }
  .sub-tabs {
    flex-direction: column;
  }
  .sub-tab-button {
    padding: 10px 20px;
    margin: 5px 0;
    width: 100%;
    box-sizing: border-box;
  }
  .form-with-checkboxes {
    flex-direction: column;
    margin-left: 0 !important;
    gap: 10px;
  }
  .checkbox-column {
    min-width: 100%;
  }
  .vehicle-dropdown-wrapper {
    width: 100%;
  }
  #check-availability-btn {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  h2 {
    font-size: 22px;
  }
  .tab-button {
    font-size: 13px;
    padding: 6px;
  }
  .sub-tab-button {
    font-size: 16px;
    padding: 8px 15px;
  }
}

/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* One Way Transfer */

/* Promo code readonly input styling */
#oneWay input[readonly] {
  padding: 10px 16px;
  font-size: 18px;
  color: #007f5f;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  cursor: default;
  width: 400px;
  margin-top: 10px;
  margin-left: 0;
  display: block;
}

#oneWay label[for='promo-oneway'] {
  font-weight: bold;
  color: #444;
  font-size: 16px;
  text-align: left;
  display: block;
  margin-top: 30px;
}

#oneWay input[readonly]:hover {
  transform: scale(1.03);
}

#oneWay input[readonly]:focus {
  border-color: #ffa000;
  outline: none;
}

/* Dropdown groups */
#oneWay .dropdown-group {
  margin-top: 15px;
}

#oneWay .dropdown-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  color: #444444;
}

#oneWay .dropdown-group input[type='date'],
#oneWay .dropdown-group input[list] {
  width: 400px;
  max-width: 800px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fefefe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  cursor: pointer;
}

#oneWay .dropdown-group input[type='date']:focus,
#oneWay .dropdown-group input[list]:focus {
  border-color: #ffa000;
  outline: none;
}

/* Vehicle Dropdown Wrapper */
.oneway-vehicle-dropdown-wrapper {
  position: relative;
  width: 350px;
}

/* Vehicle Select */
.oneway-vehicle-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  background-image: none;
}

/* Vehicle description */
.oneway-vehicle-description {
  margin-top: 12px;
  background-color: #eef5ff;
  padding: 12px 16px;
  border-left: 6px solid #007f5f;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  white-space: pre-line;
  line-height: 1.5;
  text-align: left;
  width: 700px;
}

/* WhatsApp number input */
#whatsapp-number-oneway {
  padding: 10px 10px 10px 52px;
  font-size: 16px;
  width: 400px;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  margin-left: 0 !important; /* Aligns it left */
  display: block;
}

/* intl-tel-input flag styling */
.iti__selected-flag {
  height: 42px !important;
  padding: 0 6px 0 8px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Error message styling */
.error-msg {
  color: red;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Submit Button Styling */
#check-availability-oneway-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e2ae3f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

/* Button hover effect */
#check-availability-oneway-btn:hover {
  background-color: #012c60;
}

/* Responsive Styling */

@media screen and (max-width: 1024px) {
  #oneWay input[readonly],
  #oneWay .dropdown-group input[type='date'],
  #oneWay .dropdown-group input[list],
  #whatsapp-number-oneway,
  .oneway-vehicle-description {
    width: 100%;
    max-width: 100%;
  }

  .oneway-vehicle-dropdown-wrapper {
    width: 100%;
  }

  #check-availability-btn {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .oneway-vehicle-description {
    font-size: 14px;
    padding: 10px 14px;
  }

  #oneWay label[for='promo-oneway'],
  #oneWay .dropdown-group label {
    font-size: 15px;
  }

  .oneway-vehicle-select {
    font-size: 15px;
  }

  #check-availability-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  .oneway-vehicle-description {
    font-size: 13px;
    padding: 8px 12px;
  }

  #oneWay input[readonly],
  #oneWay .dropdown-group input[type='date'],
  #oneWay .dropdown-group input[list],
  #whatsapp-number-oneway {
    font-size: 15px;
    padding: 10px;
  }

  .oneway-vehicle-select {
    font-size: 14px;
    padding: 10px;
  }

  #check-availability-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .iti__selected-flag {
    height: 38px !important;
  }
}

/*---------------------------------------------------------------------------------------------------------------------------------*/
/*multi-day tou*/
#multiDay .promo-group-inline {
  margin-top: 15px;
}

#multiDay .promo-group-inline label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  color: #444444;
  margin-top: 30px;
  text-align: left;
}

#multiDay .promo-group-inline .promo-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

#multiDay .promo-inline input {
  width: 400px;
  max-width: 800px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fefefe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  cursor: default;
  color: #007f5f;
  font-weight: 600;
  margin-bottom: 15px;
}

#multiDay .promo-inline input:focus {
  border-color: #ffa000;
  outline: none;
}

#multiDay .promo-note-inline {
  font-size: 14px;
  color: #ff6600;
  font-weight: bold;
  margin-top: -20px;
}

@media (max-width: 425px) {
  #multiDay .promo-note-inline {
    font-size: 14px; /* smaller font on small screens */
    margin-top: -20px;
    margin-bottom: 20px;
  }
}

#multiDay .start-date-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  color: #444444;
  text-align: left;
}
.start-date-group .start-date-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.start-date-note {
  font-size: 14px;
  color: #777;
  font-style: italic;
  text-align: left;
}
#multiDay .start-date-group input[type='date'] {
  width: 400px;
  max-width: 800px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fefefe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  cursor: pointer;
}

#multiDay .start-date-group input[type='date']:focus {
  border-color: #ffa000;
  outline: none;
}

#multiDay .dropdown-label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  color: #444444;
  margin-top: 20px;
  text-align: left;
}
/* Label Styling */
.dropdown-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #444444;
  font-size: 16px;
}

/* Custom Dropdown Styling */
.custom-dropdown {
  width: 400px;
  position: relative;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease;
}

.custom-dropdown:hover {
  border-color: #ffa000;
}

.selected {
  padding: 12px 40px 12px 16px;
  position: relative;
  color: #000000;
  width: 400px !important;
  text-align: left;
}

/* Dropdown Arrow */
.arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.custom-dropdown.open .arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown Options List */
.options {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-top: none;
  position: absolute;
  width: 100%;
  background-color: white;
  display: none;
  z-index: 100;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
}

.custom-dropdown.open .options {
  display: block;
}

.options li {
  padding: 10px 16px;
  transition: background-color 0.2s;
}

.options li:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

/* Distance Input Styling */
#distance-multiday {
  width: 400px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fefefe;
  box-sizing: border-box;
  color: #000000;
  cursor: default;
  user-select: none;
  margin-top: 8px;
  text-align: left;
  margin-left: 0; /* Aligns it left */
  display: block;
}

#distance-multiday:focus {
  outline: none;
  border-color: #ffa000;
}
/* === Multi-Day Tour Vehicle Dropdown === */
#multiDay .dropdown-group {
  margin-top: 15px;
}

#multiDay label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  color: #444444;
  text-align: left;
}

#multiDay .multiday-vehicle-select {
  width: 400px;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-left: 0; /* Aligns it left */
  display: block;
}

#multiDay .multiday-vehicle-select:focus {
  outline: none;
  border-color: #ffa000;
}

#multiDay .multiday-vehicle-description {
  margin-top: 12px;
  background-color: #eef5ff;
  padding: 12px 16px;
  border-left: 6px solid #007f5f;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  white-space: pre-line;
  line-height: 1.5;
  text-align: left;
  width: 700px;
}

/* === Multi-Day WhatsApp Input === */
#multiDay input[type='tel'] {
  width: 400px;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: 1px !important;
  margin-left: 0px !important; /* Aligns it left */
  display: block;
}

/* === Multi-Day Submit Button === */
#multiDay #check-availability-multiday-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e2ae3f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

#multiDay #check-availability-multiday-btn:hover {
  background-color: #012c60;
}

/* Responsive for tablets and below */
@media (max-width: 768px) {
  #multiDay .promo-inline input,
  #multiDay .start-date-group input[type='date'],
  #multiDay .multiday-vehicle-select,
  #multiDay input[type='tel'],
  #distance-multiday,
  .custom-dropdown,
  .selected {
    width: 337px !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  #multiDay .multiday-vehicle-description {
    width: 100% !important;
  }
}

/* Responsive for phones */
@media (max-width: 425px) {
  #multiDay .promo-inline {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  #multiDay .promo-inline input {
    width: 100% !important;
    margin-bottom: 12px !important;
  }

  #multiDay label,
  #multiDay .dropdown-label,
  #multiDay .start-date-group label {
    font-size: 14px !important;
  }

  #multiDay .multiday-vehicle-description {
    width: 100% !important;
    font-size: 14px !important;
  }

  #multiDay #check-availability-multiday-btn {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 1rem !important;
    padding: 10px 15px !important;
  }

  #multiDay .multiday-vehicle-select,
  #multiDay input[type='tel'],
  #distance-multiday,
  .custom-dropdown,
  .selected {
    width: 307px !important;
    max-width: 100% !important;
  }
}

/*-------------------------------------------------------------------------------------------------------------------*/
/*activities tab*/
/* Promo Code readonly input styling for Activities Tab */
#activities input[readonly] {
  padding: 10px 16px;
  font-size: 18px;
  color: #007f5f;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  width: 400px;
}

#activities input[readonly]:focus {
  border-color: #ffa000;
  outline: none;
}

/* Dropdown group styling */
#activities .dropdown-group {
  margin-top: 15px;
}

#activities .dropdown-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444444;
  margin-top: 10px;
}
#activities input[type='date'] {
  width: 400px;
  max-width: 800px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fefefe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  cursor: pointer;
}

#activities input[type='date']:focus {
  border-color: #ffa000;
  outline: none;
}

#activities .dropdown-group select {
  padding: 10px 16px;
  font-size: 16px;
  color: #000000;
  border-radius: 8px;
  width: 400px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}

#activities .dropdown-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  margin-top: 10px;
}

#activities #check-availability-activity-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e2ae3f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

#activities #check-availability-activity-btn:hover {
  background-color: #012c60;
}

/* Style for the WhatsApp number input inside the dropdown-group */
#whatsapp-number-activity {
  width: 400px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Adjust styling for intl-tel-input wrapper */
.iti {
  width: 100%;
}

/* Optional: Add spacing for dropdown-group */
.dropdown-group {
  margin-bottom: 16px;
}

/* Optional: Error message styling (already included in script) */
.error-msg {
  color: red;
  font-size: 0.9rem;
  margin-top: 4px;
}

@media (max-width: 768px) {
  #activities input[readonly],
  #activities input[type='date'],
  #activities .dropdown-group select,
  #whatsapp-number-activity {
    width: 100%;
  }

  #activities #check-availability-activity-btn {
    width: 100%;
    max-width: 100%;
  }
}

/*----------------------------------------------------------------------------------------------------------------*/
/* Vehicle Section Styling */
.vehicles-section h2 {
  font-size: 2em; /* Using em for relative font sizing */
  font-weight: bold;
  color: #000000;
  margin: 20px 0;
  text-align: center;
}

.vehicles-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  /* Added Flex alignment to ensure centering of content */
  justify-content: center;
}

/* Card Styling */
.vehicle-cards {
  display: flex;
  justify-content: center; /* Ensures the cards are centered */
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
}

.card {
  width: 18%; /* Default width for larger screens */
  border: 1px solid #012c60;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

/* Vehicle Image Styling */
.vehicle-image {
  width: 100%;
  height: 150px;
  object-fit: contain; /* Ensure image scales without cropping */
  border-bottom: 1px solid #012c60;
  padding: 5px;
}

.vehicle-details {
  padding: 5px;
}

.vehicle-details h3 {
  font-size: 1.2em; /* Slightly smaller for better scaling */
  margin-bottom: 10px;
  color: #012c60;
}

.vehicle-details p {
  margin: 5px 0;
  font-size: 0.9em; /* Adjusted for smaller screens */
  font-family: sans-serif;
}

/* Responsive adjustments for the cards */
@media (max-width: 1024px) {
  .card {
    width: 22%; /* Adjust card width on medium screens */
  }
}

@media (max-width: 768px) {
  .card {
    width: 45%; /* Cards take up 45% of the container width on smaller screens */
  }
}

@media (max-width: 480px) {
  .card {
    width: 90%; /* Cards take up 90% of the container width on mobile screens */
  }
  .vehicles-section h2 {
    font-size: 1.5em; /* Adjust font size on smaller screens */
  }
  .vehicle-details h3 {
    font-size: 1.1em; /* Adjust heading font size for better readability */
  }
}

/* Top Destination Section */
#top-destination {
  scroll-margin-top: 120px; /* Adjust based on your header height */
}

/* Tour Packages Heading */
#top-destination h2 {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  margin: 25px 0 10px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: -15px;
}

/* Tour Packages Container */
#top-destination .tour-packages-container {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  ); /* Responsive grid */
  gap: 15px;
  margin-top: 34px;
  padding: 20px;
  justify-items: center; /* Center items in grid */
}

/* Tour Card */
#top-destination .tour-card {
  position: relative;
  width: 100%;
  max-width: 350px; /* Prevents oversized cards */
  min-width: 250px; /* Ensures no tiny cards */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

#top-destination .tour-card:hover {
  transform: scale(1.05); /* Hover effect */
}

#top-destination .tour-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(54, 48, 48, 0.8);
  background: white;
}

/* Tour Image Styling */
#top-destination .tour-image {
  height: 150px;
  overflow: hidden;
}

#top-destination .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Tour Title */
#top-destination .tour-title {
  text-align: center;
  color: #012c60;
  font-size: 17px;
  font-weight: bold;
  background-color: #f8f8f8;
  padding: 10px;
  margin: 0;
  border-radius: 10px;
  font-family: sans-serif;
}

.tour-title a {
  text-decoration: none;
  color: #012c60;
}

.view-more-link {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 0px;
}

.view-more-link a {
  font-size: 16px;
  color: #ffffff; /* white text */
  background-color: #012c60; /* dark blue background */
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 7px 25px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  font-family: sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.view-more-link a:hover {
  background-color: #e2ae3f;
  color: #012c60;
}

/* Responsive Styling for Small Screens */
@media screen and (max-width: 480px) {
  .view-more-link a {
    font-size: 15px;
    padding: 8px 16px;
  }

  .view-more-link {
    margin-top: 5px;
    margin-bottom: 10px;
  }
}

.tour-packages-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.tour-card {
  flex: 1 1 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* new section styling */
.locations-section {
  background: url(https://dxk1acp76n912.cloudfront.net/images/homepage/watermarkwhite.png)
    repeat center center;
  margin: 40px auto;
  text-align: center;
  padding: 20px;
  margin-top: 10px;
}

.locations-section h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #012c60;
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.location-links a {
  color: #2d2c2c;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.3s;
}

.location-links a:hover {
  background-color: #012c60;
  color: white;
}

/* header title link section */
#tour-section {
  scroll-margin-top: 120px; /* Adjust based on your header height */
}

#top-destination.second-section .tour-card {
  position: relative;
  width: 100%;
  max-width: 350px;
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  padding-bottom: 15px; /* extra space for description */
  cursor: pointer;
}

#top-destination.second-section .tour-card:hover {
  transform: scale(1.05); /* only zoom effect */
}

/* Image Styling */
#top-destination.second-section .tour-image {
  height: 150px;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#top-destination.second-section .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title Styling */
#top-destination.second-section .tour-title {
  text-align: center;
  font-size: 17px;
  color: #012c60;
  margin: 10px 0 5px 0;
  margin-top: 1px;
}

.tour-description p {
  font-family: sans-serif;
}

/* Description Styling */
#top-destination.second-section .tour-description {
  text-align: center;
  font-size: 15px;
  color: #333;
  padding: 0 10px;
  line-height: 1.3;
}

/* Remove previous wrong hover behaviors */
#top-destination.second-section .tour-card .tour-title,
#top-destination.second-section .tour-card .tour-description {
  position: static; /* no absolute */
  opacity: 1; /* always visible */
  visibility: visible;
  background: none; /* no dark background */
}

.view-more-link2 {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 0px;
}

.view-more-link2 a {
  font-size: 16px;
  color: #ffffff; /* white text */
  background-color: #012c60; /* dark blue background */
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 7px 25px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  font-family: sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.view-more-link2 a:hover {
  background-color: #e2ae3f;
  color: #012c60;
}

/* Responsive Styling for Small Screens */
@media screen and (max-width: 480px) {
  .view-more-link2 a {
    font-size: 15px;
    padding: 8px 16px;
  }

  .view-more-link2 {
    margin-top: 5px;
    margin-bottom: 10px;
  }
}

section.scroll-articles {
  padding: 20px;
}

.scroll-articles h2 {
  font-size: 32px;
  color: #000000;
  margin-bottom: 8px;
  text-align: center;
  margin-top: 15px;
}

.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-behavior: smooth;
  padding: 30px;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.article-card {
  flex: 0 0 auto;
  width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.article-card:hover {
  transform: scale(1.05);
}

.article-card img {
  width: 100%;
  height: 140px; /* Set your desired fixed height */
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.article-card h3 {
  margin: 10px;
  font-size: 0.8rem;
  font-family: sans-serif;
  text-align: center;
}

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

.driver-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 1px;
}

.driver-section h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 24px;
  margin-top: -40px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 80px 10px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}

.driver-card {
  flex: 0 0 280px;
  background: #fff
    url(https://dxk1acp76n912.cloudfront.net/images/homepage/watermarkwhite.png)
    no-repeat center center;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 16px 20px;
  position: relative;
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 370px;
  overflow: visible;
}

.driver-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.driver-image-wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background: white;
}

.driver-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-line {
  height: 4px;
  background: #ffa500;
  margin: 16px 0;
  border-radius: 2px;
  overflow: visible;
}

.driver-heading {
  font-size: 1.2rem;
  font-weight: bold;
  color: #012c60;
  margin-top: 15px;
  margin-bottom: 12px;
}

.card-details {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
  margin-top: -10px;
}

.card-details .rating {
  color: #f0a500;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.card-details strong {
  display: inline-block;
  color: #012c60;
  font-weight: bold;
  margin: 4px 0;
}

.btn1 {
  display: inline-block;
  margin-top: auto; /* Pushes button to bottom */
  padding: 10px 20px;
  background: #012c60;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn1:hover {
  background-color: #e2ae3f;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(188, 185, 185, 0.6);
  color: rgb(0, 0, 0);
  border: none;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Review Section Styles */
.reviews {
  padding: 40px 20px;
  background: #f7f7f7;
  font-family: 'Arial', sans-serif;
  margin-top: -20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #012c60;
  margin-top: -100px;
}

.inquiry-container {
  width: 95%;
  max-width: 1200px;
  padding: 40px 30px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.reviews .subtitle {
  text-align: center; /* Center align the content */
  margin-top: -20px;
  font-family: sans-serif;
  color: #000000; /* A subtle gray for text */
  font-size: 1.3rem;
  line-height: 1.2;
}

.reviews .subtitle #last-updated {
  display: block; /* Make sure it appears on its own line */
  margin-bottom: 1px;
  font-style: none;
  color: #333; /* Slightly darker for emphasis */
}

.reviews .subtitle .view-all {
  display: inline-block;
  text-decoration: none;
  color: #1a416f;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 119, 204, 0.2);
  margin-bottom: 20px;
  font-size: 15px;
  margin-top: -30px;
}

.reviews .subtitle .view-all:hover,
.reviews .subtitle .view-all:focus {
  background-color: #e2ae3f;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 119, 204, 0.4);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.review-carousel {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  display: flex;
  min-width: 300px;
  max-width: 700px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.review-content {
  padding: 20px;
  flex: 1;
  width: 500px;
}

.tripadvisor-logo {
  width: 100px;
  margin-bottom: 10px;
}

.review-stars {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: -30px;
}

.review-header {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: #00796b;
}

.review-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}
.review-text-wrapper {
  position: relative;
}

.review-text {
  max-height: 90px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}

.review-text.expanded {
  max-height: 1000px; /* Big enough to show full content */
}

.toggle-more {
  display: inline-block;
  margin-top: 12px; /* increased from 1px */
  color: #012c60;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 20px;
}

.review-author {
  font-size: 14px;
  color: #333;
}

.review-link {
  color: #007f5f;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.review-link:hover {
  text-decoration: underline;
}

.review-date {
  display: block;
  color: #888;
  font-size: 13px;
  margin-top: 3px;
}

.review-image {
  width: 30px;
  background-size: cover;
  background-position: center;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  padding: 4px 10px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

@media (max-width: 768px) {
  .review-carousel {
    gap: 18px;
  }

  .review-card {
    width: 100%;
    max-width: 90%;
  }
}

/*trip-advisor*/
.tripadvisor {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: -150px;
  background-color: #f8f9fa;
  margin-top: -10px;
  overflow: hidden; /* Prevents horizontal scroll */
  width: 100%;
}

.TA_selfserveprop {
  text-align: center;
  max-width: 100%; /* Limits width to container */
}

.TA_selfserveprop ul {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.TA_selfserveprop li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .tripadvisor {
    padding: 15px;
  }

  .TA_selfserveprop {
    max-width: 100%;
    overflow-x: auto; /* Allows horizontal scrolling if needed */
  }

  .TA_selfserveprop li {
    padding: 5px;
  }
}

/* footer */
footer {
  background: url('https://dxk1acp76n912.cloudfront.net/images/homepage/waterma.png')
    no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 30px 20px; /* Adjust padding as needed */
  text-align: center;
  margin-top: 20px;
}

/* Footer Logo */
.footer-logo {
  position: relative; /* Changed from absolute to relative */
  padding: 10px;
  width: 140px; /* Adjusted the width as per your requirement */
  height: auto; /* Keeps the aspect ratio of the logo */
  margin: 0 auto;
  font-weight: bold;
  margin-top: 40px;
}

.footer-logo img {
  width: 240%; /* Ensure the image fills the container */
  height: auto;
  margin-top: -300px !important;
  margin-left: -80px;
}
.footer-social {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  gap: 20px;
  font-size: 1.4rem;
  text-align: center;
  margin-top: -5px !important;
}

.footer-social a {
  color: white;
}

/* Footer Content Section */
.footer-content {
  max-width: 1200px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
  gap: 5;
  text-align: center; /* Ensure text is centered */
}

.footer p a {
  color: #ffffff;
  text-decoration: none;
}

.footer p a:hover {
  text-decoration: none;
}

.footer p a:active {
  color: #f0a500; /* Optional color change on click */
}

.payment-box {
  background-color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1px 0; /* Add some vertical padding */
  text-align: center;
  box-sizing: border-box;
  height: 60px;
}

.inline-payment-icons {
  display: inline-flex;
  flex-wrap: wrap; /* Wrap on small screens */
  justify-content: center;
  gap: 15px;
  align-items: center;
  opacity: 1;
}

/* Base icon size for large screens */
.inline-payment-icons img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.inline-payment-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments */

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {
  .inline-payment-icons img {
    height: 45px; /* Slightly smaller icons */
  }
}

/* Small devices (mobiles, less than 768px) */
@media (max-width: 768px) {
  .inline-payment-icons img {
    height: 45px; /* Smaller icons for small screens */
  }

  .payment-box {
    padding: 8px 5px; /* Less padding on very small screens */
    height: 60px;
  }
}

/* Very small devices (extra small phones, less than 480px) */
@media (max-width: 479px) {
  .inline-payment-icons {
    gap: 10px; /* Less gap on very small screens */
  }

  .inline-payment-icons img {
    height: 32px; /* Smallest icons */
  }
  .payment-box {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .home-logo {
    width: 80% !important; /* Adjust size */
    max-width: 300px;
    height: auto !important;
    top: 10px; /* Adjust top spacing */
    left: 50%;
    transform: translateX(-50%); /* Center it properly */
  }
}

/* Responsive Grid Layout for All Devices */
@media (max-width: 576px) {
  .tour-packages h2 {
    font-size: 28px;
  }

  .tour-packages-container {
    grid-template-columns: 1fr; /* 1 card per row */
  }

  .tour-card {
    width: 90%;
    max-width: 300px;
  }

  .tour-title {
    font-size: 16px;
    padding: 8px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .tour-packages-container {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .tour-packages-container {
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  }
}

@media (min-width: 1201px) {
  .tour-packages-container {
    grid-template-columns: repeat(5, 1fr); /* 5 cards per row */
  }
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 20px 10px; /* Adjust padding for smaller screens */
    height: auto; /* Remove fixed height for flexibility */
    font-size: 14px; /* Slightly smaller font size for mobile */
    flex-direction: column; /* Stack elements vertically */
  }

  .footer-logo {
    position: relative; /* Changed from absolute to relative */
    padding: 10px;
    width: 140px; /* Adjusted the width as per your requirement */
    height: auto; /* Keeps the aspect ratio of the logo */
    margin: 0 auto;
    margin-top: 40px;
  }

  .footer-logo img {
    width: 240%; /* Ensure the image fills the container */
    height: auto;
    margin-top: -300px !important;
    margin-left: -80px;
  }

  .footer-social {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    text-align: center;
  }

  .footer-social a {
    color: white;
  }

  /* Footer Content Adjustments */
  .footer-content {
    font-size: 14px; /* Adjust text size for mobile */
    margin-top: 20px; /* Reduce margin-top */
    line-height: 1.5;
  }
}
/* Responsive Header for Mobile */
@media (max-width: 425px) {
  header {
    flex-direction: column; /* Stack elements vertically */
    text-align: center;
    padding: 0px 0px; /* Reduce padding */
    /*height: 11%;*/
  }

  .header-left {
    margin-bottom: 10px; /* Add space below */
  }

  .header-logo {
    width: 180px; /* Reduce logo size */
    margin-bottom: 10px;
    height: auto;
  }

  .header-links {
    flex-direction: column;
    gap: 20px;
    margin-top: 5px;
  }

  .header-links h1 {
    font-size: 1.2rem; /* Reduce font size */
    margin: 5px 0;
  }

  .header-links a {
    font-size: 1.2rem;
  }

  /* Adjust Home Image */
  .home-image {
    height: 300px;
    object-fit: cover;
  }

  .home-text {
    font-size: 30px;
    width: 90%;
  }

  .home-btn-container {
    top: 70%;
  }

  .home-book-now-btn {
    padding: 10px 14px;
    font-size: 18px;
  }

  /* Activities Section */
  .activities-container {
    flex-direction: column;
    align-items: center;
  }

  .activity-card {
    width: 90%;
  }

  /* Tour Packages */
  .tour-packages-container {
    flex-direction: column;
    align-items: center;
  }

  .tour-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  /* Further reduce text sizes */
  .home-text {
    font-size: 25px;
  }

  .home-book-now-btn {
    font-size: 13px;
  }

  .activity-card h3 {
    font-size: 20px;
  }

  .activity-card p {
    font-size: 16px;
  }
}
