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

/* Body Styling */
body {
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* ===================== 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;
}
/* Image Section */
.image-container {
  position: relative;
  width: 100%;
  height: 440px; /* Default height for large screens */
  margin-top: 90px; /* To ensure it appears below the header */
  overflow: hidden;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250%;
  background-size: cover; /* Ensures the image covers the container while maintaining aspect ratio */
  background-position: center;
  opacity: 0.5;
  background-image: url('https://dxk1acp76n912.cloudfront.net/images/background-1.png'); /* Set the image you want to keep */
}

/* Overlay Text and Button */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #012c60;
}

.overlay h2 {
  font-size: 3rem;
  font-weight: bold !important;
  margin-bottom: 45px;
  font-family: 'Lato', sans-serif;
}

.book-tour-btn {
  background-color: #012c60;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  font-size: 1.3rem; /* Adjust font size for better scaling */
  font-weight: bold;
  border-radius: 5px;
  display: inline-block; /* Ensures proper sizing */
  transition: background-color 0.3s ease;
}

.book-tour-btn:hover {
  background-color: #d48c2a;
}

@media (max-width: 768px) {
  .book-tour-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .book-tour-btn {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
}

/* Make the Image Container Responsive */
@media screen and (max-width: 1024px) {
  .image-container {
    margin-top: 80px !important;
    height: 340px !important; /* Adjust height for tablet screens */
  }

  .overlay h2 {
    font-size: 2rem; /* Smaller font size for mobile devices */
  }
}

@media screen and (max-width: 768px) {
  .image-container {
    margin-top: 80px;
    height: 240px !important;
  }

  .overlay h2 {
    font-size: 1.2rem; /* Adjust font size for smaller devices */
  }

  .book-tour-btn {
    font-size: 1rem; /* Smaller button on small screens */
  }
}

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

.popup-content {
  background: linear-gradient(135deg, #c9ffd4, #dacdff);
  padding: 20px;
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  overflow: hidden;
  flex-wrap: wrap;
}

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

.popup-image img {
  width: 220px;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 10px;
}

/* Text Content */
.popup-text {
  flex: 1;
  text-align: center;
  font-size: 15px;
}

.popup-text h2 {
  color: #012c60;
  font-size: 28px;
  margin-bottom: 10px;
}

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

.time-number {
  font-size: 2.5rem;
  color: #012c60;
  font-weight: bold;
  padding: 10px 15px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.time-label {
  font-size: 0.9rem;
  margin-top: 5px;
  color: #555;
}

/* Button */
.whatsapp-btn {
  background-color: #e2ae3f;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: glowButton 1.5s infinite alternate;
}

.whatsapp-btn:hover {
  background-color: #012c60;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    align-items: center;
    width: 400px;
  }

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

  .popup-image img {
    width: 300px;
    height: auto;
    max-height: 300px;
  }

  .popup-text {
    font-size: 14px;
  }

  .popup-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    width: 360px;
  }
  .popup-image img {
    width: 300px;
    height: 200px;
    max-height: 300px;
  }
  .whatsapp-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .popup-text h2 {
    font-size: 28px;
  }

  .popup-text {
    font-size: 16px;
  }
}

.why-choose {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 33px;
  margin-bottom: 40px;
  color: #012c60;
  margin-top: -20px;
}

.choose-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: -50px;
}

.choose-card {
  background: rgb(255, 255, 255);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card i {
  color: #e2ae3f; /* or your brand color */
  margin-bottom: 15px;
}

.choose-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #024153;
}

.choose-card p {
  font-size: 1rem;
  color: #3d3c3c;
  line-height: 1.5rem;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
  margin-top: 1px;
}

