/* ============================================================
   SNOW FUN - Main Stylesheet
   Modern Snow Playground for Children
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Baloo+2:wght@400;500;600;700;800&family=Paytone+One&display=swap');

/* ---- CSS Variables (Design Tokens) ---- */
:root {
  --primary: #1e90ff;
  --primary-dark: #1565c0;
  --primary-light: #64b5f6;
  --accent: #00d4ff;
  --accent2: #a8edff;
  --snow: #f0f8ff;
  --white: #ffffff;
  --silver: #cce7ff;
  --deep-blue: #0a2342;
  --mid-blue: #1a3a6e;
  --text-dark: #1a2f4e;
  --text-muted: #5a7a9a;
  --gradient-hero: linear-gradient(135deg, #0a2342 0%, #1565c0 50%, #00d4ff 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #e8f4ff 100%);
  --gradient-accent: linear-gradient(135deg, #1e90ff, #00d4ff);
  --shadow-soft: 0 8px 32px rgba(30, 144, 255, 0.15);
  --shadow-card: 0 4px 20px rgba(30, 144, 255, 0.12);
  --shadow-hover: 0 12px 40px rgba(30, 144, 255, 0.3);
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
  --border-radius-xl: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Nunito', sans-serif;
  --font-display: 'Baloo 2', cursive;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ---- Utility Classes ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--deep-blue);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--border-radius-xl);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(30, 144, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30, 144, 255, 0.5);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 35, 66, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 180, 255, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 16px rgba(0, 180, 255, 0.5));
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.nav-cta {
  background: var(--gradient-accent);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.5);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   SNOWFALL ANIMATION
   ============================================================ */
.snowfall-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -20px;
  color: white;
  font-size: 1rem;
  opacity: 0.7;
  animation: snowfall linear infinite;
  user-select: none;
}

@keyframes snowfall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0.2;
  }
}

/* ============================================================
   PAGE 1 - HOME
   ============================================================ */

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-circles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.circle-2 { width: 600px; height: 600px; bottom: -200px; left: -200px; }
.circle-3 { width: 200px; height: 200px; top: 40%; right: 20%; }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-text {
  color: white;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #a8edff, #64b5f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  max-width: 520px;
  width: 100%;
}

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

.hero-badge {
  position: absolute;
  background: white;
  border-radius: var(--border-radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-1 {
  top: 24px;
  left: -24px;
}

.hero-badge-2 {
  bottom: 40px;
  right: -24px;
}

.badge-icon {
  font-size: 1.8rem;
}

.badge-text strong {
  display: block;
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 0.9rem;
  line-height: 1;
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* About Preview Section */
.about-preview {
  padding: 100px 0;
  background: var(--snow);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gradient-accent);
  color: white;
  border-radius: var(--border-radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.about-img-badge .big-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.about-text {
  padding-right: 20px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--deep-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.feature-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(30,144,255,0.1), rgba(0,212,255,0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.feature-item strong {
  color: var(--deep-blue);
}

/* Why Choose Section – Carousel */
.why-choose {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, #e8f4ff 100%);
}

/* Carousel wrapper */
.why-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-hover);
  margin-bottom: 40px;
}

.why-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Each slide */
.why-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 420px;
  background: white;
}

.why-slide-img {
  position: relative;
  overflow: hidden;
}

.why-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-carousel:hover .why-slide-img img {
  transform: scale(1.04);
}

.why-slide-text {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.why-slide-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.why-slide-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--deep-blue);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 14px;
}

.why-slide-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.why-slide-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--deep-blue);
  margin-bottom: 14px;
  line-height: 1.25;
}

.why-slide-text p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.why-slide-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-slide-points li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-blue);
}

/* Arrows */
.why-prev,
.why-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30,144,255,0.2);
  color: var(--primary);
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-prev { left: 16px; }
.why-next { right: 16px; }

.why-prev:hover,
.why-next:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 24px rgba(30,144,255,0.4);
}

/* Dots */
.why-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(30,144,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.why-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* CTA row */
.why-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.why-cta .btn {
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   ACTIVITIES STACK SECTION – 3-panel hover accordion
   ============================================================ */
.activities-stack-section {
  padding: 100px 0 0;
  background: var(--snow);
}

/* ---- Stack wrapper ---- */
.act-stack-wrapper {
  display: flex;
  height: 540px;
  margin-top: 60px;
  overflow: hidden;
}

/* ---- Individual stack panel ---- */
.act-stack {
  position: relative;
  flex: 1;                          /* each takes equal share by default */
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Expand on hover */
.act-stack-wrapper:hover .act-stack {
  flex: 0.35;                       /* shrink siblings */
}
.act-stack-wrapper:hover .act-stack:hover {
  flex: 2.3;                        /* expand hovered panel */
}

/* ---- Background image (full-cover, slight blur at rest) ---- */
.act-stack-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.act-stack-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px) brightness(0.55);
  transform: scale(1.06);
  transition: filter 0.65s ease, transform 0.65s ease;
  image-rendering: -webkit-optimize-contrast;
}

.act-stack:hover .act-stack-bg img {
  filter: blur(0px) brightness(0.42);
  transform: scale(1.02);
}

/* Dark gradient overlay */
.act-stack-blur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 35, 66, 0.35) 0%,
    rgba(10, 35, 66, 0.7) 100%
  );
  transition: opacity 0.5s ease;
}

