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

.header-image {
  position: relative;
  width: 100%;
  height: 68vh;
  background-image: url("https://dxk1acp76n912.cloudfront.net/images/seat-reservation/seat-header.jpeg"); /* replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  object-fit: cover;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.48); /* dark overlay */
}

.header-content {
  position: relative;
  z-index: 2;
}

.header-content h1 {
  font-size: 3.1em;
  margin: 0;
  font-weight: 800;
}

.header-content p {
  font-size: 2.2em;
  margin: 15px 0 30px;
  font-weight: bold;
  line-height: 0.8;
}

.header-content p strong {
  font-size: 1em;
  font-weight: 800;
  color: #fee4e4;
  z-index: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 4px 4px 12px rgba(0, 0, 0, 0.6),
    0px 0px 20px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.8));
}

.header-content a {
  padding: 15px 45px;
  background-color: #012c60;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
  font-size: 1.6rem;
  margin-top: 10px !important;
}

.header-content a:hover {
  background-color: #e2ae3f;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .header-content h1 {
    font-size: 2.5em;
  }

  .header-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
  }

  .header-content a {
    padding: 12px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .header-image {
    height: 50vh;
    min-height: 250px;
    padding: 0 15px;
  }

  .header-content h1 {
    font-size: 2em;
  }

  .header-content p {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .header-content a {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header-image {
    height: 40vh;
    min-height: 200px;
    padding: 0 10px;
  }

  .header-content h1 {
    font-size: 1.6em;
  }

  .header-content p {
    font-size: 0.9em;
    margin-bottom: 25px;
  }

  .header-content a {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
/*--------------------------------------------------------------------*/

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

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

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

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

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

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

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

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

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

.popup-text p {
  font-size: 1rem;
  color: #00011d;
  text-align: center;
  margin-top: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.popup-text strong {
  font-family: 900;
  color: #d32f2f;
  font-size: 1.3rem;
}

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

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

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

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

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

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

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

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

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

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

.less-taxi-intro {
  display: flex;
  flex-wrap: wrap;
  background: #effffb;
  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: #012c60;
  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%;
  }
}

.perahera-highlight {
  background: #fff
    url(https://dxk1acp76n912.cloudfront.net/images/homepage/watermarkwhite.png)
    no-repeat center center;
  background-position: center;
  padding: 50px 20px;
  position: relative;
  color: #fff;
  text-align: left;
  font-family: "Segoe UI", sans-serif;
}

.perahera-overlay {
  background: rgb(0 0 0 / 46%); /* Dark overlay */
  padding: 40px;
  border-radius: 12px;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.perahera-content h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffc107;
  text-shadow: 1px 1px 4px #000;
}

.perahera-content .intro-line {
  font-size: 1.4em;
  margin-bottom: 30px;
  font-style: italic;
}

.perahera-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.perahera-points li {
  font-size: 1.3em;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.perahera-points i {
  font-size: 1.4em;
  color: #ffc107;
  margin-top: 4px;
}

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

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

/*hotel location base*/
.form-group {
  position: relative;
  max-width: 500px;
  margin: auto;
}

#locationInput {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.autocomplete-box {
  position: absolute;
  background: rgb(237, 237, 237);
  border-top: none;
  z-index: 1000;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
}

.autocomplete-item {
  padding: 8px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.autocomplete-item:hover {
  background-color: #eef5ff;
}

.hotel-results {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 210px;
  overflow-y: auto;
  overflow-x: hidden; /* ✅ Prevents horizontal scroll */
  margin-top: -15px;
  margin-right: 55px;
}

.hotel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.hotel-card:hover {
  background-color: #f0f8ff;
}

.hotel-name {
  font-weight: bold;
  color: #012c60;
  max-width: 100%;
  white-space: nowrap;
  font-size: 1rem;
  text-transform: uppercase;
  margin-right: -205px; /* ✅ Don't use negative margins */
}

.hotel-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #0d6efd;
  flex-shrink: 0; /* ✅ prevents checkbox from shrinking */
  pointer-events: none;
  margin-right: -100px;
}

/*guest and room*/
/* General Styling for the form group */
.form-group {
  margin-bottom: 20px;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* A more modern font stack */
  position: relative; /* Important for absolute positioning of dropdown */
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600; /* Slightly bolder */
  color: #2c3e50; /* Darker, more sophisticated text color */
}

/* Style for the main input field */
#guestInput {
  width: 100%;
  padding: 10px 18px; /* Slightly more padding */
  border: 1px solid #c9d0d6; /* Softer border color */
  border-radius: 10px; /* More rounded corners */
  cursor: pointer;
  font-size: 17px; /* Slightly larger font */
  color: #34495e;

  outline: none; /* Remove default focus outline */
}

/* Dropdown Container */
.guest-dropdown {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #ffffff; /* Clean white background */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Deeper shadow */
  padding: 20px; /* More generous padding */
  margin-top: 10px;
  position: absolute;
  z-index: 1000;
  min-width: 300px; /* Slightly wider */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease; /* Animation for show/hide */
}

.guest-dropdown.hidden {
  opacity: 0;
  transform: translateY(-10px); /* Slide up effect when hidden */
  pointer-events: none; /* Disable interactions when hidden */
}

/* Individual Guest Rows (Adults, Children, Rooms) */
.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px; /* More space between rows */
  padding-bottom: 5px;
  border-bottom: 1px solid #f0f0f0; /* Light separator line */
}

.guest-row:last-of-type {
  border-bottom: none; /* No border for the last row */
  margin-bottom: 0;
}

.guest-row span:first-child {
  /* Targets the labels (Adults, Children, Rooms) */
  font-size: 16px;
  color: #34495e;
  font-weight: 500;
  flex-grow: 1;
}

/* Increment/Decrement Buttons */
.guest-row button {
  background-color: #e9ecef; /* Lighter grey for buttons */
  color: #495057;
  border: none; /* No border */
  border-radius: 50%;
  width: 34px; /* Slightly larger buttons */
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; /* Larger +/- signs */
  line-height: 1; /* Adjust line height for better centering */
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  margin: 0 10px; /* More space around buttons */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle button shadow */
}

.guest-row button:hover {
  background-color: #012c60; /* Primary blue on hover */
  color: #ffffff; /* White text on hover */
  transform: translateY(-1px); /* Slight lift */
}

.guest-row button:active {
  background-color: #e9ecef;
  transform: translateY(0); /* Press effect */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); /* Inset shadow for pressed state */
}

/* Count Display */
.guest-row span[id$="Count"] {
  font-weight: 700; /* Bolder count */
  font-size: 20px; /* Larger count font */
  min-width: 30px;
  text-align: center;
  color: #007bff; /* Primary color for the count */
}

/* Child Ages Section */
#tempChildAges {
  margin-top: 15px; /* More space above */
  padding-top: 15px;
  border-top: 1px solid #f0f0f0; /* Solid, light separator */
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* Slightly more gap */
  align-items: center; /* Vertically align label and selects */
}

#tempChildAges label {
  width: 100%;
  margin-bottom: 8px; /* More space below label */
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

#tempChildAges select {
  padding: 10px 12px; /* More padding in selects */
  border: 1px solid #d0d7de;
  border-radius: 6px; /* Nicely rounded selects */
  font-size: 15px;
  background-color: #fcfdfe; /* Very light background */
  cursor: pointer;
  flex: 1;
  min-width: 120px; /* Adequate min-width */
  appearance: none; /* Remove default select arrow */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23495057" d="M7.646 10.854l-3.5-3.5a.5.5 0 0 1 .708-.708L8 9.793l3.146-3.147a.5.5 0 0 1 .708.708l-3.5 3.5a.5.5 0 0 1-.708 0z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#tempChildAges select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Done Button */
.done-btn {
  width: 100%;
  padding: 10px 25px; /* Larger padding */
  background-color: #012c60;
  color: white;
  border: none;
  border-radius: 10px; /* More rounded */
  font-size: 17px; /* Slightly larger text */
  font-weight: 600; /* Semi-bold */
  cursor: pointer;
  margin-top: 25px; /* More space above */
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3); /* Deeper shadow */
}