.payment-logos img {
  height: 52px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.payment-logos img:hover {
  transform: scale(1.1);
}

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

@media (max-width: 768px) {
  .why-choose h2 {
    font-size: 1.6rem;
  }
}

/*Inquiry form-section-------------------------------------------------------------------------*/
.inquiry-section {
  background: #f9f9f9;
  padding: 20px 20px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

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

.inquiry-form .form-group {
  margin-bottom: 20px;
}

.inquiry-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #444;
}

.inquiry-form input {
  width: 350px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Minimize width and align promo code with text */
.promo-group-inline .promo-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-inline input {
  width: 350px; /* smaller box */
  color: #007f5f; /* text color inside box */
  font-weight: 800; /* bold text */
  font-size: 15px;
}

/* "Get 30% off!" styling */
.promo-note-inline {
  font-size: 18px;
  font-weight: 700;
  color: #ff6600;
}

/* Start Date Field Styling */
.start-date-group .start-date-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.start-date-note {
  font-size: 14px;
  color: #777;
  font-style: italic;
}

.start-date-inline input[type='date'] {
  width: 350px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Number of Days dropdown container */
.dropdown-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #444;
}
.custom-dropdown {
  width: 350px;
  position: relative;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  user-select: none;
}
.selected {
  padding: 12px 40px 12px 16px; /* right padding for arrow */
  position: relative;
}
.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 black;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.custom-dropdown.open .arrow {
  transform: translateY(-50%) rotate(180deg);
}
.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: white;
  display: none;
  z-index: 10;
  box-sizing: border-box;
}
.options li {
  padding: 10px 16px;
}
.options li:hover {
  background: #eee;
}
.custom-dropdown.open .options {
  display: block;
}

.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;
  border-top: 6px solid #000000; /* Arrow color */
}
.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;
}

#whatsapp-number {
  width: 350px;
}
.iti__selected-flag {
  height: 42px !important; /* or any height you want, e.g., 36px or 32px */
  padding: 0 6px 0 8px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

#check-availability-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #012c60;
  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-btn:hover {
  background-color: #e2ae3f;
}

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

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

/* Responsive Inquiry Form */
@media (max-width: 768px) {
  .inquiry-section {
    padding: 15px 15px;
    max-width: 90%;
  }

  .inquiry-form input,
  .promo-inline input,
  .start-date-inline input[type='date'],
  .custom-dropdown,
  .vehicle-select,
  #whatsapp-number {
    width: 350px; /* Full width on smaller screens */
    max-width: 100%;
    box-sizing: border-box;
  }
  .vehicle-select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .inquiry-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

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

  #whatsapp-number {
    width: 350px;
  }
}

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

@media (max-width: 768px) {
  #top-destination h2 {
    font-size: 1.6rem;
  }
}

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

#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;
  cursor: pointer;
}

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

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

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

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

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

/*faq-secton*/
/* Container for side-by-side layout */
.two-column-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 30px;
  max-width: 2800px;
  margin: 0 auto;
}

/* Style for each section in the two-column layout */
.faq-section,
.compare-section-wrapper {
  flex: 1 1 48%;
  box-sizing: border-box;
  padding: 0px;
}

/* Ensure FAQ and Compare content fills width on smaller screens */
@media screen and (max-width: 992px) {
  .faq-section,
  .compare-section-wrapper {
    flex: 1 1 100%;
  }
}

.faq-container {
  background-color: #ffffff;
  width: 100%; /* Changed from max-width */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

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

.faq-item {
  margin-bottom: 18px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item .front {
  padding: 18px 20px;
  background-color: #e2ae3f;
  border-radius: 5px;
  position: relative;
}

.faq-item .front h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.faq-item .back {
  display: block !important;
  opacity: 1;
  visibility: visible;
  max-height: none;
  transition: none;
}

.faq-item.open .back {
  max-height: 600px;
  opacity: 1;
  padding: 15px 20px 20px;
}

.faq-item .back p {
  margin: 0;
  line-height: 1.6;
  color: #333;
  margin-top: 10px;
  margin-left: 10px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
  margin-bottom: -20px;
}

.payment-icons img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.faq-item .back a {
  color: #25d366;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

.faq-item .back a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .faq-container {
    padding: 20px;
  }

  .faq-item .front h3 {
    font-size: 16px;
  }

  .faq-item .back {
    font-size: 15px;
  }
}

.compare-section-wrapper {
  max-width: 1100px;
  margin: 50px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  flex: 1 1 48%;
  box-sizing: border-box;
  padding: 0px;
  margin-left: auto; /* Aligns the compare section to the right */
  margin-top: 10px;
}

.compare-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #012c60;
}

.compare-title span {
  color: #e63946;
}

.compare-intro {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  color: #555;
}

.compare-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  flex-wrap: nowrap;
}

