/* 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 {
  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;
  }
} /*trending text*/
/* Ensure the link container is relative and inline-block */
.trending-link a {
  position: relative;
  display: inline-block;
  padding-right: 0; /* no extra padding needed */
  white-space: nowrap; /* prevents text wrap which could break badge */
}

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

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

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

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

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

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

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

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  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(#000000a8, rgba(0, 0, 0, 0.45)),
    url('https://lakpura.com/cdn/shop/collections/LK66156960-11-E.jpg?v=1681725241');
  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: 60px;
}

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

.hero-content h1 .highlight {
  display: block;
  background: linear-gradient(
    270deg,
    #ffd700,
    /* bright gold */ #ff8c00,
    /* deep orange */ #00ff80,
    /* fresh green */ #9acd32,
    /* vibrant olive */ #ffd700 /* back to bright gold */
  );
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 8s ease infinite;

  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem); /* responsive font size */
  line-height: 1.1;
  text-align: center;
  margin: 0 auto;
}

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

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

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

.multi-day-whatsapp-btn {
  background: linear-gradient(to right, #059669, #047857);
  color: #fff;
  padding: 12px 32px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 22px;
}
.multi-day-whatsapp-btn:hover {
  background: linear-gradient(to right, #047857, #065f46);
  transform: translateY(-3px);
}

/* 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: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.12)
  );
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 18px 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: 40px;
  margin-bottom: 15px;
  display: inline-block;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

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

/* ---------- Reviews & TripAdvisor Text ---------- */
.reviews {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  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: 1.6rem;
  font-weight: 700;
  color: #fff;
  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: 1.2rem;
  font-weight: 500;
  color: #fff;
  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: 10px;
}

.stars-rating i {
  font-size: 28px;
  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: 1.6rem;
  font-weight: 700;
  color: #fff;
  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: 60px;
  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);
}

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

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

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

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

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

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

  .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: 10px 0;
  }

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

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

  .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: 4rem;
  }
  .hero-content p {
    font-size: 1.4rem;
  }
}

/* Tablets/Medium Devices */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
    margin-top: 40px;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .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.8rem;
    line-height: 1.2;
    margin-top: 20px;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn-primary {
    font-size: 18px;
    padding: 8px 14px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/*------------------------------section of type of culture tours----------------------------*/
.tours {
  padding: 20px 20px;
  background: linear-gradient(to bottom right, #efefef, #fff0de);
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 3rem;
  color: #333;
  margin: 15px 0;
  font-weight: bold;
}

.section-header .highlight {
  display: block;
  background: linear-gradient(to right, #0e7bff, #00306b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.section-header p {
  font-size: 1.3rem;
  color: #666;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.35s;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(to right, #ff2525, #cc0000);
  color: #fff;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: bold;
}

.price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: bold;
}

.price .current {
  color: #e63946;
  margin-right: 8px;
}

.price .old {
  text-decoration: line-through;
  color: #777;
}

.image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h3 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 800;
}

.details {
  margin: 12px 0;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  gap: 20px;
}

.section h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #333;
}

.section ul {
  list-style: none;
}

.section ul li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 6px;
}

.section ul li i {
  color: #2ecc71;
  margin-right: 6px;
}

