/* 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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #012c60;
  padding: 15px 50px;
  color: white;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Logo */
.header-logo {
  width: 260px;
  transition: all 0.3s ease;
}

.header-logo img {
  width: 90%;
  height: auto;
  display: block;
  margin-top: 10px;
}

/* Navigation Links */
.header-links {
  display: flex;
  gap: 20px;
}

.header-links h1 {
  margin: 0;
  font-size: 0.9rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Apply transition correctly to the entire link */
.header-links h1 a {
  text-decoration: none;
  color: white;
  display: inline-block; /* Ensures transform works properly */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.header-links h1 a:hover {
  color: #e2ae3f;
  transform: scale(1.1); /* Smooth zoom-in effect */
}

/* Hide Menu Toggle Checkbox */
.menu-toggle {
  display: none;
}

/* Menu Icon */
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .header-logo {
    position: absolute;
    left: 20px;
  }

  header {
    height: 80px;
    padding: 15px 50px;
  }

  /* Show Menu Icon */
  .menu-icon {
    display: block;
  }

  /* Hide Navigation Links Initially */
  .header-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 0;
    background: #012c60;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .header-links h1 {
    margin: 10px 0;
  }

  /* Show Dropdown When Checkbox is Checked */
  .menu-toggle:checked + .menu-icon + .header-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: -20px;
  }
} /*trending text*/
/* Ensure the link container is relative and inline-block */
.trending-link a {
  position: relative;
  display: inline-block;
  padding-right: 0; /* no extra padding needed */
  white-space: nowrap; /* prevents text wrap which could break badge */
}

/* Trending badge styling */
.trending-label {
  position: absolute;
  bottom: -18px;
  right: 0px;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #012c60;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 12px rgba(255, 204, 51, 0.6);
  pointer-events: none;
  user-select: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  transform: rotate(0deg);
  overflow: hidden;

  /* pulse animation */
  animation: pulse 1.5s infinite;
}

/* hover pop effect */
.trending-label:hover {
  transform: rotate(0deg) scale(1.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 0 16px rgba(255, 204, 51, 0.8);
}

/* ribbon pseudo-elements for 3D ribbon effect */
.trending-label::before,
.trending-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 100%;
  background: #ffb347;
  transform: skewX(-20deg);
  z-index: -1;
}

.trending-label::before {
  left: -6px;
}

.trending-label::after {
  right: -6px;
}

/* pulse animation keyframes */
@keyframes pulse {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 12px rgba(255, 204, 51, 0.6);
  }
  50% {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 204, 51, 0.9);
  }
}

/* responsive tweaks */
@media screen and (max-width: 480px) {
  .trending-label {
    font-size: 0.6rem;
    bottom: -15px;
    right: 0px;
    padding: 2px 6px;
  }
}

/* Image Section */
.image-container {
  position: relative;
  width: 100%;
  height: 440px; /* Default height for large screens */
  margin-top: 90px;
  overflow: hidden;
}

/* Image Animation */
.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.5;

  animation: imageFade 10s infinite; /* 5 images, 5s each */
}

/* Keyframes to cycle through 2 images */
@keyframes imageFade {
  0% {
    background-image: url('https://dxk1acp76n912.cloudfront.net/images/homepage/article.png');
  }
  50% {
    background-image: url('https://dxk1acp76n912.cloudfront.net/images/driver-header.jpg');
  }
  100% {
    background-image: url('https://dxk1acp76n912.cloudfront.net/images/homepage/article.png');
  } /* Loops back */
}

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

.overlay h2 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 35px;
  font-family: 'Lato', sans-serif;
  color: #012c60;
  text-shadow: 0 0 15px #e2ae3f, 0 0 30px #ffffff;
}

.book-tour-btn {
  background-color: #012c60;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  font-size: 1.2rem; /* 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: 2.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.5rem; /* Adjust font size for smaller devices */
  }

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

/*whatsapp button section-----------------------------------*/

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

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

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

/*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;
  margin-top: 20px;
  background-color: #f0f0f0;
}

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

/*drivers--------------------------------------------------------------*/
@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: -30px;
}

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

.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: 10px 20px; /* 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;
  }
}
