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

/* Body Styling */
body {
  background-color: #e9f0ff;
  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;
}

/*============================================================*/
/* WhatsApp floating button style */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 999;
}

.whatsapp-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-link img {
  width: 70px;
  height: 70px;
  border-radius: 10%;
  transition: transform 0.3s ease;
}

.whatsapp-link:hover img {
  transform: scale(1.1);
}

/* Tooltip message */
.whatsapp-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 75px;
  background-color: #2e7d32;
  color: #ffffff;
  border-radius: 5px;
  font-weight: bold;
  padding: 8px 12px;
  font-size: 16px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

/* Show tooltip on hover */
.whatsapp-link:hover .whatsapp-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Show tooltip on mobile tap */
@media (hover: none) {
  .whatsapp-link:active .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
  }
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .whatsapp-link img {
    width: 55px;
    height: 55px;
  }

  .whatsapp-tooltip {
    font-size: 14px;
    right: 65px;
    padding: 6px 10px;
  }
}

@media screen and (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-link img {
    width: 50px;
    height: 50px;
  }

  .whatsapp-tooltip {
    font-size: 13px;
    right: 60px;
  }
}
/*======================================================================*/

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('https://dxk1acp76n912.cloudfront.net/images/yalasafari/yala-all.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1000px;
  padding: 20px;
  margin-top: 130px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 20px;
  margin-top: 0px;
}