.includes span {
  display: inline-block;
  background: #e9f0ff;
  color: #012c60;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 30px;
  margin: 4px;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(to right, #012c60, #005bc9);
  color: #fff;
  border: none;
}

.btn.primary:hover {
  background: linear-gradient(to right, #0067e3, #012c60);
}

.btn.outline {
  border: 2px solid #005bc9;
  color: #012c60;
  background: #fff;
}

.btn.outline:hover {
  background: #000e4c2e;
}

.special-offer {
  background: linear-gradient(to right, #ff8c00, #e67300);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}

.special-offer h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.special-offer p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.offer-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn.light {
  background: #fff;
  color: #ff8c00;
  border: none;
}

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

.btn.light:hover {
  background: #fff8f0;
}

.btn.outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}
/* ===== Responsive Adjustments ===== */

/* Mobile: up to 480px */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .section-header p {
    font-size: 1rem;
    padding: 0 10px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .package-card .image img {
    height: 180px;
  }
  .card-header h3 {
    font-size: 1.2rem;
  }
  .details {
    flex-direction: column;
    gap: 8px;
  }
  .includes span {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}

/* Small tablets: 481px – 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
  .section-header p {
    font-size: 1.1rem;
  }
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .package-card .image img {
    height: 200px;
  }
  .card-header h3 {
    font-size: 1.3rem;
  }
}

/* Medium tablets / small laptops: 769px – 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .section-header h2 {
    font-size: 2.8rem;
  }
  .section-header p {
    font-size: 1.2rem;
  }
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .package-card .image img {
    height: 220px;
  }
}

/* Large screens: 1025px – 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
  .section-header h2 {
    font-size: 3rem;
  }
  .section-header p {
    font-size: 1.3rem;
  }
}

/* Extra large screens: above 1440px */
@media (min-width: 1441px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .package-card .image img {
    height: 250px;
  }
}

/* Full Width Special Offer Section */
#special-offer-section {
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(135deg, #d0d0d0 0%, #001a3a 100%);
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-top: -30px;
}

#special-offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  pointer-events: none;
}

#special-offer-section h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

#special-offer-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 20px;
}

.offer-buttons {
  display: flex;
  justify-content: center; /* centers buttons horizontally */
  flex-wrap: wrap;
  gap: 15px; /* space between buttons */
  max-width: 60%; /* container width */
  margin: 0 auto; /* centers container itself */
}

.offer-buttons .btn {
  padding: 12px 18px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  min-width: 0;
  text-align: center;
}

.btn.light {
  background-color: #ffffff;
  color: #000000;
  border: none;
}

.btn.light:hover {
  background-color: #71696d;
  transform: translateY(-3px);
  color: #ffffff;
}

.btn.outline-light {
  background-color: #132f4f;
  color: #fff;
  border: 2px solid #fff;
  width: fit-content; /* adjusts to text */
  max-width: 400px; /* never wider than 200px */
  padding: 12px 16px;
}

.btn.outline-light:hover {
  background-color: #196f97;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  #special-offer-section h3 {
    font-size: 1.6rem;
  }
  #special-offer-section p {
    font-size: 1rem;
  }
  .offer-buttons {
    flex-direction: column;
  }
}

/*location images section-------------------------------------------------------------------*/
.cultural-section {
  padding: 28px 20px;
  background-color: #efefef;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  color: #222;
  margin-bottom: 15px;
}

