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


.fullscreen-slideshow {
  position: relative;
  width: 100vw;
  height: 65vh;
  overflow: hidden;
  background: black;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 65vh;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .fullscreen-slideshow {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .fullscreen-slideshow {
    height: 50vh;
  }
}

.leopard-card {
  position: absolute;
  top: 56%;
  left: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px;
  color: white;
  width: 90vw;
  max-width: 1300px;
  height: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translate(-50%, -50%) translateY(20px);
  animation: fadeInCenter 1.5s ease forwards;
  animation-delay: 1s;
  gap: 20px;
  flex-wrap: wrap;
}

@keyframes fadeInCenter {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}

.card-content {
  flex: 1;
  padding-right: 30px;
  min-width: 280px;
}

.card-content h2 {
  margin: 0;
  font-size: 2.5em;
}

.card-content p {
  margin: 10px 0 0;
  font-size: 1.2em;
}

.card-image img {
  height: 220px;
  width: auto;
  border-radius: 12px;
}

/* WhatsApp Button Container */
.home-btn-container {
  margin-top: 20px;
}

.home-book-now-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #012c60;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3rem;
  transition: background-color 0.3s ease;
  margin-top: 32px;
}

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

@media (max-width: 768px) {
  .leopard-card {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-align: center;
    gap: 0px;
    margin-top: 17px;
  }

  .card-content {
    padding-right: 0;
    text-align: center;
  }

  .card-content h2 {
    font-size: 1.35em;
  }

  .card-content p {
    font-size: 1em;
  }

  .card-image {
    margin-top: 20px;
  }

  .card-image img {
    height: 115px;
    width: 250px;
    margin-top: -8px;
  }

  .home-book-now-btn {
    font-size: 1.1rem;
    padding: 10px 20px;
    margin-top: 0px;
  }
}