.hero-content h1 .highlight {
  display: block;
  background: linear-gradient(270deg, #10b981, #f97316); /* emerald to orange */
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content p {
  font-size: 1.4rem;
  max-width: 1000px;
  margin: 0 auto 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.multi-day-whatsapp-btn {
  display: inline-block;
  background: linear-gradient(to right, #059669, #047857);
  color: #fff;
  padding: 10px 32px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
  white-space: nowrap;
  text-align: center;
  max-width: 100%;
  margin: 0 auto; /* centers inline-block elements */
  display: block; /* ensures margin auto works */
}

/* Hover effect */
.multi-day-whatsapp-btn:hover {
  background: linear-gradient(to right, #047857, #065f46);
  transform: translateY(-3px);
}

/* ---------- Responsive Button Adjustments ---------- */

/* Tablets (768px–1023px) */
@media (max-width: 1023px) {
  .multi-day-whatsapp-btn {
    font-size: 17px;
    padding: 10px 26px;
    width: 70%;
    max-width: 240px;
  }
}

/* Mobile (481px–767px) */
@media (max-width: 767px) {
  .multi-day-whatsapp-btn {
    font-size: 16px;
    padding: 8px 20px;
    width: 80%;
    max-width: 220px;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .multi-day-whatsapp-btn {
    font-size: 15px;
    padding: 8px 18px;
    width: 85%;
    max-width: 200px;
  }
}

/* ==================== Stats Section ==================== */
.stats-section {
  background: #c6c6c6;
  padding: 20px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  padding: 5px 0;
}

.stat-card {
  background: #484a4d;
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 10px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

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

.stat-card i {
  font-size: 28px;
  margin-bottom: 15px;
  display: inline-block;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
}

/* ---------- Reviews & TripAdvisor Text ---------- */
.reviews {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  opacity: 0.8;
  margin-left: 5px;
  display: inline-block;
  transition: font-size 0.3s ease;
}

.reviews .tripadvisor {
  color: #34e09e;
  font-weight: 700;
}

.choice-card .stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  transition: font-size 0.3s ease;
}

.tripadvisor-text {
  color: #34e09e;
  font-weight: 700;
  margin-right: 5px;
  display: inline-block;
  transition: font-size 0.3s ease;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
  transition: font-size 0.3s ease;
}

/* ---------- Color Helpers ---------- */
.text-yellow {
  color: #facc15;
}
.text-emerald {
  color: #00eb15;
}
.text-orange {
  color: #ff8c00;
}
.text-blue {
  color: #008ff6;
}

/* ---------- Stars Rating ---------- */
.stars-rating {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 0px;
  margin-top: 18px;
}

.stars-rating i {
  font-size: 20px;
  color: #facc15;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  transition: font-size 0.3s ease;
}

/* ---------- Rating Card ---------- */
.rating-card .stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  transition: font-size 0.3s ease;
}

.rating-card .tripadvisor {
  color: #34e09e;
  font-weight: 700;
  transition: font-size 0.3s ease;
}

/* ---------- TripAdvisor Logo ---------- */
.tripadvisor-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.tripadvisor-logo img {
  width: 40px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease, width 0.3s ease;
}

.tripadvisor-logo img:hover {
  transform: scale(1.1);
}
/* Desktop: all cards in one row */
@media (min-width: 1025px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* change 5 to number of cards */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
/* Optional: add color to user icon specifically */
.stat-card i.fa-users {
  color: #e5f916; /* green color for users/travelers icon */
}
/* ------------------ Responsive Styles ------------------ */

/* Tablets / Medium Devices */
@media (max-width: 768px) {
  .reviews {
    font-size: 1.2rem;
  }
  .choice-card .stat-value {
    font-size: 1rem;
  }
  .tripadvisor-text {
    font-size: 1rem;
  }
  .stat-label {
    font-size: 1rem;
  }
  .stars-rating i {
    font-size: 18px !important;
  }
  .rating-card .stat-value {
    font-size: 1rem;
  }
  .rating-card .tripadvisor {
    font-size: 1.3rem;
  }
  .tripadvisor-logo img {
    width: 30px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .reviews {
    font-size: 1rem;
    margin-left: 3px;
  }
  .choice-card .stat-value {
    font-size: 0.8rem;
  }
  .tripadvisor-text {
    font-size: 1rem;
  }
  .stat-label {
    font-size: 0.95rem;
  }
  .stars-rating i {
    font-size: 20px;
  }
  .rating-card .stat-value {
    font-size: 0.8rem;
  }
  .rating-card .tripadvisor {
    font-size: 1rem;
  }
  .tripadvisor-logo img {
    width: 30px;
  }
}

/* Responsive tweaks for tablets */
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 0px 0;
  }

  .stat-card i {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .stat-value {
    font-size: 1rem;
  }

  .reviews {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

/* Responsive tweaks for mobile phones */
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    padding: 0px 0;
  }

  .stat-card i {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .stat-value {
    font-size: 1rem;
  }

  .reviews {
    font-size: 1rem;
    margin-left: 3px;
  }

  .stat-label {
    font-size: 0.95rem;
  }
}

/* --- Responsive Styles --- */

/* Laptops/Tablets */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-content p {
    font-size: 1.4rem;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* change 5 to number of cards */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Tablets/Medium Devices */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
    margin-top: 0px;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-buttons {
    gap: 12px;
    flex-direction: column;
  }
  .btn-primary {
    width: 40%;
    font-size: 16px;
    padding: 10px 20px;
    display: block; /* ensures margin works */
    margin: 0 auto; /* centers the button */
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-top: 0px;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn-primary {
    font-size: 18px;
    padding: 8px 14px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ------------------------------ Detailed section Container--------------------------------------------- */
.tours-section {
  padding: 2rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.section-header-tours {
  text-align: center;
  margin-bottom: 0rem;
}

.section-header-tours h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #003929;
}

.gradient-text {
  background: linear-gradient(90deg, #000000, #0055ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-weight: 800;
}

.section-header-tours p {
  font-size: 1.4rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

.section-header-tours .sub-heading {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #065f46; /* Accent color, you can use gradient if preferred */
  margin: 15px 0 25px 0;
  position: relative;
  display: inline-block;
}

/* Optional: underline decoration */
.section-header-tours .sub-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #047857;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Grid */
.tour-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card */
.tour-card {
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image */
.tour-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

/* Overlay colors */
.overlay-amber {
  background: linear-gradient(to top, #f59e0b, #ea580c);
}
.overlay-green {
  background: linear-gradient(to top, #10b981, #047857);
}
.overlay-blue {
  background: linear-gradient(to top, #3b82f6, #06b6d4);
}
.overlay-purple {
  background: linear-gradient(to top, #8b5cf6, #4f46e5);
}
.overlay-pink {
  background: linear-gradient(to top, #ec4899, #db2777);
}
.overlay-yellow {
  background: linear-gradient(to top, #facc15, #f59e0b);
}

.tour-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  color: #fff;
  font-size: 0.875rem;
}

.tour-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Card Content */
.tour-content {
  padding: 1.5rem;
}

.tour-content p {
  color: #4b5563;
  margin-bottom: 0rem;
  text-align: justify;
  text-justify: inter-word;
  font-size: 1rem;
  line-height: 24px;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Highlights */
.tour-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tour-highlights li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #4b5563;
}

.tour-highlights li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background-color: #10b981;
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* Buttons */
.btn-gradient {
  width: 100%;
  background: #012c60;
  color: #fff;
  padding: 0.75rem;
  border-radius: 5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn-gradient:hover {
  background: #e2ae3f;
}

/* Custom Tour Button */
.custom-tour-btn {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive button */
.btn-orange {
  background: linear-gradient(90deg, #3793ae, #012c60);
  color: #fff;
  padding: 0.8rem 2rem; /* Base padding */
  border-radius: 0.5rem;
  font-size: 1.2rem; /* Base font size */
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  width: auto;
  max-width: 90%; /* prevent overflow on small screens */
}

/* Hover effect */
.btn-orange:hover {
  background: linear-gradient(90deg, #5c5303, #e2ae3f);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .btn-orange {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .btn-orange {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    width: 100%; /* Full width on very small screens */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-header-tours h2 {
    font-size: 2rem;
  }

  .section-header-tours p {
    font-size: 1rem;
  }
  .tour-title {
    font-size: 1.25rem;
  }
  .tour-content p {
    font-size: 0.875rem;
  }
}

/* -----------------------------------------why-choose-Container---------------------------------------- */
.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.why-choose-us {
  padding: 50px 20px; /* a bit more breathing space */
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.section-header-why h2 {
  font-size: clamp(2rem, 5vw, 3rem); /* scales smoothly */
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to right, #012c60, #0047de);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header-why p {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.3rem); /* scales on devices */
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background: linear-gradient(to bottom right, #f9fafb, #ffffff);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 1px solid #e5e7eb;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

/* Icons */
.feature-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #c14f00, #f97316);
  transition: transform 0.3s ease;
}

.feature-card:hover .icon {
  transform: scale(1.1);
}

.feature-card .icon i {
  font-size: 32px;
  color: #fff;
}

/* Feature Text */
.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: #065f46;
}

.feature-card p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ✅ Extra Responsive Tweaks */
@media (max-width: 1024px) {
  .features-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 40px 15px;
  }
  .feature-card {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    gap: 15px;
  }
  .feature-card {
    padding: 20px 12px;
  }
  .feature-card h3 {
    font-size: 1.2rem;
  }
  .feature-card p {
    font-size: 0.9rem;
  }
}

/* ------------------------Ready to Book with CTA Section-------------------------------------- */
.cta-section {
  margin-top: 80px;
  background: linear-gradient(to right, #059669, #f97316);
  border-radius: 30px;
  padding: 60px 30px;
  text-align: center;
  color: #fff;
}

.cta-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.btn-primary {
  background: #fff;
  color: #059669;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #f3f4f6;
}

.btn-secondary {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.whatsapp-link {
  text-decoration: none; /* remove underline */
  display: inline-block; /* ensures spacing like a button */
}

/* Responsive Text */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .cta-section h3 {
    font-size: 1.8rem;
  }
}

/* Container */
.cta-fullwidth {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Gradient Background */
.cta-gradient {
  background: linear-gradient(135deg, #c9c9c9, #012c60);
}

/* Optional animated background shapes */
.cta-gradient::before,
.cta-gradient::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
  animation: float 8s infinite alternate;
}

.cta-gradient::before {
  background: #fff;
  top: -50px;
  left: -50px;
}

.cta-gradient::after {
  background: #fff;
  bottom: -50px;
  right: -50px;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(30px) translateX(20px);
  }
}

/* Container inner content */
.cta-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

/* Headings and Text */
.cta-container h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-container p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-primary,
.btn-secondary {
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.btn-primary {
  background: #fff;
  color: #059669;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* Remove underline from link text */
.no-underline {
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Icon animation */
.btn-primary i,
.btn-secondary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i,
.btn-secondary:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container h3 {
    font-size: 2rem;
  }
  .cta-container p {
    font-size: 1rem;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ---------------------------------feedback Container ------------------------------------------------------------*/
.trip-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.testimonials-section {
  padding: 30px 0;
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
}

.section-header-trip h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(to right, #002f68, #00c8c3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header-trip h2 span {
  display: block;
}

.section-header-trip p {
  text-align: center;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .section-header-trip h2 {
    font-size: 2rem;
  }

  .section-header-trip p {
    font-size: 1rem;
    padding: 0 15px; /* add breathing space on very small screens */
  }
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* Testimonial Card */
.testimonial-card {
  display: block; /* makes <a> behave like a card */
  position: relative;
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-decoration: none; /* remove underline */
  color: inherit; /* keep text color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Quote icon */
.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: #012c6038;
}

/* User Info */
.testimonial-user {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.user-info h4 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.user-info p {
  font-size: 0.9rem;
  color: #6b7280;
}

.stars {
  color: #facc15;
  margin-top: 3px;
}

/* Testimonial Text */
.testimonial-text {
  font-style: italic;
  color: #4b5563;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Tour Tag */
.tour-tag {
  display: inline-block;
  background: linear-gradient(135deg, #fff0c9, #cdefff);
  color: #111827;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 5px;
}

/*rating box*/
.highlights-container {
  display: flex;
  justify-content: center;
}

.highlights-card {
  display: flex;
  gap: 60px;
  background: #fff;
  padding: 30px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.highlight-item {
  text-align: center;
  min-width: 120px;
}

.highlight-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.highlight-label {
  font-size: 0.98rem;
  color: #6b7280;
}

/* Colors */
.highlight-green {
  color: #059669;
}
.highlight-orange {
  color: #f97316;
}
.highlight-blue {
  color: #00358c;
}

/* Responsive */
@media (max-width: 768px) {
  .highlights-card {
    flex-direction: column;
    gap: 30px;
  }
}

/*-------------------------------------------------tour booking section-------------------------------------*/
/* General Section */
.booking-section {
  background: #001a3a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 35px 20px;
}

.container {
  max-width: 1200px;
  margin: -18 auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 1.8rem; /* mobile small */
  font-weight: 700;
}

.section-header h2 span {
  display: block;
  font-size: 1.8rem; /* mobile small */
  color: #fff9;
}

.section-header p {
  font-size: 0.95rem; /* mobile small */
  max-width: 1000px;
  margin: 15px auto 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Booking Form */
.booking-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 30px; /* smaller on mobile */
  border-radius: 30px;
}

.booking-form h3 {
  font-size: 1.4rem; /* mobile small */
  margin-bottom: 25px;
}

/* Default layout (desktop/tablet) */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* For small screens (mobile) */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column; /* stack inputs vertically */
  }

  .form-group {
    max-width: 100%; /* make input boxes take full width */
  }

  /* Move travelers input under phone number field */
  .form-group#travelersGroup {
    order: 3; /* change this order number to position correctly */
  }
  .form-group#phoneGroup {
    order: 2;
  }
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #ffffffe6;
  font-size: 0.85rem; /* mobile small */
  text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #ffffff54;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

textarea {
  resize: none;
}

/*-----------------tour selection-------------*/
/* Custom dropdown for booking form */
/* Select box styling */
.booking-form .form-group select {
  width: 100%;
  padding: 12px 45px 12px 15px; /* extra right padding for arrow */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15); /* glassy semi-transparent */
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.95rem;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

/* Dropdown options styling */
.booking-form .form-group select option {
  color: #053528; /* readable text */
  background: rgba(255, 255, 255, 0.95); /* soft white for options */
  padding: 8px 12px;
  font-weight: bold;
}

/* Hover/focus effect on select */
.booking-form .form-group select:hover,
.booking-form .form-group select:focus {
  background: rgba(255, 255, 255, 0.25);
  outline: none;
}

/* Custom arrow styling */
.booking-form .form-group {
  position: relative;
}

.booking-form .form-group .custom-arrow {
  position: absolute;
  top: 70%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
  color: #fff;
  transition: transform 0.3s ease;
}

/* Rotate arrow when select is focused */
.booking-form .form-group select:focus + .custom-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Optional: option hover highlight */
.booking-form .form-group select option:hover {
  color: #053528;
}

/* Submit Button */
.btn-submit {
  margin: 60px auto 0; /* top margin + auto centers horizontally */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  padding: 12px;
  background: #fff;
  color: #10b981;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  gap: 10px;
}

.btn-submit:hover {
  background: #f3f3f3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*--------------------travel counter box------------*/
.form-group {
  position: relative;
  width: 100%;
  max-width: 450px;
  font-family: Arial, sans-serif;
}
#travelersInput {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.travelers-popup {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 100%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.counter-row:last-child {
  border-bottom: none;
}

.label-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #f9f9f9;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

.counter-btn:hover {
  background: #eee;
}

.counter-value {
  min-width: 20px;
  text-align: center;
  font-weight: bold;
  color: #003929; /* blue like screenshot */
}

/* Child ages section */
#childrenAgesContainer {
  margin-top: 10px;
}
#childrenAgesContainer label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}
#childrenAgesContainer input {
  width: 60px;
  margin: 5px 5px 0 0;
  padding: 4px;
  border-radius: 6px;
  border: 1px solid #ccc;
  color: #333;
}

.done-btn {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  background: #012c60;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.done-btn:hover {
  background: #e2ae3f;
}

/* Responsive */
@media (max-width: 480px) {
  .form-group {
    max-width: 100%;
  }
  .travelers-popup {
    width: 100%;
    left: 0;
    right: 0;
  }
  #childrenAgesContainer input {
    width: 48%;
  }
}
/* Target only the "Special Requests or Questions" textarea */
.booking-form .form-group textarea[name='message'] {
  width: 100% !important; /* full width */
  max-width: 100% !important; /* prevent shrinking */
  flex: 0 0 100% !important; /* force it to take full row even in flex container */
  box-sizing: border-box; /* include padding and border in width */
  resize: none; /* optional: prevent resizing */
}
/* ===== Country Dropdown Styling Only ===== */
.iti__country-list {
  background: #ffffff !important; /* white background */
  border: 1px solid #b2dfdb;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
  max-height: 250px;
  overflow-y: auto;
  z-index: 9999;
}

/* Each country option */
.iti__country {
  padding: 8px 12px;
  transition: background 0.2s ease;
  color: #222; /* 🔹 dark gray text for readability */
}

/* Hover effect */
.iti__country:hover {
  background-color: #e0f7f5;
}

/* Highlighted/Active country */
.iti__country.iti__highlight {
  background-color: #c8f3eb;
  color: #000; /* make text darker when highlighted */
}

/* Country flag icon spacing */
.iti__flag-box {
  margin-right: 8px;
}

/* ------------------ Tablet (768px) ------------------ */
@media (min-width: 768px) {
  .section-header h2,
  .section-header h2 span {
    font-size: 2.5rem;
  }

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

  .booking-form h3 {
    font-size: 1.6rem;
  }

  .form-group label {
    font-size: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
  }

  .info-card h3 {
    font-size: 1.6rem;
  }

  .info-item h4 {
    font-size: 1.1rem;
  }

  .info-item p,
  .benefits-list li {
    font-size: 1rem;
  }

  .btn-submit {
    font-size: 1.05rem;
  }
}

/* ------------------ Desktop (≥1024px) ------------------ */
@media (min-width: 1024px) {
  .section-header h2,
  .section-header h2 span {
    font-size: 3rem;
  }

  .section-header p {
    font-size: 1.3rem;
  }

  .booking-form h3 {
    font-size: 2rem;
  }

  .form-group label {
    font-size: 1.05rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    width: 100%;
  }

  .info-card h3 {
    font-size: 1.8rem;
  }

  .info-item h4 {
    font-size: 1.15rem;
  }

  .info-item p,
  .benefits-list li {
    font-size: 0.95rem;
  }

  .btn-submit {
    font-size: 1.1rem;
  }
}

/* ===========================
   ✅ Phone Input Fix
   =========================== */
.iti {
  width: 100% !important;
}

.iti input[type='tel'] {
  width: 100% !important;
  padding: 10px 12px 10px 84px !important; /* 🔹 left padding for flag + dial code */
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background: #ffffff54 !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  margin-bottom: 8px !important;
  box-sizing: border-box !important;
}

.iti__flag-container {
  background: rgba(255, 255, 255, 0.15);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.iti__selected-dial-code {
  color: #fff !important;
}

.iti input[type='tel']::placeholder {
  padding-left: 0px; /* space for flag + dial code */
  color: rgba(255, 255, 255, 0.6); /* optional: keep placeholder color */
}

@media (max-width: 600px) {
  .iti {
    width: 100% !important;
  }
}
/* Force date input to fully match other inputs */
.booking-form input[type='date'] {
  width: 100% !important; /* full width */
  box-sizing: border-box; /* include padding + border */
  padding: 10px 12px; /* same as text inputs */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #ffffff54;
  color: #fff;
  font-size: 0.95rem;
  -webkit-appearance: none; /* remove native style on iOS */
  -moz-appearance: none; /* remove native style on Firefox */
  appearance: none; /* remove default styling */
}

/* Add placeholder-style text color for browsers that support it */
.booking-form input[type='date']::-webkit-datetime-edit {
  color: #fff;
  padding: 0;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .booking-form input[type='date'] {
    width: 100% !important;
    display: block; /* ensure it doesn’t shrink inline */
  }
}
.child-age-dropdown {
  width: 40px;
  margin: 5px 5px 0 0;
  padding: 5px 12px !important;
  border-radius: 5px !important;
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
  background-color: #ffffff !important; /* white background */
  color: #000000 !important; /* text color */
}

/*---------------------------------right section---------------------*/
/* Info Cards */
.booking-info {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 20px; /* mobile small */
  border-radius: 25px;
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.info-item .icon {
  font-size: 1.3rem;
  margin-right: 12px;
  color: #f97316;
}

.info-item h4 {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 1rem;
}

.info-item p {
  font-size: 0.85rem;
  color: #ffffffcc;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background: #f97316;
  border-radius: 50%;
}

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

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

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

.footer-social a {
  color: white;
}

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

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

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

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

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

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

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

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

/* Responsive adjustments */

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

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

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

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

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

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