.done-btn:hover {
  background-color: #e2ae3f;
  transform: translateY(-2px); /* More pronounced lift */
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.done-btn:active {
  background-color: #004085;
  transform: translateY(0);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2); /* Inset shadow for pressed state */
}

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

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

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

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

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

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

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

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

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

/* Shared form-group styling */
/* Container styling */
.form-group {
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

/* Label styling */
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

/* intl-tel-input field */
#whatsapp-number {
  width: 100%;
  max-width: 500px;
  padding: 10px 12px 10px 58px; /* extra left-padding for flag & code */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
}

/* intl-tel-input container tweaks */
.iti {
  width: 100%;
  max-width: 500px;
}

/* dropdown list customization (optional) */
.iti__country-list {
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

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

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

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

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

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

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

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

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

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

  #whatsapp-number {
    width: 350px;
  }
}
/*inquiry form new features------------------------------------------------------------------------------*/

.form-group {
  margin-bottom: 20px;
  font-family: "Segoe UI", sans-serif;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #012c60;
  font-size: 1.1em;
}

.form-group select {
  width: 100%;
  padding: 12px 15px;
  font-size: 1em;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  color: #333;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  appearance: none; /* Remove default dropdown arrow for styling */
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23012c60" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
}

.form-group select:focus {
  border-color: #012c60;
  box-shadow: 0 0 0 3px rgba(1, 44, 96, 0.1);
  background-color: #fff;
}
/*-------------------------------------------------------------------------------------------------*/