.compare-column {
  flex: 1 1 400px;
  max-width: 450px;
}

.column-header {
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
  color: #1d3557;
  font-weight: 600;
  border-bottom: 3px solid #e63946;
  padding-bottom: 8px;
}

.compare-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
  background: #f1f1f1;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  transition: background 0.3s ease;
}

.compare-item:hover {
  background: #e63946;
  color: white;
}

.compare-item:hover .icon i {
  color: white;
}

.compare-item .icon {
  font-size: 2.2rem;
  color: #e63946;
  min-width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.compare-item .content h4 {
  margin: 0 0 6px 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.compare-item .content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Timeline Styles */
.compare-timeline {
  position: relative;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.compare-timeline .line {
  position: absolute;
  top: 15px;
  bottom: 15px;
  width: 4px;
  background: #e63946;
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.compare-timeline .circle {
  width: 18px;
  height: 18px;
  background: white;
  border: 4px solid #e63946;
  border-radius: 50%;
  margin: 60px 0; /* bigger gap */
  z-index: 1;
  box-shadow: 0 0 6px rgb(230 57 70 / 0.6);
}

/* Responsive */
@media (max-width: 950px) {
  .compare-container {
    flex-direction: column;
    align-items: center;
  }
  .compare-timeline {
    display: none;
  }
  .compare-column {
    max-width: 100%;
  }
  .compare-item {
    justify-content: flex-start;
  }
  .compare-item .icon {
    min-width: 40px;
  }
}

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

.vehicles-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  text-align: center;
  margin: 10px auto 20px;
  max-width: 800px;
}

.vehicles-section p strong {
  color: #4a4646; /* Highlight Less Taxi's message */
  font-weight: 600;
}

.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 #ccc;
  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 #ccc;
  padding: 5px;
}

.card-details {
  padding: 5px;
}

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

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

/* 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 */
    margin-top: -90px;
  }
  .card-details h3 {
    font-size: 1.1em; /* Adjust heading font size for better readability */
  }
}

.plan-trip-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.plan-trip-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #012c60;
  margin-top: -10px;
}

.plan-title-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.trip-season-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.season-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: white;
}

.season-card:hover {
  transform: scale(1.02);
}

.season-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 50px;
  border-radius: 10px;
}

.season-content h3 {
  margin: 0;
  font-size: 1.8rem;
}

.season-content p {
  margin: 5px 0 0;
  font-size: 1.1rem;
}

/* Background Images */
.west-south {
  background-image: url('https://dxk1acp76n912.cloudfront.net/images/homepage/article3.png'); /* West/South coast scenic beach */
}

.east-coast {
  background-image: url('https://dxk1acp76n912.cloudfront.net/images/homepage/hiriketiya_tour.png'); /* East coast vibes */
}

/* Responsive */
@media (min-width: 768px) {
  .trip-season-cards {
    flex-direction: row;
    justify-content: center;
  }

  .season-card {
    flex: 1;
  }
}

/*-------------------------------------------------------------------------------------------------*/
.indian-booking {
  padding: 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;
}

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

.tripadvisor-reviews {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.tripadvisor-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  margin-top: -20px;
}

.tripadvisor-header h2 {
  font-size: 2em;
  color: #012c60;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1800px;
  margin: auto;
}

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