/* ---- Preview state (visible when NOT hovered) ---- */
.act-stack-preview {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  text-align: center;
  padding: 24px;
  z-index: 2;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.act-stack-icon {
  font-size: 2.8rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  display: block;
  transition: transform 0.3s ease;
}

.act-stack:hover .act-stack-icon {
  transform: scale(0.85);
}

.act-stack-preview h3 {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  line-height: 1.25;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.act-stack-hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

/* Hide preview text on hover (the expanded content takes over) */
.act-stack:hover .act-stack-preview {
  opacity: 0;
  pointer-events: none;
}

/* ---- Expanded content (visible on hover) ---- */
.act-stack-expanded {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease 0.15s;
}

.act-stack:hover .act-stack-expanded {
  opacity: 1;
  pointer-events: auto;
}

/* Text block inside expanded */
.act-stack-exp-text {
  flex: 1;
  color: white;
  padding-right: 32px;
}

.act-stack-tag {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.act-stack-exp-text h2 {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: white;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.act-stack-exp-text > p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
}

.act-stack-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.act-stack-list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Image block inside expanded */
.act-stack-exp-img {
  flex: 0 0 220px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  height: 300px;
}

.act-stack-exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  filter: none;
  transform: none;
  transition: transform 0.5s ease;
}

.act-stack:hover .act-stack-exp-img img {
  transform: scale(1.04);
}

/* ---- Responsiveness ---- */
@media (max-width: 900px) {
  /* Why Choose Carousel Mobile */
  .why-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .why-slide-img {
    height: 250px;
    width: 100%;
  }
  .why-slide-text {
    padding: 32px 24px;
    text-align: center;
  }
  .why-slide-title {
    font-size: 1.5rem;
    padding-bottom: 10px;
  }
  .why-slide-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .why-slide-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  /* Activities Stack Mobile */
  .act-stack-wrapper {
    flex-direction: column;
    height: auto;
  }

  .act-stack {
    height: 180px;
    flex: none !important;
    transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .act-stack:hover,
  .act-stack.active {
    height: 440px !important;
    flex: none !important;
  }

  .act-stack-exp-img {
    display: none;
  }

  .act-stack-expanded {
    padding: 24px 24px;
    text-align: center;
    background: linear-gradient(to top, rgba(10,35,66,0.95), rgba(10,35,66,0.8));
  }

  .act-stack-preview h3 {
    white-space: normal;
    font-size: 1.3rem;
  }

  .act-stack-hint {
    display: none; /* Hide 'Di chuột' hint on mobile */
  }
}

/* Keep old activity card styles for compatibility */
.activity-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Map Section */
.location-section {
  padding: 100px 0;
  background: white;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--deep-blue);
  margin-bottom: 20px;
}

.location-info p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--snow);
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--primary);
}

.info-item .icon {
  font-size: 1.4rem;
}

.info-item .text strong {
  display: block;
  color: var(--deep-blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.info-item .text span {
  color: var(--text-muted);
  font-size: 0.87rem;
}

.map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Blog Preview */
.blog-preview {
  padding: 100px 0;
  background: linear-gradient(180deg, #e8f4ff 0%, white 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 2-column variant for 2 card layout */
.blog-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

/* Facebook article expand/collapse */
.fb-article-full {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  margin-top: 0;
}

.fb-article.expanded .fb-article-full {
  margin-top: 16px;
}

.fb-article-content {
  background: var(--snow);
  border-left: 4px solid var(--primary);
  border-radius: var(--border-radius-sm);
  padding: 20px 24px;
}

.fb-article-content p {
  margin-bottom: 12px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-dark);
}

.fb-article-content p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.toggle-fb-article {
  white-space: nowrap;
}


.blog-card {
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  overflow: hidden;
  height: 220px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-cat {
  display: inline-block;
  background: linear-gradient(135deg, rgba(30,144,255,0.1), rgba(0,212,255,0.1));
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  gap: 10px;
}

/* ============================================================
   PAGE 2 - ABOUT
   ============================================================ */
.page-hero {
  padding: 160px 0 100px;
  background: var(--gradient-hero);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--deep-blue);
  margin-bottom: 24px;
  line-height: 1.2;
}

.story-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.story-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Safety Section */
.safety-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2342 0%, #1565c0 100%);
  color: white;
  text-align: center;
}

.safety-section .section-title {
  color: white;
}

.safety-section .section-subtitle {
  color: rgba(255,255,255,0.75);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.safety-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius-md);
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.safety-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-6px);
}

