/* 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: 100%;
  background-size: cover; /* Ensures the image covers the container while maintaining aspect ratio */
  background-position: center;
  opacity: 0.65;
  background-image: url('https://dxk1acp76n912.cloudfront.net/images/things-do-in-jaffna/Jaffna_Banner.jpg'); /* 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: 58px;
  font-family: 'Lato', sans-serif;
}

.book-tour-btn {
  background-color: #012c60;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  font-size: 1rem; /* 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: 1.5rem; /* 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 */
  }
}

#things-to-do {
  font-size: 1.8rem;
  margin-top: 30px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
}

/* Wrapper to align cards horizontally */
.cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px; /* Adjusted spacing between cards */
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  padding: 10px;
}

/* Card container */
.uc_content_box_zoom_effect {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 330px; /* Slightly smaller for better layout */
  height: 340px;
  margin: 15px; /* Reduced margin */
  border-radius: 10px; /* Soft rounded edges */
  border: none; /* Removed border for cleaner look */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for a modern touch */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover effect */
.uc_content_box_zoom_effect:hover {
  transform: translateY(-5px); /* Lift effect */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Image inside the card */
.uc_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Better image fill */
  transition: transform 0.5s ease;
}

/* Image zoom on hover */
.uc_content_box_zoom_effect:hover .uc_thumbnail img {
  transform: scale(1.1);
}

/* Image title */
.image-title {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7); /* Darker for better visibility */
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: opacity 0.3s ease-in-out;
}

/* Hide title when hovered */
.uc_content_box_zoom_effect:hover .image-title {
  opacity: 0;
}

/* Caption reveal */
.uc_content_box_zoom_effect_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease;
}

/* Show caption when hovered */
.uc_content_box_zoom_effect:hover .uc_content_box_zoom_effect_content {
  opacity: 1;
}

/* Caption text */
.image-caption {
  color: white;
  text-align: center;
  padding: 10px;
}

.icroh-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.icroh-text {
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive design */
@media (max-width: 1024px) {
  .cards-wrapper {
    gap: 15px; /* Increase spacing slightly */
  }
}

@media (max-width: 768px) {
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .uc_content_box_zoom_effect {
    max-width: 300px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .uc_content_box_zoom_effect {
    max-width: 280px;
  }
}

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

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

.what-to-expect-section {
  background-color: #012c60;
  padding: 25px;
  color: white;
  margin-top: 40px;
}

.expect-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: white;
}

.expect-container {
  width: auto;
  max-width: 1050px;
  text-align: justify;
  text-justify: inter-word;
  margin: 0 auto; /* Centers the container */
  hyphens: auto; /* Helps in breaking words to fit */
}
@media (max-width: 768px) {
  .expect-container {
    width: 90%; /* Adjust width for tablets */
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .expect-container {
    width: 95%; /* Adjust width for mobile devices */
    padding: 10px;
  }
}

.description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Styling for 3-5 Star Hotels Title */
.hotel-title {
  text-align: center;
  margin-top: 30px;
  padding: 20px 0;
}

.hotel-title h2 {
  font-size: 2rem;
  color: #000000;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
}

/* Flip Box Container */
.flip-box-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between cards */
  flex-wrap: wrap;
}

/* Flip Box Styling */
.flip-box {
  width: 220px !important;
  height: 320px !important;
  perspective: 1000px;
  margin: 20px 10px; /* Adjusted margin */
  position: relative; /* Needed for absolute positioning of children */
}

.flip-box-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-box-front {
  background-color: #fff;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  pointer-events: none;
}

/* Hotel image styling */
.hotel-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the card */
  opacity: 0.6; /* Makes the image semi-transparent */
  position: absolute;
  top: 0;
  left: 0;
}

/* Independent positioning for the hotel logo */
.hotel-logo {
  position: absolute;
  top: 40px; /* Adjust logo's vertical position */
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #000000;
}

.hotel-logo img {
  width: 50px !important;
  height: auto;
}

/* Independent positioning for the hotel name */
.hotel-name {
  position: absolute;
  top: 180px; /* Adjust name's vertical position */
  font-size: 1.3rem;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  letter-spacing: 2px;
  color: #000000;
}

/* Back side of the flip box */
.flip-box-back {
  background-color: #012c60;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  padding: 20px;
  text-align: center;
  transform: rotateY(180deg);
  pointer-events: auto;
}

/* BOOK NOW Button Styling */
.book-now-btn {
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #d48c2a;
  border-radius: 0px;
  margin-top: 30px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  position: relative;
  z-index: 10; /* Ensures it's clickable */
}

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

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