.review-card img {
  width: 100px;
  margin-bottom: -5px;
  margin-top: -20px;
}

.review-card {
  flex: 0 0 calc(33.33% - 20px);
  background: rgb(243, 255, 243);
  padding: 25px;
  border-radius: 12px;
  border-left: 8px solid #58b947;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.review-card h3 {
  color: #00796b;
  margin-bottom: 5px;
}

.review-date {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 1em;
  line-height: 1.5;
  color: #333;
}

.read-toggle {
  background: none;
  border: none;
  color: #27ae60;
  cursor: pointer;
  font-weight: bold;
  margin-left: 5px;
  font-size: 1rem;
}

.reviewer {
  margin-top: 15px;
  font-weight: bold;
  color: #3b3b43;
}
.reviewer a {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #9fa2a2;
  color: rgb(0, 0, 0);
  border: none;
  font-size: 20px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.carousel-btn:hover {
  background: #004d40;
}

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

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

/* Responsive Styling */

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 calc(110% - 50px);
  }

  .tripadvisor-header img {
    width: 180px;
  }
}

.tripadvisor {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: -150px;
  background-color: #f8f9fa;
  margin-top: -30px;
  margin-bottom: 30px;
  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;
  }
}

/*.tripadvisor {
  background: url(https://dxk1acp76n912.cloudfront.net/images/homepage/watermarkwhite.png);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f8f9fa;
  margin-top: -10px;
  overflow: hidden; 
  width: 100%;
}

.TA_selfserveprop {
  text-align: center;
  max-width: 100%; 
}

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

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

  .TA_selfserveprop {
    max-width: 100%;
    overflow-x: auto;
  }

  .TA_selfserveprop li {
    padding: 5px;
  }
}*/

/*.tripadvisor-contact-section {
  background: url(https://dxk1acp76n912.cloudfront.net/images/homepage/watermarkwhite.png);
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.tripadvisor-contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.tripadvisor-widget {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-form-side {
  flex: 1 1 400px;
  max-width: 600px;
}

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

//contact page Styles 
.contact_us_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  padding: 5px 5px;
  background-color: #f4f4f4;
}

.big-container {
  width: 100%;
  max-width: 800px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 0px;
}

.contactus-head {
  font-size: 24px;
  font-weight: bold;
  color: #012c60;
  margin-bottom: 10px;
}

.input-title {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 8px;
  color: #012c60;
}

.input,
.textinput {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.textinput {
  height: 80px;
  resize: none;
}

// Ensure consistency with other input fields 
.input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 10px !important;
  font-size: 14px;
  margin-bottom: 8px;
}

// Adjust WhatsApp input field 
#whatsapp-number {
  width: 100%;
}

// Fix alignment issue in flex/grid layouts 
.responsive-cell-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

// If using intl-tel-input, ensure proper alignment 
.iti {
  width: 100% !important;
}

.submit-btn {
  width: 100%;
  height: auto;
  background-color: #012c60;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #e2ae3f;
}

//Tablet Screens (Portrait + Landscape) 
@media (max-width: 1024px) {
  .tripadvisor-widget,
  .contact-form-side {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tripadvisor-contact-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .big-container {
    padding: 20px;
    width: 700px;
  }
}

// Mobile Screens 
@media (max-width: 768px) {
  .tripadvisor-contact-container {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    gap: 20px;
  }

  .tripadvisor-widget,
  .contact-form-side {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .big-container {
    padding: 15px;
    width: 600px;
  }

  .contactus-head {
    font-size: 20px;
  }

  .input-title {
    font-size: 14px;
  }

  .input,
  .textinput {
    font-size: 13px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 10px;
  }
}

// Small Phones 
@media (max-width: 480px) {
  .tripadvisor-contact-container {
    padding: 10px;
    gap: 15px;
  }

  .contactus-head {
    font-size: 18px;
  }

  .big-container {
    padding: 10px;
  }

  .submit-btn {
    font-size: 14px;
  }
}*/

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

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