@media (max-width: 425px) {
  .leopard-card {
    width: 85vw;
    padding: 16px;
    gap: 0px;
    margin-top: 13px;
  }

  .card-content h2 {
    font-size: 1.2em;
  }

  .card-content p {
    font-size: 0.8em;
  }

  .card-image img {
    height: 100px;
  }

  .home-book-now-btn {
    width: 80%;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .leopard-card {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 25px;
    gap: 10px;
    margin-top: 10px;
  }

  .card-content {
    flex: 1 1 100%;
    text-align: center;
    padding-right: 0;
  }

  .card-content h2 {
    font-size: 2em;
  }

  .card-content p {
    font-size: 1.1em;
  }

  .card-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .card-image img {
    height: 180px;
  }

  .home-book-now-btn {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}

@media (min-width: 2560px) {
  .leopard-card {
    max-width: 5000px;
    padding: 50px 80px;
    gap: 50px;
    height: 800px;
  }

  .card-content h2 {
    font-size: 5em;
  }

  .card-content p {
    font-size: 3em;
  }

  .card-image img {
    height: 400px;
  }

  .home-book-now-btn {
    font-size: 2rem;
    padding: 16px 32px;
  }
}

/*--------------------------------------------------------------------*/
.less-taxi-intro {
  display: flex;
  flex-wrap: wrap;
  background: #eefedc;
  padding: 25px 45px;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.intro-images-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  max-width: 460px;
  margin-top: 20px;
  animation: slideUp 1.2s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0; /* Initially hidden */
}

/* Common style */
.intro-images-row img {
  width: 200px;
  height: 350px;
  object-fit: cover;
  border-radius: 0px;
  margin-left: 20px;
}

/* Specific style for the first image */
.intro-images-row img:nth-child(1) {
  /* Add custom styles if needed */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Specific style for the second image */
.intro-images-row img:nth-child(2) {
  /* Add custom styles if needed */
  filter: brightness(0.95);
  margin-top: 35px;
}

.intro-text {
  max-width: 800px;
  color: #333;
  margin-right: 20px;
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0; /* Initially hidden */
}

.intro-text h2 {
  font-size: 1.8rem;
  color: #2b572c;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.intro-text p {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 1.1rem;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .less-taxi-intro {
    flex-direction: column;
    padding: 30px 20px;
  }

  .intro-text {
    margin-right: 0;
    text-align: center;
  }

  .intro-images-row {
    justify-content: center;
    margin-top: 0;
  }

  .intro-images-row img {
    margin-left: 0;
  }

  .intro-images-row img:nth-child(2) {
    margin-top: 15px; /* reduce stagger on smaller screens */
  }
}

@media (max-width: 600px) {
  .intro-images-row {
    flex-direction: column;
    align-items: center;
  }

  .intro-images-row img {
    width: 90vw;
    height: auto;
  }

  .intro-text h2 {
    font-size: 1.5rem;
  }

  .intro-text p {
    font-size: 1rem;
  }
}
@media (min-width: 425px) and (max-width: 600px) {
  .less-taxi-intro {
    flex-direction: column;
    padding: 15px;
    gap: 30px;
    text-align: center;
  }

  .intro-text {
    margin-right: 0;
    max-width: 100%;
  }

  .intro-text h2 {
    font-size: 1.5rem;
  }

  .intro-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .intro-images-row {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    flex-wrap: wrap;
  }

  .intro-images-row img {
    width: 45%;
    height: auto;
    margin-left: 0;
    border-radius: 0px;
  }

  .intro-images-row img:nth-child(2) {
    margin-top: 40px;
    filter: brightness(0.95);
    width: 45%;
    height: 20%;
  }
}

@media (max-width: 424px) {
  .less-taxi-intro {
    flex-direction: column;
    padding: 15px;
    gap: 30px;
    text-align: center;
  }

  .intro-text {
    margin-right: 0;
    max-width: 100%;
  }

  .intro-text h2 {
    font-size: 1.5rem;
  }

  .intro-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .intro-images-row {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    flex-wrap: wrap;
  }

  .intro-images-row img {
    width: 45%;
    height: auto;
    margin-left: 0;
    border-radius: 0px;
  }

  .intro-images-row img:nth-child(2) {
    margin-top: 40px;
    filter: brightness(0.95);
    width: 45%;
    height: 20%;
  }
}

.safari-cards-section {
  background: linear-gradient(to bottom right, #f9fff8, #e1f5db);
  padding: 30px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}
.section-title {
  font-size: 2.4em;
  margin-bottom: 30px;
  color: #2b572c;
  font-weight: 600;
  position: relative;
  opacity: 0;
  animation: slideUp 0.9s ease-out forwards;
  animation-delay: 0.2s;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #4caf50;
  margin: 12px auto 0;
  border-radius: 2px;
  animation: growLine 1s ease-out forwards;
  animation-delay: 1s;
  opacity: 0;
}

@keyframes growLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

.safari-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: auto;
}

.safari-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #ffffff;
}

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

.safari-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  transition: transform 0.4s ease;
}

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

.card-info {
  padding: 20px;
  transition: opacity 0.4s ease;
}

.card-info h3 {
  margin-bottom: 10px;
  color: #086920;
  font-size: 1.3em;
}

.card-info p strong {
  margin: 4px 0;
  font-size: 1em;
  color: #303130;
}

.card-info p {
  margin: 4px 0;
  font-size: 1em;
  color: #000000;
}

.card-hover {
  background: rgb(220, 248, 220);
  padding: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-size: 1em;
  line-height: 1.4em;
  font-weight: 600;
  color: #2d2d2d;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.safari-card:hover .card-hover {
  transform: translateY(0);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2em;
  }

  .card-info h3 {
    font-size: 1.15em;
  }

  .card-info p {
    font-size: 0.9em;
  }

  .card-hover {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8em;
  }

  .safari-card img {
    height: 180px;
  }

  .card-info {
    padding: 16px;
  }

  .card-info h3 {
    font-size: 1.1em;
  }

  .card-info p {
    font-size: 0.85em;
  }

  .card-hover {
    font-size: 0.85em;
  }
}