.closing-line {
  font-size: 1.3em;
  background: rgba(255, 193, 7, 0.1);
  padding: 15px;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
}

.reserve-section {
  background-color: #6899b51c;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #333;
  margin-top: 20px;
}

.reserve-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.reserve-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #012c60;
  margin-top: -35px;
}

.reserve-section h2 span {
  color: #e2ae3f;
  font-weight: bold;
}

.reserve-section .intro {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #555;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
}

.feature-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 2.5em;
  color: #e67e22;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #000;
}

.feature-box p {
  font-size: 1em;
  color: #555;
}
/* Responsive Adjustments */
@media (max-width: 1024px) {
  .perahera-content h2 {
    font-size: 2.2em;
  }

  .reserve-section h2 {
    font-size: 2.2em;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .perahera-overlay {
    padding: 30px 20px;
  }

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

  .perahera-content .intro-line,
  .perahera-points li,
  .closing-line {
    font-size: 1.1em;
  }

  .perahera-points {
    gap: 15px;
  }

  .reserve-section .intro {
    font-size: 1.1em;
  }

  .feature-box {
    padding: 20px;
  }

  .feature-box i {
    font-size: 2.2em;
  }

  .feature-box h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .perahera-content h2 {
    font-size: 1.6em;
    text-align: center;
  }

  .perahera-content .intro-line {
    text-align: center;
    font-size: 1em;
  }

  .perahera-points li {
    flex-direction: row;
    font-size: 1em;
    gap: 15px;
  }

  .reserve-section h2 {
    font-size: 1.8em;
    text-align: center;
  }

  .reserve-section .intro {
    font-size: 1em;
    padding: 0 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-box {
    padding: 18px;
  }

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

  .feature-box p {
    font-size: 0.95em;
  }

  .feature-box i {
    font-size: 2em;
  }

  .closing-line {
    font-size: 1em;
  }
}

.cta-booknow {
  background: linear-gradient(135deg, #86aabf, #fafcff);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

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

.cta-booknow h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #012c60;
}

.cta-booknow h2 i {
  color: #e67e22;
  margin-right: 10px;
}

.cta-text {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #000000;
}

.cta-text strong {
  color: #005fa0;
  font-weight: bold;
  font-size: 1.5rem;
}

.cta-btn {
  display: inline-block;
  background-color: #012c60;
  color: #ffffff;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 1.4em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn i {
  margin-right: 8px;
}

.cta-btn:hover {
  background-color: #e2ae3f;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cta-booknow h2 {
    font-size: 1.8em;
  }

  .cta-text {
    font-size: 1.05em;
  }

  .cta-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .cta-booknow h2 {
    font-size: 1.6em;
  }

  .cta-text {
    font-size: 1em;
  }

  .cta-btn {
    font-size: 0.95em;
    padding: 10px 20px;
  }
}

/*-------------------------------------------------------------------------------------------------------*/
/* SECTION STYLES */
.tours-section {
  padding: 40px 35px;
  width: 100%;
  margin: auto;
  font-family: "Segoe UI", sans-serif;
  background-color: #e6f3fe;
  margin-top: 20px;
}

.section-header {
  text-align: left;
}

.section-header .subtitle {
  color: #009688;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin: 10px 0;
  color: #e2ae3f;
}

.section-header h2 .highlight {
  color: #012c60;
}

.section-header .description {
  font-size: 1rem;
  color: #444;
  max-width: 1800px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: left;
}

.tour-image-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tour-image-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: default;
}

.tour-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-wrapper {
  cursor: pointer;
}

.button-wrapper {
  text-align: right;
  margin-top: -15px;
  margin-right: -8px;
}

.more-info-btn {
  background: #012c60;
  color: white;
  padding: 5px 16px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.more-info-btn:hover {
  background: #e2ae3f;
}

.tour-details {
  display: none;
  padding: 20px;
  background-color: #fdfdfd;
}

.tour-image-card.active .tour-details {
  display: block;
}

/* Tour Title */
.tour-details h3 {
  font-size: 24px;
  color: #012c60;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
  position: relative;
}

.tour-details h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e2ae3f;
  margin: 10px auto 0;
  border-radius: 5px;
}

/*1 card sub*/
.vip-subtitle {
  font-size: 17px;
  color: #444;
  font-style: italic;
  margin-bottom: 18px;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
}

.vip-highlights {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
  color: #4e4e4e;
}

.vip-highlights li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.vip-highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6600;
  font-weight: bold;
  font-size: 14px;
  top: 1px;
}