.safety-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.safety-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent2);
}

.safety-card p {
  font-size: 0.88rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: var(--snow);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 28px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e8f4ff, var(--accent2));
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.benefit-text h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.benefit-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Photo Gallery */
.gallery-section {
  padding: 100px 0;
  background: white;
}

/* Coming Soon Loader */
.coming-soon-loader {
  max-width: 840px;
  margin: 60px auto 40px;
  padding: 50px 40px;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 40px rgba(30,144,255,0.08);
  border: 1px solid rgba(30,144,255,0.1);
  text-align: center;
}

.loader-track {
  position: relative;
  height: 28px;
  background: rgba(30,144,255,0.08);
  border-radius: 20px;
  margin: 90px 0 30px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

.loader-destination {
  position: absolute;
  top: -65px;
  right: -25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.destination-flag {
  font-size: 2.6rem;
  line-height: 1;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
  animation: flagWave 2s infinite ease-in-out alternate;
}

.destination-text {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--deep-blue);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 20px;
  transition: width 1s ease-in-out;
  box-shadow: 0 4px 15px rgba(30,144,255,0.3);
}

.loader-mascot {
  position: absolute;
  right: -60px;
  bottom: 35px;
  width: 140px;
  animation: bounceWalk 0.5s infinite alternate;
  z-index: 10;
}

.loader-mascot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 15px rgba(0,0,0,0.25));
}

.loader-percent {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
}

.loader-message {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--deep-blue);
  margin-top: 50px;
  font-weight: 700;
}

@keyframes bounceWalk {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes flagWave {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(10deg); }
}

@media (max-width: 768px) {
  .loader-mascot { width: 90px; right: -40px; bottom: 25px; }
  .loader-message { font-size: 1.2rem; }
  .destination-flag { font-size: 2rem; }
  .loader-destination { right: -10px; top: -55px; }
  .coming-soon-loader { padding: 40px 20px; margin-top: 40px; }
}

/* Activities Carousel */
.activities-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 10px 40px;
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #eee;
}

.activities-carousel::-webkit-scrollbar {
  height: 8px;
}
.activities-carousel::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 4px;
}
.activities-carousel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.activity-card {
  position: relative;
  min-width: 460px;
  max-width: 550px;
  flex: 0 0 auto;
  aspect-ratio: 3/2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

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

.activity-overlay {
  position: absolute;
  top: auto;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,144,255,0.95) 0%, rgba(30,144,255,0.5) 60%, transparent 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 60px 20px 20px;
  opacity: 0;
  transition: all 0.4s ease;
}

.activity-card:hover img {
  transform: scale(1.08);
}

.activity-card:hover .activity-overlay {
  opacity: 1;
}