.yala-safari-info {
  padding: 50px 20px;
  font-family: "Segoe UI", sans-serif;
}

.section-heading {
  text-align: center;
  color: #2b572c;
  font-size: 2.2em;
  margin-bottom: 30px;
}

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

.info-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 320px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card i {
  color: #2b572c;
  margin-bottom: 15px;
}

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

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

/*----------------------------------------------------------------------------------------------------*/
.yala-safari-info-section {
  padding: 60px 20px;
  background: #f6fff5
    url("https://www.transparenttextures.com/patterns/paper-fibers.png"); /* subtle background texture */
  font-family: "Segoe UI", sans-serif;
}

.yala-safari-title {
  text-align: center;
  font-size: 2.4rem;
  color: #2e522f;
  margin-bottom: 40px;
  font-weight: 700;
  margin-top: -30px;
}

.yala-safari-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  justify-content: center;
}

.yala-safari-card {
  background-color: #ffffff;
  border-left: 8px solid #78ab46;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.yala-safari-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 1.8rem;
  color: #2e6c2f;
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.2rem;
  color: #2e522f;
  margin-bottom: 8px;
  font-weight: 600;
}

.card-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

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

.inquiry-container 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%;
  }
}

/*----------------------------------------------------------------------------------------------------------------*/

/* Full-width background image */
.why-background-wrapper {
  background: url("https://dxk1acp76n912.cloudfront.net/images/yalasafari/elephants backdrop.png")
    no-repeat center center;
  background-size: cover;
  padding: 0px 0;
}

.why-less-taxi {
  background: #f3fff2;
  padding: 30px 20px;
  font-family: "Segoe UI", sans-serif;
  max-width: 1000px;
  margin: auto;
}

.why-heading {
  font-size: 2.4em;
  color: #2b5f2f;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideIn 0.6s ease forwards;
}

.why-feature:nth-child(2) {
  animation-delay: 0.1s;
}
.why-feature:nth-child(3) {
  animation-delay: 0.2s;
}
.why-feature:nth-child(4) {
  animation-delay: 0.3s;
}
.why-feature:nth-child(5) {
  animation-delay: 0.4s;
}
.why-feature:nth-child(6) {
  animation-delay: 0.5s;
}

.icon-box {
  min-width: 60px;
  height: 60px;
  background-color: #d6f5d1;
  color: #2f732c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7em;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.text-box h3 {
  margin: 0 0 10px;
  font-size: 1.3em;
  color: #204c22;
}

.text-box p {
  margin: 0;
  font-size: 0.95em;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .why-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .icon-box {
    margin-bottom: 15px;
  }
}

/* Animation */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Tablet & Below */
@media (max-width: 768px) {
  .why-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .icon-box {
    margin-bottom: 15px;
  }

  .text-box h3 {
    font-size: 1.1em;
  }

  .text-box p {
    font-size: 0.9em;
  }
}

/* Small Mobile Screens */
@media (max-width: 425px) {
  .why-less-taxi {
    padding: 20px 15px;
  }

  .why-heading {
    font-size: 1.8rem;
  }

  .icon-box {
    min-width: 50px;
    height: 50px;
    font-size: 1.4em;
  }

  .text-box h3 {
    font-size: 1em;
  }

  .text-box p {
    font-size: 0.85em;
  }
}

/* Animation */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*----------------------------------------------------------------------------------------------*/
.yala-cta-section {
  background: linear-gradient(135deg, #e9f9ea, #c2ed86);
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 60px 20px;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(38, 72, 0, 0.3);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  width: 100vw; /* Full viewport width */
  position: relative; /* Avoid layout issues */
}

.yala-cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.yala-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 5px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 220px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #a8d063; /* lighter green */
  color: #103413;
  border: 2px solid #a8d063;
}

.btn-primary:hover {
  background: #86b841;
  color: white;
  box-shadow: 0 8px 20px rgba(134, 184, 65, 0.7);
}

