:root {
  /* Primary palette */
  --sea: #0A73B7;
  --nature: #0B6B3A;
  --gold: #E3A400;
  --coral: #FF6B4A;

  /* Neutrals */
  --sand: #F6E9D7;
  --soft-gray: #F4F6F8;
  --charcoal: #222222;
  --muted: #6B6B6B;

  /* Utility */
  --white: #ffffff;
  --black: #000000;

  /* Spacing / depth */
  --elevation-1: 0 1px 3px rgba(34, 34, 34, 0.06);
  --elevation-2: 0 6px 18px rgba(34, 34, 34, 0.08);
  --transition: all 0.25s ease;
  --transition-fast: all 0.15s ease;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------------
   RESET & BASE
------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--sand);
  color: var(--charcoal);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 12px rgba(227, 164, 0, 0.3);
}

.btn-primary:hover {
  background: #d69a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 164, 0, 0.35);
}

/* ------------------------------------------------------------------
   SPLASH SCREEN – glass-style, responsive
------------------------------------------------------------------ */
#splash {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#splash.hide {
  opacity: 0;
  visibility: hidden;
}

.splash-inner {
  text-align: center;
}

.splash-inner h1 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 16px;
  font-weight: 600;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transform: scale(0);
  animation: logoPop 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

.splash-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transform: scale(0);
  animation: logoPop 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

@keyframes logoPop {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.splash-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.splash-progress-bar {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: progressFill 3s linear forwards;
}

@keyframes progressFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .splash-logo {
    height: 60px;
  }
}

/* ------------------------------------------------------------------
   LANGUAGE SELECTOR POPUP – Glassmorphism
------------------------------------------------------------------ */
.lang-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lang-popup.show {
  opacity: 1;
  visibility: visible;
}

.lang-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: popupSlide 0.4s ease-out;
}

@keyframes popupSlide {
  from {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.lang-content h3 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
}

.lang-select-wrapper {
  margin: 1.5rem 0;
  position: relative;
}

.lang-select {
  width: 100%;
  padding: 14px 16px 14px 40px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.lang-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227, 164, 0, 0.2);
}

.lang-select-wrapper::after {
  content: 'Down Arrow';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 0.8rem;
  pointer-events: none;
}

.lang-select:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-btn {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(227, 164, 0, 0.3);
}

.lang-btn:hover {
  background: #d69a00;
  transform: translateY(-2px);
}

.lang-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.lang-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