.activity-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.activity-overlay p {
  font-size: 1.05rem;
  opacity: 0.9;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.activity-card:hover .activity-overlay h3,
.activity-card:hover .activity-overlay p {
  transform: translateY(0);
}

/* Lightbox Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.gallery-modal-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.gallery-modal-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close-modal {
  position: absolute;
  top: 20px; right: 30px;
  color: white;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2010;
  transition: color 0.3s;
}

.close-modal:hover { color: var(--accent); }

.prev-btn, .next-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 20px;
  color: white;
  font-weight: bold;
  font-size: 35px;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 2010;
}

.prev-btn:hover, .next-btn:hover { background-color: rgba(0,0,0,0.8); }
.prev-btn { left: 40px; }
.next-btn { right: 40px; }

.modal-caption {
  position: absolute;
  bottom: 2vh;
  left: 0; right: 0;
  text-align: center;
  color: white;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
  .activity-card { min-width: 280px; }
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #e8f4ff 0%, white 100%);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.quote-icon {
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  color: var(--deep-blue);
  font-weight: 700;
  font-size: 0.95rem;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.stars {
  color: #ffc107;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* All Activities */
.all-activities {
  padding: 100px 0;
  background: var(--snow);
}

.activities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.activity-list-item {
  background: white;
  border-radius: var(--border-radius-sm);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.activity-list-item:hover {
  border-left-color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.act-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.act-text h4 {
  font-weight: 700;
  color: var(--deep-blue);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.act-text span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============================================================
   PAGE 3 - EVENTS
   ============================================================ */

/* Timeline */
.timeline-section {
  padding: 100px 0;
  background: white;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-accent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-time {
  flex: 1;
  text-align: right;
  padding-top: 12px;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.05rem;
}

.timeline-item:nth-child(even) .timeline-time {
  text-align: left;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 3px solid white;
  box-shadow: 0 4px 16px rgba(30,144,255,0.4);
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  background: white;
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--primary-light);
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Event Types */
.event-types {
  padding: 100px 0;
  background: var(--snow);
}

.events-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.event-type-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
}

.event-type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.event-type-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-type-card:hover img {
  transform: scale(1.05);
}

.event-type-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,35,66,0.95));
  padding: 80px 28px 28px;
  color: white;
}

.event-type-tag {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-type-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.event-type-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Team Building */
.teambuilding-section {
  padding: 100px 0;
  background: white;
}

.teambuilding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.teambuilding-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.teambuilding-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.teambuilding-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--deep-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.teambuilding-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.game-item {
  background: var(--snow);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.game-item:hover {
  background: linear-gradient(135deg, rgba(30,144,255,0.1), rgba(0,212,255,0.1));
  transform: translateX(4px);
}

.game-item .g-icon {
  font-size: 1.5rem;
}

.game-item span {
  font-weight: 600;
  color: var(--deep-blue);
  font-size: 0.9rem;
}

/* QR Section */
.qr-section {
  padding: 100px 0;
  background: var(--gradient-hero);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.qr-box {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  max-width: 600px;
  margin: 40px auto 0;
  backdrop-filter: blur(15px);
}

.qr-code-wrapper {
  width: 180px;
  height: 180px;
  background: white;
  border-radius: var(--border-radius-md);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  padding: 16px;
}

.qr-code-wrapper svg {
  width: 100%;
  height: 100%;
}

.qr-section h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.qr-section > p {
  opacity: 0.85;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.qr-box p {
  opacity: 0.85;
  margin-bottom: 24px;
  font-size: 1rem;
}

/* ============================================================
   PAGE 4 - BLOG
   ============================================================ */

.blog-hero-section {
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-search {
  margin-top: 32px;
  display: flex;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  backdrop-filter: blur(10px);
}

.blog-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 0.95rem;
  font-family: var(--font-main);
}

.blog-search input::placeholder {
  color: rgba(255,255,255,0.6);
}

.blog-search button {
  background: white;
  color: var(--primary);
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-main);
  transition: var(--transition);
}

.blog-search button:hover {
  background: var(--accent2);
}

.blog-categories {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}

.cat-btn:hover,
.cat-btn.active {
  background: white;
  color: var(--primary);
}

.blog-main {
  padding: 80px 0 100px;
  background: var(--snow);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.blog-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-article-card {
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1fr;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.blog-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.article-img {
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-article-card:hover .article-img img {
  transform: scale(1.05);
}

.article-body {
  padding: 28px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.article-cat {
  background: linear-gradient(135deg, rgba(30,144,255,0.1), rgba(0,212,255,0.1));
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.article-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.article-read-time {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-av span {
  color: white;
}

.author-n {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--deep-blue);
  display: block;
  line-height: 1;
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-widget {
  background: white;
  border-radius: var(--border-radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.sidebar-widget h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--silver);
}

.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.widget-tag {
  background: var(--snow);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(30,144,255,0.15);
}

.widget-tag:hover {
  background: var(--primary);
  color: white;
}

.widget-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget-post {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f4f8;
}

.widget-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.widget-post-img {
  border-radius: 10px;
  overflow: hidden;
  height: 68px;
}

.widget-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget-post h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.4;
  margin-bottom: 4px;
}

.widget-post span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--deep-blue);
  color: white;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--gradient-accent);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent2);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* ============================================================
   PAGE VISIBILITY
   ============================================================ */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ============================================================
   ANIMATIONS & EFFECTS
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(30, 144, 255, 0.4); }
  50% { box-shadow: 0 0 40px rgba(30, 144, 255, 0.7); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Wave Divider */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading screen */
.loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 24px;
  animation: pulse-glow 1.5s ease infinite;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: loading 1.5s ease forwards;
}

@keyframes loading {
  from { width: 0; }
  to { width: 100%; }
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }

  .hero-image-wrapper {
    display: none;
  }

  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: relative; top: 0; }
}

@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,35,66,0.97);
    padding: 24px;
    gap: 20px;
    backdrop-filter: blur(20px);
  }

  .about-grid,
  .story-grid,
  .location-grid,
  .teambuilding-grid { grid-template-columns: 1fr; }

  .about-img-badge { bottom: 16px; right: 16px; }
  .about-text { padding-right: 0; }

  .reasons-grid,
  .activities-grid,
  .blog-grid,
  .blog-grid-2,
  .benefits-grid,
  .activities-list,
  .events-showcase { grid-template-columns: 1fr; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .games-grid { grid-template-columns: 1fr; }

  .blog-article-card {
    grid-template-columns: 1fr;
  }
  .article-img {
    height: 220px;
  }

  .timeline::before { left: 24px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 0;
  }
  .timeline-time { display: none; }
  .timeline-dot { flex-shrink: 0; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .photo-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
}
