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

/* ================= T20 HERO ================= */

/* ===================== BUTTON ROW ===================== */
.t20-button-row {
  background: #ffffff;
  padding: 12px 15px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 10;
  margin-top: 140px; /* push below fixed header */
}

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

.btn-pill {
  background: #e2ae3f;
  color: #012c60;
  padding: 8px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.btn-pill:hover {
  background: #ffb703;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 5px 26px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  border: 2px solid #012c60;
  color: #e2ae3f;
  padding: 5px 26px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.btn-outline:hover {
  background: #ffffff;
  color: #012c60;
  transform: translateY(-3px);
}
html {
  scroll-behavior: smooth; /* smooth scroll effect */
}

/* ===================== RESPONSIVE ===================== */
/* Tablets & small screens */
@media (max-width: 768px) {
  .t20-action-buttons {
    display: flex;
    flex-wrap: wrap; /* allow wrapping */
    gap: 12px;
    justify-content: center;
  }

  .btn-pill,
  .btn-whatsapp,
  .btn-outline {
    flex: 1 1 calc(50% - 12px); /* 2 buttons per row */
    max-width: calc(50% - 12px);
    display: flex; /* ensures content centers */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    box-sizing: border-box; /* include padding in width */
  }

  .btn-whatsapp {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .btn-pill,
  .btn-whatsapp,
  .btn-outline {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
    font-size: 13px;
    padding: 10px 0;
  }
}

/* Ultra small screens (very narrow phones) */
@media (max-width: 360px) {
  .btn-pill,
  .btn-whatsapp,
  .btn-outline {
    flex: 1 1 100%; /* 1 button per row for narrow screens */
    max-width: 100%;
    font-size: 12px;
    padding: 8px 0;
  }
}

/*---------------------------------------------------------*/
.t20-hero {
  position: relative;
  padding: 20px 20px 20px;
  background: linear-gradient(135deg, #021b3a, #012c60);
  color: #fff;
  overflow: hidden;
  text-align: center;
}

/* Background blobs */
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: #facc15;
  top: 10%;
  left: 5%;
}

.blob-2 {
  width: 420px;
  height: 420px;
  background: #38bdf8;
  bottom: 10%;
  right: 5%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(15px);
  }
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Hero Sentence */
.hero-hero-sentence {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  color: #fff;
  line-height: 1;
  max-width: 1800px;
  margin: 0 auto 40px;
}

.hero-hero-sentence i {
  color: #facc15;
  margin-right: 10px;
}

.hero-hero-sentence span {
  display: block;
  background: #e2ae3f;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 8px;
}

.promo-card {
  background: linear-gradient(135deg, #facc15, #38bdf8);
  color: #012c60;
  border-radius: 10px;
  padding: 8px 25px;
  max-width: 600px;
  margin: -10px auto 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}

.promo-card:hover {
  transform: translateY(-10px) scale(1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  background: #ff0004;
  color: #fff;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Divider with left and right */
.promo-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0px;
  gap: 10px;
}

/* Left & Right content */
.left-content,
.right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Left content styling */
.left-content .promo-small {
  font-weight: 600;
  font-size: 14px;
  color: #012c60;
  margin: 0;
}

.left-content .promo-code {
  font-size: 24px;
  font-weight: 800;
  margin: 4px 0 0;
  background: #012c60;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Right content styling */
.right-content .promo-offer {
  font-size: 36px;
  font-weight: 900;
  margin: 0;
  color: #012c60;
}

.right-content .promo-offer span {
  font-size: 28px;
  background: #012c60;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.right-content .promo-note {
  font-size: 14px;
  color: #012c60;
  margin-top: 4px;
}

/* Promo divider */
.promo-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 90px; /* parent height */
}

/* Vertical dotted line */
.divider-line-vertical {
  width: 2px; /* thickness of the line */
  height: 100%; /* make it fill parent vertically */
  background-image: linear-gradient(
    to bottom,
    #fff 20%,
    rgba(255, 255, 255, 0) 0%
  );
  background-size: 2px 10px; /* size of dot and spacing */
  background-repeat: repeat-y;
  flex-shrink: 0;
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 15px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 14px;
}

.hero-stats strong {
  font-size: 26px;
  color: #facc15;
  display: block;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-hero-sentence {
    font-size: 32px;
  }
  .promo-offer {
    font-size: 36px;
  }
}
/* ===================== HERO SECTION RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-hero-sentence {
    font-size: 36px;
  }
  .promo-card {
    max-width: 90%;
    padding: 10px 20px;
  }
  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .hero-hero-sentence {
    font-size: 28px;
  }
  .promo-card {
    max-width: 95%;
    padding: 8px 16px;
  }
  .ribbon {
    font-size: 11px;
    padding: 4px 12px;
  }
  .promo-divider {
    flex-direction: column;
    gap: 0px;
    height: auto;
  }
  .left-content,
  .right-content {
    align-items: center;
    text-align: center;
  }
  .right-content .promo-offer {
    font-size: 28px;
  }
  .right-content .promo-offer span {
    font-size: 22px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-hero-sentence {
    font-size: 26px;
  }
  .promo-card {
    padding: 6px 12px;
  }
  .ribbon {
    font-size: 10px;
    padding: 3px 10px;
  }
  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
  .right-content .promo-offer {
    font-size: 24px;
  }
  .right-content .promo-offer span {
    font-size: 18px;
  }
}

/* Ultra small screens */
@media (max-width: 360px) {
  .hero-hero-sentence {
    font-size: 20px;
  }
  .promo-card {
    padding: 5px 10px;
  }
  .ribbon {
    font-size: 9px;
    padding: 2px 8px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .right-content .promo-offer {
    font-size: 20px;
  }
  .right-content .promo-offer span {
    font-size: 16px;
  }
}

/* ==================== General Styles ==================== */

/* ===== Container ===== */
.venue-container {
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 1rem;
}

/* ===== Section Header ===== */
.text-center {
  text-align: center;
  margin-bottom: 2rem;
}
.badge {
  display: inline-block;
  background: #fcefee;
  color: #b91c1c;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
h2 {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #012c60;
}
p.subtitle {
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Tabs ===== */
/* ===== Tabs ===== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-group {
  display: flex;
  gap: 0.5rem;
  background: #e5e7eb; /* gray-200 */
  padding: 0.25rem;
  border-radius: 0.5rem;
}

.tab {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: bold;
  transition: all 0.3s ease;
  background: #cfcfcf;
  color: #111827;
}

/* Active states */
.tab.active {
  background: #014f8c; /* Primary blue */
  color: #ffffff;
}

.tab.colombo.active {
  background: #2563eb; /* Blue-600 */
}

.tab.kandy.active {
  background: #059669; /* Emerald-600 */
}

/* ===== Match Cards ===== */
.cards {
  display: grid;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

/* ===== Stage Badge ===== */
.stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-width: 140px;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.875rem;
  text-align: center;
}

.stage.group {
  background: #2563eb; /* Group */
}

.stage.super8 {
  background: #4f46e5; /* Super 8 */
}

.stage.semi {
  background: #f59e0b; /* Semi Final */
}

.stage.final {
  background: #b91c1c; /* Final */
  color: #ffffff;
}

/* ===== Match Info ===== */
.match-info {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: row;
  gap: 160px;
}

.teams {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
  color: #111827;
}

.teams .vs {
  font-weight: 500;
  color: #6b7280;
}

.details {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  white-space: nowrap;
}

.details span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.details i {
  color: #2563eb;
  font-size: 1rem;
}

/* ===== Mobile: up to 768px ===== */
@media (max-width: 768px) {
  /* Tabs wrap to multiple lines */
  .tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .tab-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
  }

  /* Match cards stack vertically */
  .cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .card {
    flex-direction: column; /* stack stage & match info vertically */
    gap: 0;
  }

  /* Stage takes full width on small screens */
  .stage {
    width: 100%;
    min-width: auto;
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  /* Match info stack */
  .match-info {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .teams {
    justify-content: center;
    gap: 0.25rem;
  }

  .details {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  /* Reduce spacing for small screens */
  .details span {
    gap: 0.2rem;
  }

  .details i {
    font-size: 0.9rem;
  }
}

/* ===== Mobile: up to 768px ===== */
@media (max-width: 768px) {
  /* Match cards stack vertically */
  .cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .card {
    flex-direction: column; /* stack stage & match info vertically */
    gap: 0.5rem;
  }

  /* Stage badges row inside card */
  .stage {
    width: auto; /* allow multiple badges in a row */
    min-width: auto;
    padding: 0.5rem 1rem;
    margin-right: 0rem; /* gap between badges */
    display: inline-flex; /* horizontal layout */
    justify-content: center;
    font-size: 0.875rem;
  }

  /* Container for multiple stages (if needed) */
  .stages-container {
    display: flex;
    flex-wrap: wrap; /* wrap to next line if needed */
    gap: 0.5rem;
    justify-content: center;
  }

  /* Match info stack */
  .match-info {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .teams {
    justify-content: center;
    gap: 0.25rem;
  }

  .details {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* ================== CTA Section ================== */
.stadium-cta {
  width: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    #000c23 0%,
    /* Deep Blue */ #264b5b 50%,
    /* Medium Blue */ #df9800 85% /* Golden Yellow */
  );

  padding: 25px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: rgb(255, 255, 255);
}

/* Decorative blurred circles */
.stadium-cta::before,
.stadium-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(120px);
  z-index: 0;
}
.stadium-cta::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}
.stadium-cta::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
}

/* Inner container to center content */
.cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Heading */
.stadium-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Subtext */
.stadium-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #e2ae3f; /* bright green */
  color: #012c60;
  font-weight: 600;
  padding: 12px 35px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #f59e0b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* ================== Responsive ================== */
@media (max-width: 768px) {
  .stadium-cta h3 {
    font-size: 1.7rem;
  }
  .stadium-cta p {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 14px 30px;
  }
}

@media (max-width: 480px) {
  .stadium-cta {
    padding: 15px 15px;
  }
  .stadium-cta h3 {
    font-size: 1.5rem;
  }
  .stadium-cta p {
    font-size: 0.95rem;
  }
  .cta-button {
    padding: 12px 25px;
  }
}

/* ------------------------ Container ------------------------ */
.container {
  max-width: 1200px;
  margin: 12px auto;
  padding: 0 1rem;
}

/* Section Header */
.venue-section {
  padding: 0.5rem 0;
  background: rgba(248, 250, 252, 0.5);
}

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

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #6b7280;
  margin-bottom: -15px;
}

/* Grid */
.venue-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

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

/* Venue Card */
.venue-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Header */
.venue-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: #fff;
}

.venue-card.colombo .venue-header {
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.venue-card.kandy .venue-header {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.venue-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.venue-info p {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.venue-info i {
  margin-right: 0.25rem;
}

.venue-capacity p:first-child {
  font-size: 1.75rem;
  font-weight: 700;
}

.venue-desc {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: #555;
}

/* Inner Sections */
.venue-section-inner {
  padding: 1rem 1.5rem;
}

.venue-section-inner h4 {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.venue-section-inner h4 i {
  color: inherit;
  width: 1.25rem;
  text-align: center;
}

/* Access */
.access-list .access-item {
  background: rgba(229, 231, 235, 0.5);
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.access-name {
  font-weight: 500;
  font-size: 0.875rem;
}

.access-desc {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Parking */
.parking-list .parking-item {
  background: rgba(229, 231, 235, 0.5);
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.park-capacity {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.park-location {
  font-size: 0.75rem; /* text-xs */
  color: #6b7280; /* text-muted-foreground */
  line-height: 1.4;
}

.venue-card.kandy .park-capacity {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.park-tip {
  font-size: 0.75rem;
  color: #6b7280;
  font-style: italic;
  width: 100%;
  margin-top: 0.25rem;
}

/* Snack Bars */
.snack-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.snack-item {
  background: rgba(229, 231, 235, 0.5);
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.snack-name {
  font-weight: 500;
  font-size: 0.875rem;
}

.snack-location,
.snack-specialty {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* Tips */
.tips-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.25rem;
}

.tips-list li {
  font-size: 0.75rem;
  color: #6b7280;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1rem;
}

.tips-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0ea5e9;
}

.venue-card.kandy .tips-list li::before {
  background: #f97316;
}

.venue-card.ssc .venue-header {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}
.venue-card.ssc .park-capacity {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.venue-card.ssc .tips-list li::before {
  background: #22c55e;
}

/* Venue Map Container */
.venue-map {
  width: 100%;
  aspect-ratio: 16 / 9; /* keeps consistent ratio */
  overflow: hidden;
  border-radius: 0.75rem;
  margin: 0 0rem 1.2rem;
  background: #f5f5f5;
  position: relative;
}

/* Image styling – FULL & CLEAR */
.venue-map img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ SHOW FULL IMAGE */
  display: block;
}
@media (max-width: 768px) {
  .venue-map {
    margin: 0 1rem 1rem;
    aspect-ratio: 4 / 3;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .snack-list {
    grid-template-columns: 1fr;
  }
}
/* ===== Section ===== */
.city-tours {
  padding: 1.2rem 1rem;
  background: #edf5ff;
}

.tour-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge {
  display: inline-block;
  background: rgba(234, 179, 8, 0.1);
  color: #854d0e;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 5vw, 2.25rem);
  font-weight: bold;
  color: #012c60;
  margin-bottom: 0rem;
  line-height: 1.2;
}

.section-header p {
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: -1.5rem;
}

.section-header strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* ===== Shuttle Banner ===== */
.shuttle-banner {
  position: relative;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
  margin: 0 auto 3rem;
  max-width: 52rem;
  text-align: center;
  box-shadow:
    0 25px 70px rgba(245, 158, 11, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  overflow: hidden;
  animation: floatBanner 4s ease-in-out infinite;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.shuttle-banner:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 35px 90px rgba(245, 158, 11, 0.6);
}

/* Glow overlay */
.shuttle-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  pointer-events: none;
}

/* FREE badge */
.shuttle-badge {
  position: absolute;
  top: 5px;
  right: 1.25rem;
  background: #18181b;
  color: #facc15;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Title */
.shuttle-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.shuttle-title h3 {
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #18181b;
}

/* Icon animation */
.shuttle-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: #18181b;
  animation: pulseIcon 2.5s ease-in-out infinite;
}

/* Description */
.shuttle-banner p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(24, 24, 27, 0.85);
  max-width: 42rem;
  margin: 0 auto;
}

/* Animations */
@keyframes floatBanner {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

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

/* ===== Cards Grid ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

/* ===== Card ===== */
.tour-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: block;
}

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

/* ===== Image Container ===== */
.card-image-container {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

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

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

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}

/* ===== Badge on Image ===== */
.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 10;
}

.card-badge.kandy-badge {
  background: #059669;
}

.card-badge.colombo-badge {
  background: #014f8c;
}

.star-icon {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
}

/* ===== City Title on Image ===== */
.card-title-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
}

.card-title-overlay h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.card-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

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

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.meta-icon {
  width: 1rem;
  height: 1rem;
}

.meta-icon.kandy-icon {
  color: #059669;
}

.meta-icon.colombo-icon {
  color: #014f8c;
}

/* ===== Highlights List ===== */
.highlights-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.highlights-list li {
  font-size: 0.875rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.bullet {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
}

.bullet.kandy-bullet {
  background: #059669;
}

.bullet.colombo-bullet {
  background: #014f8c;
}

/* ===== Card Footer ===== */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-section p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.price.kandy-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #059669;
}

.price.colombo-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #014f8c;
}

/* ===== Buttons ===== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button.kandy-btn {
  background: #059669;
}

.cta-button.colombo-btn {
  background: #014f8c;
}

.tour-card:hover .cta-button {
  gap: 0.75rem;
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .city-tours {
    padding: 1.5rem 1rem;
  }

  .shuttle-banner {
    padding: 2rem;
  }

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

  .card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
/*----------------------------------------------------------------*/
.whatsapp-cta {
  position: relative;
  padding: 20px 20px;
  background: linear-gradient(135deg, #4f9c6c, #cfcfcf);
  color: #fff;
  overflow: hidden;
  text-align: center;
}

/* Glow Effects */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.glow-1 {
  width: 300px;
  height: 300px;
  background: #25d366;
  top: 10%;
  left: 15%;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: #00bcd4;
  bottom: 10%;
  right: 15%;
}

.cta-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  z-index: 2;
}

.whatsapp-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
}

.whatsapp-cta h2 span {
  color: #012c60;
}

.whatsapp-cta p {
  margin: 10px auto;
  font-size: 1.1rem;
  color: #000000;
  max-width: 650px;
}

/* Features */
.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.feature {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition:
    transform 0.3s,
    background 0.3s;
  border: 2px solid #000c23;
}

.feature:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.feature h4 {
  margin: 2px 0 5px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
}

.feature span {
  font-size: 0.9rem;
  color: #012c60;
}

/* Icon Styling */
.feature .icon {
  width: 40px;
  height: 40px;
  color: #f59e0b; /* WhatsApp green */
  margin-bottom: 10px;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: 16px 48px;
  background: #012c60;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  animation: pulse 2s infinite;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* Ribbon for 2 lines */
.promo-ribbon {
  position: absolute;
  top: -30px; /* adjust vertical position */
  right: 80px; /* adjust horizontal position */
  background: red;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transform: rotate(-6deg);
  z-index: 2;
  text-transform: uppercase;
  line-height: 1.2; /* makes two lines closer */
  white-space: normal; /* allows text to wrap */
  text-align: center; /* center text inside ribbon */
  max-width: 185px; /* control ribbon width for 2 lines */
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 63, 211, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .whatsapp-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .promo-ribbon {
    font-size: 0.55rem;
    padding: 3px 8px;
    top: -25px;
    right: 65px;
    max-width: 158px;
  }
}

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