.section-header h2 span {
  background: linear-gradient(90deg, #047857, #012c60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1.2rem;
}

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

/* Card */
.cultural-card {
  background: linear-gradient(135deg, #fffaf2, #fff3e0);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.cultural-card:hover {
  transform: translateY(-8px);
}

/* Image transition */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.5s ease;
}

.image-wrapper .img2 {
  opacity: 0;
}

.cultural-card:hover .img1 {
  opacity: 0;
}

.cultural-card:hover .img2 {
  opacity: 1;
}

/* Icon Circle */
.icon-circle {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Content */
.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  color: #b45309;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card-content p {
  color: #555;
  font-size: 1.1rem;
}

/* Heritage banner */
.heritage-banner {
  position: relative;
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  border-radius: 30px;
  padding: 60px 30px;
  color: #fff;
  margin-top: 80px;
  text-align: center;
  overflow: hidden;
}

.heritage-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-content h3 i {
  margin-right: 8px;
}

.banner-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.banner-content p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.stats div {
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 1.8rem;
}

.stats span {
  opacity: 0.9;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn.primary {
  background: #ffc590;
  color: #b45309;
}

.btn.primary:hover {
  background: #b69262;
}

.btn.outline {
  border: 2px solid #913f00;
  color: #5f2900;
}

.btn.outline:hover {
  background: #a3670029;
}

/* === Section Header === */
@media (max-width: 1200px) {
  .section-header h2 {
    font-size: 2.5rem;
  }

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

@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

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

/* === Cultural Grid === */
@media (max-width: 992px) {
  .cultural-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .cultural-grid {
    grid-template-columns: 1fr; /* Single column on tablets and mobiles */
    gap: 20px;
  }

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

  .image-wrapper {
    height: 180px;
  }

  .card-content h3 {
    font-size: 1.3rem;
  }

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

/* === Heritage Banner === */
@media (max-width: 992px) {
  .heritage-banner {
    padding: 50px 20px;
  }

  .banner-content h3 {
    font-size: 1.8rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .stats strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .heritage-banner {
    padding: 30px 15px;
    border-radius: 20px;
  }

  .banner-content h3 {
    font-size: 1.5rem;
  }

  .banner-content p {
    font-size: 0.95rem;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* === Icon Circle Scaling on Small Screens === */
@media (max-width: 576px) {
  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    top: 10px;
    left: 10px;
  }
}

/*why book with less-------------------------------------------------*/
.why-book-section {
  background: linear-gradient(to bottom right, #c6c6c6, #ffffff);
  padding: 20px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.why-book-section .container {
  max-width: 1200px;
  margin: auto;
}

.why-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin: 15px 0;
}

.why-section-header h2 span {
  display: block;
  background: linear-gradient(to right, #e63946, #012c60);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.why-section-header p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.7;
  font-size: 1.2rem;
}

.why-book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  margin-top: -5px;
}

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #f4e1c3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex-wrap: wrap;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.2);
}

.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: #f5f5f5;
  flex-shrink: 0;
}

.icon.red {
  color: #e63946;
}

.icon.blue {
  color: #1d3557;
}

.icon.amber {
  color: #ffb703;
}

.icon.green {
  color: #2a9d8f;
}

.why-card .text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.why-card .text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* === Section Header Responsive === */
@media (max-width: 1200px) {
  .why-section-header h2 {
    font-size: 2.5rem;
  }

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

@media (max-width: 992px) {
  .why-section-header h2 {
    font-size: 2.2rem;
  }

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

/* === Why Book Grid Responsive === */
@media (max-width: 768px) {
  .why-book-grid {
    grid-template-columns: 1fr; /* Single column on tablets and mobiles */
    gap: 20px;
  }

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

  .why-card .text h3 {
    font-size: 1.1rem;
  }

  .why-card .text p {
    font-size: 0.9rem;
  }

  .why-card {
    padding: 20px;
    gap: 10px;
  }

  .icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* === Extra Small Screens (<576px) === */
@media (max-width: 576px) {
  .why-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .icon {
    margin-bottom: 12px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .why-card .text h3 {
    font-size: 1rem;
  }

  .why-card .text p {
    font-size: 0.85rem;
  }

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

  .why-section-header p {
    font-size: 0.95rem;
  }
}
/*percentage section----------------------------------*/
/* 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;
  }
}
/*review section---------------------------*/
.testimonials-section {
  padding: 30px 20px;
  background-color: #fffbf5;
}

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

.review-section-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 60px); /* responsive spacing */
  padding: 0 15px; /* some side padding for small screens */
}

.review-section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3rem); /* scales between 1.8rem and 3rem */
  font-weight: 700;
  margin-bottom: clamp(15px, 3vw, 20px); /* responsive margin */
  line-height: 1.2;
}

.review-section-header h2 span {
  display: block;
  background: linear-gradient(to right, #adadad, #ff8c00);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.review-section-header p {
  font-size: clamp(0.9rem, 2.5vw, 1.125rem); /* responsive font size */
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 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 {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 6rem;
  color: rgba(16, 185, 129, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

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

.testimonial-header h4 {
  margin: 0;
  font-weight: 600;
  color: #111827;
}

.testimonial-header .location {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 2px;
}

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

.testimonial-text {
  font-style: italic;
  color: #374151;
  margin-bottom: 15px;
  line-height: 1.6;
}

.tour-tag {
  display: inline-block;
  background: linear-gradient(to right, #d1fae5, #ffedd5);
  padding: 5px 15px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}

/* Responsive */
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*booking section-----------------------------------------------------*/
/* Booking Section Styles */
.booking-section {
  padding: 2.5rem 1rem;
  background: linear-gradient(135deg, #e9f0ff, #adb5c0, #fff);
  color: #000;
  font-family: 'Segoe UI', sans-serif;
}

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

.booking-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.booking-section-header .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: #012c60;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.booking-section-header .badge:hover {
  transform: scale(1.05);
}

.booking-section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.booking-section-header h2 span {
  display: block;
  background: linear-gradient(90deg, #012c60, #00cdc7);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.booking-section-header p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  font-size: clamp(0.9rem, 2.5vw, 1.125rem);
  line-height: 1.6;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
}

/* Form Card */
.form-card,
.sidebar .card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover,
.sidebar .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #012c60;
}

.steps {
  display: flex;
  gap: 0.5rem;
}

.step {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.step.active {
  background: #fff;
  color: #f59e0b;
  transform: scale(1.1);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  opacity: 0.9;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: clamp(0.6rem, 2vw, 0.85rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #ffffffc7;
  color: #000;
  outline: none;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.35);
  border-color: #00cdc7;
}

.form-group textarea {
  resize: none;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-primary {
  width: 100%;
  background: linear-gradient(90deg, #00cdc7, #012c60);
  color: #fff;
  padding: 1rem;
  border-radius: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary i {
  margin-right: 0.5rem;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  color: #000;
  padding: 1rem;
  border-radius: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

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

.form-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/*traveler counter-------------------*/
/* Popup styling */
.hidden {
  display: none !important;
}
.form-group {
  position: relative;
}

.travelers-popup {
  display: block; /* JS controls visibility */
  position: absolute;
  background: #ffffffc4;
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 0.5rem;
  width: 250px;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #012c60;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}

.counter-btn:hover {
  background: #000000;
  color: #ffffff;
}

.counter-value {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}

#childrenAgesContainer select {
  width: 120px;
  margin: 0.25rem 0.25rem 0 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.25rem;
}

.done-btn {
  width: 100%;
  background: #012c60;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 600;
  margin-top: 0.75rem;
  transition: all 0.3s;
}

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

/* Responsive */
@media (max-width: 768px) {
  .travelers-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 300px;
  }
}
/* Make intl-tel-input match other form inputs */
.iti {
  width: 100% !important;
  border-radius: 1.25rem !important;
  display: flex;
  align-items: center;
  position: relative; /* needed for dropdown */
}

.iti__flag-container {
  margin-left: 0rem;
  cursor: pointer;
}

.iti__selected-flag {
  height: 100%;
}

.iti input {
  flex: 1;
  height: auto !important;
  padding: clamp(0.6rem, 2vw, 0.85rem) 5.8rem !important;
  font-size: clamp(0.9rem, 2vw, 1.1rem) !important;
  border-radius: 1.25rem !important;
  border: none !important;
}

.iti__country-list {
  z-index: 9999 !important; /* ensure dropdown appears above everything */
}

/*==========date time==================*/
.datetime-row {
  display: flex;
  gap: 10px;
}

.datetime-row input[type='date'],
.datetime-row input[type='time'] {
  width: 100%;
  padding: clamp(0.6rem, 2vw, 0.85rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #ffffffc7;
  color: #000;
  outline: none;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.datetime-row input[type='date']:focus,
.datetime-row input[type='time']:focus {
  outline: none;
  border-color: #007b83;
  box-shadow: 0 0 4px rgba(0, 123, 131, 0.3);
}

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

.bonuses {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 1rem;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.bonuses h4 {
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.bonuses ul {
  list-style: none;
  padding-left: 0;
}

.bonuses ul li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.bonuses ul li i {
  color: #34d399;
}

.hidden {
  display: none;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #012c60;
}

.support-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.support-item i {
  font-size: 1.5rem;
  color: #00a6ff;
  min-width: 25px;
}

.support-item div strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.support-item div p,
.support-item div small {
  margin: 0;
  opacity: 0.85;
  font-size: 0.875rem;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  opacity: 0.9;
}

.benefits li i {
  color: #00a6ff;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

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