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

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

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #012c60;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* MAIN CONTAINER */
.header-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 45px;
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex: 1;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a:hover {
  color: #cce5ff;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* TRENDING BADGE */
.badge-trending {
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 6px;
}

/* RIGHT BUTTONS */
.right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON BUTTON */
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  width: 20px;
  height: 20px;
}

/* PROFILE BUTTON */
.profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: #012c60;
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

#myAccountLink {
  text-decoration: none;
}

.profile-btn:hover {
  background: #f0f0f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* SEARCH BOX */
.search-box {
  position: absolute;
  top: 75px;
  right: 20px;
  background: white;
  padding: 8px 14px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-box input {
  flex: 1;
  outline: none;
  border: none;
  color: #012c60;
}

.search-box button {
  background: #014f8c;
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
}

/* MOBILE MENU */
.mobile-menu {
  background: #012c60;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  color: white;
  padding: 8px 0;
  text-decoration: none;
}

/* ===================== SECOND ROW ===================== */
.second-row {
  background: #012c60;
  text-align: center;
  overflow-x: auto; /* horizontal scroll */
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.second-row::-webkit-scrollbar {
  display: none;
}

.scroll-x {
  display: flex;
  gap: 20px;
  padding: 6px;
}

.scroll-x a {
  color: white;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.scroll-x a:hover {
  color: #ffdf85;
  text-decoration: underline;
}

/* ===================== LOCATION ROW ===================== */
.location-row {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  padding: 5px 10px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}

.location-row::-webkit-scrollbar {
  display: none;
}

.location-row .loc-btn {
  display: inline-block;
  background: #fff7dc;
  color: #012c70;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  flex-shrink: 0;
}

.location-row .loc-btn:hover {
  background: #ffe3a3;
  color: #014f8c;
}

/* ===================== FLIPPING BANNER ===================== */
.flip-banner {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#flipText {
  font-size: 13px;
  font-weight: bold;
  color: #012c60;
  white-space: nowrap;
  text-align: center;
  padding: 0 10px;
}

/* ===================== RESPONSIVE ===================== */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  .lbl {
    display: none;
  }

  /* Second row scroll */
  .scroll-x {
    justify-content: flex-start;
  }

  .scroll-x a {
    font-size: 13px;
    padding: 0 6px;
  }

  /* Location row scroll */
  .location-row {
    justify-content: flex-start;
    padding: 4px 8px;
  }

  .location-row .loc-btn {
    font-size: 11px;
    padding: 2px 6px;
  }
}

@media (min-width: 769px) {
  .scroll-x {
    justify-content: center;
  }

  .location-row {
    justify-content: center;
    flex-wrap: wrap;
  }
}

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

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

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

/* Keyframes to cycle through images */
@keyframes imageFade {
  0% {
    background-image: url('https://dxk1acp76n912.cloudfront.net/images/tours/tour-banner1.jpg');
  }
  20% {
    background-image: url('https://dxk1acp76n912.cloudfront.net/images/homepage/colombo_tour.jpg');
  }
  40% {
    background-image: url('https://dxk1acp76n912.cloudfront.net/images/tours/tour-banner3.jpg');
  }
  60% {
    background-image: url('https://dxk1acp76n912.cloudfront.net/images/tours/tour-banner4.jpg');
  }
  80% {
    background-image: url('https://dxk1acp76n912.cloudfront.net/images/things-do-in-sigiriya/sigiriya_banner.jpg');
  }
  100% {
    background-image: url('https://dxk1acp76n912.cloudfront.net/images/homepage/anuradapura_tour.jpg');
  } /* Loops back */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Tour Information Section */
.tour-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: #f9f9f9; /* Light Background */
}

/* Each Box */
.info-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 280px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.info-box:hover {
  transform: translateY(-5px);
}

/* Titles */
.info-box h3 {
  color: #012c60;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Paragraph */
.info-box p {
  font-size: 18px;
  color: #555;
  font-weight: 500;
  line-height: 1.3;
}

/* Full-Width Tour Summary Section */
.tour-summary {
  width: 100%;
  background-color: #012c60; /* Light gray background */
  padding: 50px 0;
  text-align: center;
  margin-top: 10px;
}

.tour-summary .content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px; /* Responsive padding */
}

.tour-summary h2 {
  color: #ffffff; /* Dark blue for the title */
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 15px;
}

.tour-summary p {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.8;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Why Book This Tour Section */
.why-book {
  text-align: center;
  padding: 50px 20px;
  background-color: #f4f4f4;
}

.why-book h2 {
  font-size: 35px;
  color: #012c60;
  margin-bottom: 40px;
  margin-top: -10px;
}

/* Grid Layout */
.why-book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

/* Individual Item Styling */
.why-book-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease-in-out;
}

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

/* Icons */
.why-book-item i {
  font-size: 26px;
  color: #ff6600;
}
.why-book-item p {
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

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

.tour-name {
  color: #013e89; /* Example: Bootstrap primary blue */
  font-weight: bold; /* Slightly less bold than default */
  font-size: 32px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Optional subtle shadow */
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.inquiry-subtext {
  font-size: 1.1rem;
  color: #333;
  margin-top: -25px !important;
  line-height: 1.6;
  background: #f9f9f9;
  padding: 12px 18px;
  border-radius: 5px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
}

.inquiry-subtext strong {
  color: #1a6c2d;
  font-size: 1.3rem !important;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.inquiry-highlight {
  font-size: 1.4rem;
  font-weight: bold;
  color: #dc6969; /* Vibrant red tone */
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  margin-top: -6px;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

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

.promo-status {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeIn 0.8s ease-in-out;
}

.checkmark {
  width: 20px;
  height: 20px;
  background-color: #28a745;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation: popIn 0.4s ease-out;
}

.checkmark::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.status-text {
  font-size: 14px;
  color: #2e7d32;
  font-weight: 600;
}

/* For tablets (768px and down) */
@media (max-width: 768px) {
  .inquiry-section h2 {
    font-size: 24px;
  }

  .tour-name {
    font-size: 26px;
  }

  .inquiry-subtext {
    font-size: 1rem;
    padding: 10px 14px;
  }

  .inquiry-subtext strong {
    font-size: 1.1rem !important;
  }

  .inquiry-highlight {
    font-size: 1.2rem;
  }

  .inquiry-form input,
  .promo-inline input {
    width: 100%; /* Full width on smaller screens */
  }

  .promo-group-inline .promo-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-note-inline {
    font-size: 16px;
  }

  .promo-status {
    flex-direction: row;
  }
}

/* For mobile phones (480px and down) */
@media (max-width: 480px) {
  .inquiry-section h2 {
    font-size: 20px;
  }

  .tour-name {
    font-size: 22px;
  }

  .inquiry-subtext {
    font-size: 0.95rem;
  }

  .inquiry-highlight {
    font-size: 1.1rem;
  }

  .promo-note-inline {
    font-size: 15px;
  }

  .status-text {
    font-size: 13px;
  }
}

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

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

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

/* Number of Days dropdown container */
.dropdown-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #444;
}
.custom-dropdown {
  width: 350px;
  position: relative;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  user-select: none;
}
.selected {
  padding: 12px 40px 12px 16px; /* right padding for arrow */
  position: relative;
}
.arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid black;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.custom-dropdown.open .arrow {
  transform: translateY(-50%) rotate(180deg);
}
.options {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-top: none;
  position: absolute;
  width: 100%;
  background: white;
  display: none;
  z-index: 10;
  box-sizing: border-box;
}
.options li {
  padding: 10px 16px;
}
.options li:hover {
  background: #eee;
}
.custom-dropdown.open .options {
  display: block;
}

.vehicle-dropdown-wrapper {
  position: relative;
  width: 350px;
}

.vehicle-select {
  width: 350px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 2px;

  /* Remove default arrow in most browsers */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: white;
  background-image: none;
}

/* Custom arrow styling */
.vehicle-dropdown-wrapper .arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  pointer-events: none;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000000; /* Arrow color */
}
.vehicle-description {
  margin-top: 12px;
  background-color: #eef5ff;
  padding: 12px 16px;
  border-left: 6px solid #007f5f;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  white-space: pre-line;
}

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

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

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

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

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

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

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

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

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

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

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

/* Attractions Section */
.attractions {
  background: url('https://dxk1acp76n912.cloudfront.net/images/homepage/watermarkwhite.png')
    no-repeat center center;
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f9fa;
  margin-top: 20px;
}

.attractions h2 {
  font-size: 35px;
  color: #012c60;
  margin-bottom: 0px;
  margin-top: -20px;
}

/* Grid Layout */
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  margin-top: 20px;
}

/* Card Styling */
.attraction-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  margin-top: 20px;
  position: relative; /* Needed for overlay positioning */
}

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

/* Image Styling */
.attraction-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Overlay for Text */
.attraction-content {
  position: absolute;
  bottom: -100%; /* Start with text hidden below the card */
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
  color: white;
  text-align: center;
  transition: bottom 0.4s ease-in-out; /* Transition for sliding effect */
}

.attraction-card:hover .attraction-content {
  bottom: 0; /* Slide text up when hovering */
}

.attraction-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffcc00; /* Highlight title */
}

.attraction-content p {
  font-size: 15px;
  line-height: 1.5;
}

/* Day-by-Day Itinerary Section */
.itinerary {
  background-color: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

.itinerary h2 {
  font-size: 35px;
  color: #012c60;
  margin-bottom: 30px;
}

/* Itinerary List Layout */
.itinerary-list {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Individual Day Item Styling */
.itinerary-item {
  margin-bottom: 30px;
  padding: 20px;
  background: #ffffff;
  border-left: 5px solid #ff6600;
  transition: background-color 0.3s ease-in-out;
}

.itinerary-item:hover {
  background-color: #fafafa;
}

/* Day Title Styling */
.itinerary-item h3 {
  font-size: 24px;
  color: #ff6600;
  margin-bottom: 15px;
}

/* List Styling */
.itinerary-item ul {
  list-style-type: disc; /* Adds dot marks for each item */
  list-style-position: inside; /* Ensures dots are aligned with text */
  padding: 0;
  text-align: left;
  font-size: 16px;
  color: #555;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.itinerary-item ul li {
  margin-bottom: 10px;
}

/* Button Styles */
.itinerary-button {
  text-align: center;
  margin-top: 20px;
}

.btn-download {
  padding: 10px 25px;
  font-size: 19px;
  font-weight: bold;
  background-color: #012c60;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  width: 30%;
  min-width: 180px;
  max-width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-download:hover {
  background-color: #e2ae3f;
  transform: scale(1.03);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .btn-download {
    width: 60%;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .btn-download {
    width: 80%;
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* footer */
footer {
  background: url('https://dxk1acp76n912.cloudfront.net/images/homepage/waterma.png')
    no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 30px 20px; /* Adjust padding as needed */
  text-align: center;
  margin-top: 40px;
}

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

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

.footer-social a {
  color: white;
}

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

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

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

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

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

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

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

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

/* Responsive adjustments */

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

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

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

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

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

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

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

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

  .footer-social a {
    color: white;
  }

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