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

/* Body Styling */
body {
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
/* Full-page snow effect */
.initial-snow {
  position: fixed; /* Covers the entire page */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none; /* Allow clicks through snow */
  z-index: 10; /* On top of all content */
}

.snow {
  position: absolute;
  top: -10vh;
  color: #9cb5d4;
  user-select: none;
  pointer-events: none;
  animation: snowfall linear infinite;
}

@keyframes snowfall {
  0% {
    transform: translateY(-10vh);
  }
  100% {
    transform: translateY(110vh);
  }
}

/*body.pink-background,
body.pink-background section#after-home-image,
body.pink-background .locations-section,
body.pink-background .driver-section,
body.pink-background .reviews,
body.pink-background .tripadvisor {
  background-color: #ffe8f2 !important;
}*/

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

/*---------------------------- Hero Section -----------------------------*/
.hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  top: 33px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.2)
  );
}

.hero-content {
  position: relative;
  padding: 0 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e59c00; /* Kandy color */
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-badge i {
  stroke: #fff;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: bold;
}

.hero-desc {
  font-size: 1rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: bold;
  line-height: 1.5;
}

/* Shuttle Banner */
/* Shuttle Banner */
.shuttle-banner {
  background: linear-gradient(90deg, #7b3f00, #ff7a18);
  padding: 10px 10px;
}

.shuttle-content {
  display: flex;
  align-items: center; /* vertically center icon + text */
  justify-content: center; /* horizontally center overall */
  gap: 12px; /* space between icon and text */
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  font-weight: 500;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
  text-align: center; /* for wrapped text */
}

.shuttle-content i {
  stroke-width: 2;
  width: 24px;
  height: 24px;
  flex-shrink: 0; /* prevent icon from shrinking */
}

/* Text styling */
.shuttle-content p {
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  /* tablet */
  .shuttle-content p {
    max-width: 500px; /* wrap text into two lines if needed */
  }
}

@media (max-width: 768px) {
  /* mobile */
  .shuttle-content {
    gap: 8px;
  }
  .shuttle-content p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  /* small mobile */
  .shuttle-content p {
    font-size: 0.9rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
  .hero-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-tagline {
    font-size: 0.9rem;
  }
  .hero-desc {
    font-size: 0.85rem;
  }
}

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

.neighborhoods-section {
  padding: 25px 20px;
  background: #f5f5f5;
}

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

.neighborhoods-section h2 {
  font-size: 38px;
  margin-bottom: 40px;
  color: #222;
  font-weight: 700;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
  width: 100%;
  max-width: 280px;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid #007bff;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.card-header .icon {
  font-size: 1.2rem;
  color: #007bff;
}

.card-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.highlights span {
  font-size: 0.75rem;
  background: #007bff10;
  color: #007bff;
  padding: 3px 8px;
  border-radius: 5px;
}

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

@media (max-width: 480px) {
  .card {
    max-width: 100%;
  }
}

/*-----------------------------------------------------------------------*/
.colombo-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.colombo-hero-section {
  margin-bottom: 20px;
  padding: 20px 20px;
  background-color: #fff6e8;
}

.colombo-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(139, 69, 19, 0.1) 0%,
    rgba(184, 115, 51, 0.15) 100%
  );
  color: #8b4513;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
}

.colombo-main-title {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.colombo-subtitle {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #64748b;
  max-width: 700px;
  line-height: 1.8;
}

.colombo-main-title,
.colombo-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.colombo-attractions-section {
  max-width: 900px;
  margin: 20px auto;
}

.colombo-attraction-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  margin-top: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.colombo-attraction-item:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.colombo-attraction-top {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  gap: 15px;
}

.colombo-attraction-top:hover {
  background: rgba(139, 69, 19, 0.02);
}

.colombo-attraction-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.colombo-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(139, 69, 19, 0.1) 0%,
    rgba(184, 115, 51, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.colombo-attraction-item:hover .colombo-icon-circle {
  transform: scale(1.1);
}

.colombo-icon-circle svg {
  width: 28px;
  height: 28px;
  color: #8b4513;
}

.colombo-attraction-text {
  flex: 1;
  min-width: 0;
}

.colombo-attraction-name {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 6px;
  line-height: 1.3;
  word-wrap: break-word;
}

.colombo-time-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #64748b;
  flex-wrap: wrap;
}

.colombo-time-info svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.colombo-expand-icon {
  width: 24px;
  height: 24px;
  color: #94a3b8;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.colombo-attraction-item.active .colombo-expand-icon {
  transform: rotate(180deg);
}

.colombo-attraction-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.colombo-attraction-item.active .colombo-attraction-details {
  max-height: 2500px;
}

.colombo-details-wrapper {
  padding: 0 24px 24px;
}

.colombo-description-text {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.colombo-highlights-section {
  background: linear-gradient(
    135deg,
    rgba(139, 69, 19, 0.03) 0%,
    rgba(184, 115, 51, 0.05) 100%
  );
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.colombo-highlights-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  font-size: 16px;
}

.colombo-highlights-title svg {
  width: 18px;
  height: 18px;
  color: #8b4513;
  flex-shrink: 0;
}

.colombo-highlights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.colombo-highlight-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.colombo-highlight-point svg {
  width: 18px;
  height: 18px;
  color: #8b4513;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.colombo-attraction-item.active .colombo-details-wrapper {
  animation: fadeIn 0.4s ease-out;
}

/* Tablet Responsive */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  .colombo-hero-section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }

  .colombo-badge {
    padding: 8px 20px;
    font-size: 13px;
  }

  .colombo-attraction-top {
    padding: 18px 20px;
  }

  .colombo-attraction-left {
    gap: 12px;
  }

  .colombo-icon-circle {
    width: 48px;
    height: 48px;
  }

  .colombo-icon-circle svg {
    width: 24px;
    height: 24px;
  }

  .colombo-highlights-list {
    grid-template-columns: 1fr;
  }

  .colombo-details-wrapper {
    padding: 0 20px 20px;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .colombo-container {
    padding: 0 10px;
  }

  .colombo-hero-section {
    padding: 20px 10px;
    margin-bottom: 30px;
  }

  .colombo-badge {
    padding: 6px 16px;
    font-size: 12px;
  }

  .colombo-attraction-item {
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .colombo-attraction-top {
    padding: 16px;
    flex-direction: row;
    align-items: flex-start;
  }

  .colombo-attraction-left {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .colombo-icon-circle {
    width: 44px;
    height: 44px;
  }

  .colombo-icon-circle svg {
    width: 22px;
    height: 22px;
  }

  .colombo-attraction-text {
    width: 100%;
  }

  .colombo-details-wrapper {
    padding: 0 16px 16px;
  }

  .colombo-description-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .colombo-highlights-section {
    padding: 16px;
  }

  .colombo-highlight-point {
    font-size: 13px;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .colombo-highlights-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*-------------------------------------------------------*/
.tour-packages-section {
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  margin-top: -25px;
}

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

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

.badge {
  display: inline-block;
  background: rgba(139, 69, 19, 0.1);
  color: #8b4513;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #666;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.package-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

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

.package-card.special {
  border: 2px solid #e59c00;
  position: relative;
}

.special-badge {
  background: #e59c00;
  color: white;
  text-align: center;
  padding: 0.625rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.package-content {
  padding: 1.5rem;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.duration-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.clock-icon {
  width: 16px;
  height: 16px;
}

.pricing {
  margin-bottom: 1rem;
}

.original-price {
  font-size: 0.875rem;
  color: #999;
  text-decoration: line-through;
}

.current-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #8b4513;
}
.best-current-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #e59c00;
}
.package-description {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.attractions-section {
  margin-bottom: 0.5rem;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 0.5rem;
}

.attractions-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-pin-icon {
  width: 16px;
  height: 16px;
  color: #8b4513;
}

.attractions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.attraction-tag {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: #333;
  font-weight: 500;
}

.includes-list {
  margin-bottom: 1.5rem;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: #8b4513;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.include-text {
  color: #333;
  line-height: 1.5;
}

.more-includes {
  font-size: 0.875rem;
  color: #666;
  font-style: italic;
}

.book-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #8b4513;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.book-button:hover {
  background: #6d3610;
  transform: scale(1.02);
}

.book-button.special-btn {
  background: linear-gradient(135deg, #e59c00 0%, #865c00 100%);
}

.arrow-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tour-packages-section {
    padding: 3rem 1rem;
  }
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*----------------------------------------------------*/
.travel-tips-section {
  padding: 20px 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    #f8f9fa 50%,
    rgba(59, 130, 246, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.travel-tips-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(59, 130, 246, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.travel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.travel-section-header {
  text-align: center;
  margin-bottom: 60px;
}
/* Wrap icon + title on the same line */
.travel-section-header > .icon-badge,
.travel-section-header > .travel-section-title {
  display: inline-block;
  vertical-align: middle;
}

.travel-section-header > .icon-badge {
  margin-bottom: 0; /* remove bottom spacing */
  margin-right: 12px; /* spacing between icon and title */
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, rgba(59, 130, 246, 0.8) 100%);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.icon-badge svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-top: 10px;
}

.travel-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(
    90deg,
    #000407 0%,
    #001d4c 50%,
    rgb(0 97 255 / 80%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.travel-section-subtitle {
  display: block;
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  margin-top: -20px;
}

.tip-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.tip-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    transparent 100%
  );
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.tip-card:hover::before {
  opacity: 1;
}

.tip-content {
  position: relative;
  display: flex;
  align-items: start;
  gap: 16px;
}

.tip-number {
  position: relative;
  flex-shrink: 0;
}

.number-badge {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #3b82f6 0%, rgba(59, 130, 246, 0.8) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease;
}

.tip-card:hover .number-badge {
  transform: scale(1.1);
}

.number-badge::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #3b82f6 0%, rgba(59, 130, 246, 0.8) 100%);
  border-radius: 12px;
  filter: blur(8px);
  opacity: 0.2;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.tip-card:hover .number-badge::before {
  opacity: 0.4;
}

.tip-text {
  color: rgba(26, 26, 26, 0.9);
  font-size: 0.875rem;
  line-height: 1.6;
  padding-top: 4px;
  transition: color 0.3s ease;
}

.tip-card:hover .tip-text {
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

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

/* Responsive tweaks */
@media (max-width: 768px) {
  .icon-title-wrapper {
    flex-direction: column; /* stack icon above title on mobile */
    gap: 8px;
  }

  .tips-grid {
    grid-template-columns: 1fr; /* stack cards */
  }

  .travel-section-title {
    font-size: 2rem;
  }

  .travel-section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .travel-section-title {
    font-size: 1.75rem;
  }

  .travel-section-subtitle {
    font-size: 0.95rem;
  }

  .tip-card {
    padding: 16px;
  }
}
/*------------------------------------------*/
/* General Section Styles */
.kandy-cta {
  padding: 40px 20px;
  background: linear-gradient(135deg, #7d838b, #00408e);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: -15px;
}

/* Container */
.kandy-cta .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Heading */
.kandy-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease forwards;
}

/* Paragraph */
.kandy-cta p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  animation: fadeInUp 1.2s ease forwards;
}

/* Buttons Wrapper */
.kandy-cta .buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .kandy-cta .buttons {
    flex-direction: row;
  }
}

/* Button Base */
.kandy-cta .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* spacing between icon and text */
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* WhatsApp Button */
.kandy-cta .btn-whatsapp {
  background-color: #ca8a00;
  color: #fff;
}

.kandy-cta .btn-whatsapp:hover {
  background-color: #000a9b;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Schedule Button */
.kandy-cta .btn-schedule {
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
}

.kandy-cta .btn-schedule:hover {
  background-color: #fff;
  color: #c5a800;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* Fade-in Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 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: -10px;
}

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

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
  .yala-benefits {
    padding: 40px 10px; /* Adjust padding for smaller screens */
  }

  .benefits-container {
    justify-content: space-around; /* More evenly distributed cards on mobile */
  }

  .benefit-card {
    width: 90%; /* Allow the cards to take more width on mobile */
    margin-bottom: 20px; /* Add space between cards on mobile */
    padding: 15px; /* Adjust padding for better appearance */
  }
  .benefits-title {
    font-size: 1.8rem; /* Slightly smaller font size for mobile */
  }

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

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