/* 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(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: 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, #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.6rem;
  max-width: 1000px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* ------------------------------ 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: 1rem;
  text-align: justify; /* makes start & end aligned */
  text-justify: inter-word; /* improves spacing */
}

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

/* Grid Layout */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 1024px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

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

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

/* 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: 73%;
  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-top: 60px;
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #10b981;
  font-weight: 700;
  font-size: 1rem; /* mobile small */
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  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: 350px;
  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: 1.8rem;
  }

  .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: column;
  gap: 20px;
}

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