/* Responsive */
@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
  }
  .btn {
    min-width: 100%;
  }
}

/*--------------------------------------------------------------------------*/

.trip-nearby-section {
  background: linear-gradient(135deg, #f2fff2, #dbfadb);
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #2b572c;
  text-align: center;
}

.trip-nearby-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #10582f;
}

.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.city-circle {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 12px rgba(38, 92, 26, 0.3);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Overlay with semi-transparent background for text */
.city-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
  border-radius: 50%;
  z-index: 1;
}

.city-name {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 12px;
  z-index: 2;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  user-select: none;
  white-space: nowrap;
  margin-bottom: 30px;
}

.city-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(38, 92, 26, 0.6);
}

.city-circle:hover::after {
  background: rgba(0, 0, 0, 0.6);
}

/* Example city images — replace URLs with your own city images */

.city-thissamaharama {
  background-image: url("https://dxk1acp76n912.cloudfront.net/images/yalasafari/Thissamaharamaya.png");
}

.city-kataragama {
  background-image: url("https://dxk1acp76n912.cloudfront.net/images/yalasafari/kataragama.png");
}

.city-kirinda {
  background-image: url("https://dxk1acp76n912.cloudfront.net/images/yalasafari/kirinda.png");
}

.city-palatupana {
  background-image: url("https://dxk1acp76n912.cloudfront.net/images/yalasafari/palatupana.png");
}

/* Hotel title styling */
.hotel-title h2 {
  font-size: 2.4rem;
  color: #10582f;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  text-align: center;
  margin: 30px 0;
  margin-top: -25px;
}

/* Flip Box Container */
.flip-box-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: -15px;
}

/* Flip Box Styling */
.flip-box {
  width: 220px;
  height: 320px;
  perspective: 1000px;
  margin: 20px 10px;
  position: relative;
  overflow: hidden; /* Prevents content from spilling */
}

/* Inner Flip Area */
.flip-box-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  position: relative;
}

/* On hover, flip the inner box */
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

/* Front and Back sides */
.flip-box-front,
.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

/* Front Side */
.flip-box-front {
  background-color: #fff;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

/* Background hotel image */
.hotel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Circular logo */
.hotel-logo {
  position: absolute;
  top: 40px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hotel-logo img {
  width: 80px;
  height: auto;
}

/* Hotel name text */
.hotel-name {
  position: absolute;
  top: 180px;
  font-size: 1.3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  letter-spacing: 2px;
  color: #000000;
  z-index: 2;
  text-transform: uppercase;
}

/* Back Side */
.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);
  z-index: 1;
}

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

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

.excursions-cards-section {
  max-width: 1000px;
  margin: 5px auto;
  padding: 0 20px;
  font-family: "Segoe UI", sans-serif;
}

.excursions-heading {
  text-align: center;
  font-size: 2rem;
  color: #2b572c;
  margin-bottom: 30px;
  font-weight: bold;
}

.excursion-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.excursion-card {
  background: #f2fef2;
  border: 1px solid #d2efd6;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.excursion-icon {
  font-size: 2.5rem;
  color: #2b572c;
  margin-bottom: 15px;
}

.excursion-content h3 {
  font-size: 1.2rem;
  color: #1f3f2b;
  margin-bottom: 10px;
}

.excursion-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

.excursion-link {
  display: inline-block;
  text-decoration: none;
  padding: 8px 16px;
  background-color: #007c4d;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.excursion-link:hover {
  background-color: #005e38;
}

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

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

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
  .yala-benefits {
    padding: 40px 10px; /* Adjust padding for smaller screens */
  }

  .benefits-container {
    justify-content: space-around; /* More evenly distributed cards on mobile */
  }

  .benefit-card {
    width: 90%; /* Allow the cards to take more width on mobile */
    margin-bottom: 20px; /* Add space between cards on mobile */
    padding: 15px; /* Adjust padding for better appearance */
  }
  .benefits-title {
    font-size: 1.8rem; /* Slightly smaller font size for mobile */
  }

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

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