@media (max-width: 480px) {
  .lang-content {
    padding: 1.5rem;
    border-radius: 14px;
  }

  .lang-content h3 {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------------------------
   NAVBAR – Glassmorphism
------------------------------------------------------------------ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  color: var(--white);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
  overflow: hidden;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
  z-index: 1;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.4px;
  color: var(--nature);
  text-decoration: none;
  transition: var(--transition-fast);
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-logo:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--nature);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-btn {
  margin-left: 1rem;
  background: var(--nature);
  color: var(--charcoal);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(227, 164, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.nav-btn:hover {
  background: #095a2e;
  box-shadow: 0 8px 20px rgba(227, 164, 0, 0.4);
}

.cta-btn {
  background: rgba(227, 164, 0, 0.9);
  color: var(--charcoal);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(227, 164, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.cta-btn:hover {
  background: #d69a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 164, 0, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ------------------------------------------------------------------
   HERO SECTION – Image Slider Background
------------------------------------------------------------------ */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  inset: 0;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  max-width: 800px;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* ------------------------------------------------------------------
   SERVICES SECTION – Circle Cards
------------------------------------------------------------------ */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--elevation-2);
  transition: var(--transition);
  text-align: center;
  padding: 2rem;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--gold);
  box-shadow: 0 4px 12px rgba(227, 164, 0, 0.2);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-card a {
  color: var(--sea);
  font-weight: 600;
  transition: var(--transition);
}

.service-card a:hover {
  color: var(--gold);
}

/* ------------------------------------------------------------------
   BOOK NOW SECTION – Slider + Form + Grid
------------------------------------------------------------------ */
#book {
  position: relative;
  background: var(--soft-gray);
  overflow: hidden;
}

.book-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.book-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.book-slide.active {
  opacity: 1;
}

.book-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.book-form,
.book-info {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.book-form h3,
.book-info h3 {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  font-size: 1.6rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row>* {
  flex: 1;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(227, 164, 0, 0.15);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.book-info p {
  margin-bottom: 2rem;
  color: var(--charcoal);
  opacity: 0.9;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.image-grid img {
  border-radius: 12px;
  width: 100%;
  height: 120px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------------
   CONTACT SECTION – Gradient + Icons + Map
------------------------------------------------------------------ */
#contact {
  background: linear-gradient(135deg, var(--sea), var(--nature));
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-info p,
.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  opacity: 0.9;
  font-size: 1.1rem;
}

.contact-info a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.social-links a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  border: 0;
  filter: brightness(0.95);
}

.contact-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--gold);
}

/* ------------------------------------------------------------------
   FOOTER – Glassmorphism, Responsive
------------------------------------------------------------------ */
.footer {
  background: linear-gradient(135deg, rgba(0, 32, 53, 0.95), rgba(0, 44, 21, 0.95));
  color: var(--white);
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 2rem;
  padding: 4rem 0 2rem;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-col p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact i {
  width: 20px;
  color: var(--gold);
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a:hover {
  color: var(--gold);
}

.newsletter-form {
  display: flex;
  align-items: center;
  height: 48px;
  /* set a clean height */
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.newsletter-form input {
  flex: 1;
  height: 100%;
  /* match container height */
  padding: 0 16px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  height: 100%;
  /* match input height */
  padding: 0 20px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin: 0;
  /* no weird top gaps */
}

.newsletter-form button:hover {
  background: #d69a00;
  transform: scale(1.05);
}





/* ------------------------------------------------------------------
   SRI LANKA PAGE – HERO SLIDER + BUTTONS + CONTENT
------------------------------------------------------------------ */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-title-bottom {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 90%;
  max-width: 800px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-title-bottom h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--charcoal);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  width: 180px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 2px solid transparent;
}

.action-btn i {
  font-size: 2rem;
  color: var(--sea);
}

.action-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
  background: var(--sand);
}

.action-btn span {
  font-size: 1rem;
}

/* Section 3 */
.sub-heading {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  position: relative;
  display: inline-block;
}

.sub-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.intro-paragraph {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* Game Container */
.game-container {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  /* ensures video doesn’t spill out */
}

/* Background video setup */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keeps video covering background */
  z-index: -2;
}

/* Dark overlay (similar to your linear-gradient effect) */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: -1;
}

/* Content styling */
.content {
  position: relative;
  z-index: 1;
}


.game-step {
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out;
}

.game-step h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.game-step p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Region Buttons */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.region-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.region-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(227, 164, 0, 0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.region-btn:hover::before {
  opacity: 1;
}

.region-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.region-btn i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.region-btn.recommended {
  border: 2px solid var(--gold);
  background: rgba(227, 164, 0, 0.1);
}

.region-btn.recommended::after {
  content: 'Recommended';
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 700;
}

/* Place Cards */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.place-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out;
}

.place-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.place-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.place-card-content {
  padding: 1.5rem;
}

.place-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.place-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 1rem;
}

.image-grid img {
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

/* Back Button */
.back-btn {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid var(--glass-border);
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.back-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .game-step h1 {
    font-size: 2.2rem;
  }

  .region-grid {
    grid-template-columns: 1fr;
  }

  .places-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title-bottom h1 {
    font-size: 2.2rem;
  }

  .action-buttons {
    gap: 1rem;
  }

  .action-btn {
    width: 160px;
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-title-bottom {
    bottom: 5%;
    padding: 1rem 2rem;
  }

  .hero-title-bottom h1 {
    font-size: 1.8rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .action-btn {
    width: 100%;
    max-width: 300px;
    flex-direction: row;
    justify-content: center;
  }

  .action-btn i {
    font-size: 1.5rem;
  }
}



/* ------------------------------------------------------------------
   RESPONSIVE FOOTER
------------------------------------------------------------------ */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-col:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col:first-child {
    grid-column: 1;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .newsletter-form {
    max-width: 280px;
    margin: 1rem auto 0;
  }
}

/* ------------------------------------------------------------------
   ANIMATIONS
------------------------------------------------------------------ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------------ */
@media (max-width: 992px) {

  .book-container,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 115, 183, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0;
  }

  .nav-link::after {
    display: none;
  }

  .cta-btn {
    margin-top: 1rem;
    padding: 12px 24px;
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .service-img {
    width: 80px;
    height: 80px;
  }
}

/* ------------------------------------------------------------------
   TESTIMONIALS SECTION
------------------------------------------------------------------ */
#testimonials {
  background: var(--soft-gray);
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.testimonial-widget {
  width: 100%;
  max-width: 1200px;
}

.testimonial-card.tripadvisor-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--elevation-2);
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

.tripadvisor-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #ffffff, #f0fdf9);
}

.tripadvisor-content h3 {
  margin: 1rem 0;
  font-size: 1.8rem;
  color: var(--charcoal);
}

.tripadvisor-content p {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 80%;
}