.vip-price {
  color: #00796b;
  font-weight: 700;
  font-size: 18px;
}

.vip-price s {
  color: #d32f2f;
  font-weight: 700;
  font-size: 18px;
}

.early-bird {
  background-color: #ffe082;
  padding: 3px 8px;
  font-size: 15px;
  border-radius: 6px;
  margin-left: 10px;
  color: #012c60;
  font-weight: 600;
  box-shadow: 0 0 5px #e2ae3f;
  display: inline-block;
}

/*2 card sub*/
.ticket-highlight {
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ticket-highlight strong {
  color: #e67e22; /* warm accent */
}

.ticket-subtext {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
  margin-bottom: 16px;
}

.ticket-pricing p {
  margin: 6px 0;
  font-weight: 600;
  color: #444;
}

.price {
  color: #00796b;
  font-weight: 700;
  font-size: 1.1rem;
}

.price s {
  color: #d32f2f;
}

.early-bird2 {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #012c60 !important;
  background: #ffe082;
  border-radius: 6px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.early-bird strong {
  text-decoration: underline;
}

/* Accordion Item */
.accordion__item {
  border: none;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Accordion Header */
.accordion-header {
  background-color: #eef5ff;
  padding: 5px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  border-left: 5px solid #007a5e;
}

.accordion-header:hover {
  color: #00877d;
}

/* Icon rotation */
.accordion__item.active .icon {
  transform: rotate(45deg);
}
.icon {
  transition: transform 0.3s ease;
  font-size: 22px;
  font-weight: bold;
}

/* Accordion Body */
.accordion-body {
  display: none;
  padding: 10px 20px;
  background-color: #fff;
  animation: fadeIn 0.3s ease-in-out;
}

.accordion__item.active .accordion-body {
  display: block;
}

/* Subsections (4hr, 6hr, etc.) */
.accordion-body__contents {
  margin-bottom: 20px;
}

.accordion-body__contents h4 {
  font-size: 17px;
  color: #012c60;
  margin-bottom: 10px;
}

/* Locations */
.accordion-body__contents ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.accordion-body__contents li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
  position: relative;
  transition: color 0.3s;
}

.accordion-body__contents li::before {
  margin-right: 8px;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background-color: #012c60;
  color: white;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 0px;
  transition: background 0.3s;
  font-size: 0.8rem;
}

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

/* Add Scroll to Tour Details if long */
.tour-details {
  max-height: 500px;
  overflow-y: auto;
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.tour-details::-webkit-scrollbar {
  width: 6px;
}

.tour-details::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.all-tours-btn-container {
  text-align: center;
  margin-top: 30px;
}

.all-tours-btn {
  display: inline-block;
  background-color: #52749b; /* LESS TAXI green or your brand color */
  color: white;
  padding: 8px 50px;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  box-shadow: 0 6px 12px rgba(32, 112, 74, 0.4);
}

.all-tours-btn:hover {
  background-color: #8e9cb2;
  color: #000000;
  box-shadow: 0 8px 16px rgba(20, 86, 50, 0.5);
}

/* Small Mobile Devices (Portrait, less than 576px) */
@media (max-width: 575.98px) {
  .section-header h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .section-header .description {
    font-size: 0.95rem;
    padding: 0 10px;
    text-align: center;
  }

  .tour-image-card {
    width: 100%;
    margin: 10px 0;
  }

  .tour-details h3 {
    font-size: 22px;
  }

  .accordion-header {
    font-size: 16px;
    padding: 12px 16px;
  }

  .accordion-body {
    padding: 10px 16px;
  }

  .accordion-body__contents h4 {
    font-size: 16px;
  }

  .accordion-body__contents li {
    font-size: 15px;
  }

  .all-tours-btn {
    padding: 8px 30px;
    font-size: 0.95rem;
  }
}

/* Medium Mobile Devices (576px - 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-header h2 {
    font-size: 2rem;
    text-align: center;
  }

  .section-header .description {
    font-size: 1rem;
    padding: 0 20px;
    text-align: center;
  }

  .tour-image-card {
    width: 100%;
    margin: 15px 0;
  }

  .tour-details h3 {
    font-size: 24px;
  }

  .accordion-header {
    font-size: 17px;
  }

  .all-tours-btn {
    padding: 8px 40px;
    font-size: 1rem;
  }
}

/* Tablets (768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .tour-image-card {
    width: 48%;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header .description {
    font-size: 1rem;
    text-align: center;
  }
}

/* Laptops (992px - 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .tour-image-card {
    width: 30%;
  }

  .section-header h2 {
    font-size: 2.3rem;
  }

  .section-header .description {
    font-size: 1.05rem;
  }
}

/* Large Screens / Desktops (1200px and up) */
@media (min-width: 1200px) {
  .tour-image-card {
    width: 30%;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .section-header .description {
    font-size: 1.1rem;
  }
}

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

/*hotel featured section*/

.featured-hotels {
  padding: 40px 20px;
  background-color: #f2f8fd;
  text-align: center;
  margin-top: 20px;
}

.section-title-hotel {
  font-size: 34px;
  margin-bottom: 20px;
  color: #012c60;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* Hide scrollbars */
}

.carousel {
  display: flex;
  gap: 20px;
  overflow: hidden; /* prevent user scrolling */
  scroll-behavior: smooth;
  padding: 10px;
}

.single-hotel-card {
  min-width: 300px;
  max-width: 300px;
  flex: 0 0 auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  font-size: 28px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  padding: 3px 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

@media (max-width: 768px) {
  .arrow {
    font-size: 24px;
    padding: 3px 10px;
  }

  .single-hotel-card {
    min-width: 260px;
    max-width: 260px;
  }
}

/*--------------------------------------------------------------------------------------*/
.visit-kandy-section {
  background: #f5f5f5;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #333;
}

.visit-kandy-header h2 {
  font-size: 2.5em;
  text-align: center;
  color: #012c60;
  margin-bottom: 40px;
}

.visit-kandy-header span {
  color: #e2ae3f;
}

.perahera-photo-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.perahera-photo-gallery img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.perahera-photo-gallery img:hover {
  transform: scale(1.02);
}

.offer-section h3 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #012c60;
}

.offer-section h3 i {
  color: #e67e22;
  margin-right: 10px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.offer-item {
  background: #dcdcdc;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.offer-item:hover {
  transform: translateY(-5px);
}

.offer-item i {
  font-size: 2.2em;
  color: #e67e22;
  margin-bottom: 15px;
}

.offer-item h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #012c60;
}

.offer-item p {
  font-size: 1em;
  color: #555;
}
@media (max-width: 768px) {
  .visit-kandy-header h2 {
    font-size: 2em;
  }

  .offer-section h3 {
    font-size: 1.6em;
  }

  .offer-item h4 {
    font-size: 1.1em;
  }

  .offer-item p {
    font-size: 0.95em;
  }
}

/* ===== General Section Styling ===== */
.visitor-info {
  max-width: 750px;
  margin: 1rem auto;
  padding: 2rem 2.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.visitor-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.visitor-info .intro-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #555;
  text-align: center;
}

.visitor-info .guidelines-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.8rem;
}

.visitor-info .guidelines-list li {
  background: #e0f7fa;
  border-left: 5px solid #00796b;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.visitor-info .guidelines-list li:hover {
  background: #b2dfdb;
}

.visitor-info .guidelines-list i {
  color: #00796b;
  font-size: 1.3rem;
  min-width: 24px;
  text-align: center;
}

.visitor-info .you-may-bring {
  background: #dcedc8;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  color: #33691e;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  border: 2px solid #aed581;
}

.visitor-info .you-may-bring i {
  color: #689f38;
  font-size: 1.4rem;
}

/* ===== Transport Info Section ===== */
.transport-services-redesign {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  color: #222;
}
.transport-services-redesign h3 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #012c60;
}

.transport-services-redesign span {
  color: #e2ae3f;
}
.transport-services-redesign p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.transport-cards {
  display: flex;
  justify-content: space-around;
  gap: 18px;
  flex-wrap: nowrap;
}

.transport-card {
  background: #e0f2f1;
  border-radius: 12px;
  padding: 1.5rem 1.3rem;
  width: 260px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.transport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  background: #00796b;
  color: white;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.icon-circle.airport {
  background: #004d40;
}
.icon-circle.hotel {
  background: #00695c;
}
.icon-circle.custom {
  background: #00897b;
}

.transport-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #004d40;
}
.transport-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .transport-cards {
    flex-direction: column;
    align-items: center;
  }
  .transport-card {
    width: 90%;
    margin-bottom: 1.5rem;
  }
}

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

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

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

.whatsapp-image-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.whatsapp-image-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.image-grid a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.image-grid a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/*kandy hotel section*/

.kandy-hotel-section {
  padding: 30px 20px;
  background-color: #ebe5e5;
  text-align: center;
  font-family: Arial, sans-serif;
  margin-top: 25px;
}

.kandy-hotel-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #012c60;
  font-weight: bold;
  font-size: 32px;
}

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

.single-hotel-card {
  width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.hotel-bg {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.card-details {
  padding: 20px;
  background: linear-gradient(to top, rgba(91, 127, 212, 0.8), transparent);
  margin-top: -60px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px; /* Adjust as needed */
}

.card-details h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 50px;
  text-transform: uppercase;
}

.card-details p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.card-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 15px;
}

.reserve-btn {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 14px;
  font-weight: bold;
}

.reserve-btn:hover {
  background-color: #adacde;
}

.view-all-hotels-btn {
  background-color: #012c60;
  color: white;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
}

.view-all-hotels-btn:hover {
  background-color: #e2ae3f;
  transform: scale(1.05);
}

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

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

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

.footer-social a {
  color: white;
}

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

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

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

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

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

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

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

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

/* Responsive adjustments */

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

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

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

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

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

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

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

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

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

  .footer-social a {
    color: white;
  }

  /* Footer Content Adjustments */
  .footer-content {
    font-size: 14px; /* Adjust text size for mobile */
    margin-top: 20px; /* Reduce margin-top */
    line-height: 1.5;
  }
}
