/* ================================================
   ADVENTURE - PRZYGODA BEZ GRANIC
   Main Stylesheet v2.0
   ================================================ */

/* === CSS VARIABLES === */
:root {
  --primary: #4ECDC4;
  --primary-light: #B2F3DE;
  --primary-dark: #2C9E98;
  --secondary: #1a1a2e;
  --secondary-light: #16213e;
  --accent: #FF6B35;
  --accent-hover: #e55a25;
  --yellow: #FFE66D;
  --white: #ffffff;
  --light-bg: #f0fdf9;
  --text: #2d3436;
  --text-light: #636e72;
  --border: rgba(78, 205, 196, 0.2);
  --shadow: 0 10px 40px rgba(78, 205, 196, 0.25);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
  --font: 'Poppins', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === SCROLL PROGRESS === */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); z-index: 9999; width: 0%; transition: width 0.1s linear; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--secondary);
}
.section-title span { color: var(--primary); }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 620px; margin: 0 auto; }

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

.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 6px 20px rgba(255,107,53,0.4); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,107,53,0.5); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-mint { background: var(--primary); color: var(--secondary); }
.btn-mint:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }

.btn-dark { background: var(--secondary); color: var(--white); }
.btn-dark:hover { background: var(--white); color: var(--secondary); transform: translateY(-2px); }

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

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

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--primary); }

.nav-menu { display: flex; align-items: center; gap: 4px; }

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(78,205,196,0.1); }

.nav-link.nav-cta { background: var(--accent); color: var(--white); padding: 9px 18px; border-radius: 50px; font-weight: 600; }
.nav-link.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

.nav-link.nav-kids { background: linear-gradient(135deg, #FF6B9D, #C77DFF); color: var(--white); padding: 9px 18px; border-radius: 50px; font-weight: 600; }
.nav-link.nav-kids:hover { transform: translateY(-1px); opacity: 0.9; }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-social { display: flex; gap: 6px; }
.nav-social a { color: rgba(255,255,255,0.65); font-size: 1.1rem; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: var(--transition); }
.nav-social a:hover { color: var(--primary); background: rgba(78,205,196,0.1); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Light hero (index.html with body.hero-light): readable nav on light bg */
body.hero-light .navbar:not(.scrolled) .nav-logo-text { color: var(--secondary); }
body.hero-light .navbar:not(.scrolled) .nav-link { color: rgba(26,26,46,0.85); }
body.hero-light .navbar:not(.scrolled) .nav-link:hover,
body.hero-light .navbar:not(.scrolled) .nav-link.active { color: var(--primary-dark); background: rgba(78,205,196,0.12); }
body.hero-light .navbar:not(.scrolled) .nav-link.nav-cta,
body.hero-light .navbar:not(.scrolled) .nav-link.nav-kids { color: var(--white); }
body.hero-light .navbar:not(.scrolled) .nav-social a { color: rgba(26,26,46,0.6); }
body.hero-light .navbar:not(.scrolled) .nav-social a:hover { color: var(--primary-dark); background: rgba(78,205,196,0.12); }
body.hero-light .navbar:not(.scrolled) .nav-toggle span { background: var(--secondary); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #F0FDF9;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #F0FDF9;
  z-index: 0;
}

/* Video background option */
.hero-video { position: absolute; inset: 0; z-index: 1; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-video::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(240,253,249,0.85) 0%, rgba(78,205,196,0.25) 100%); }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite;
  z-index: 1;
}
.hero-blob-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; animation-delay: 0s; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--accent); bottom: -80px; left: 5%; animation-delay: 3s; opacity: 0.22; }
.hero-blob-3 { width: 300px; height: 300px; background: var(--yellow); top: 30%; right: 25%; animation-delay: 6s; opacity: 0.35; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78,205,196,0.15);
  border: 1px solid rgba(78,205,196,0.3);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title .line-teal { color: var(--primary-dark); display: block; }
.hero-title .line-yellow { color: var(--accent); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }
.hero .btn-outline { color: var(--secondary); border-color: rgba(26,26,46,0.35); }
.hero .btn-outline:hover { background: rgba(26,26,46,0.06); border-color: var(--secondary); }

.hero-stats { display: flex; gap: 36px; margin-top: 48px; animation: fadeInUp 0.8s ease 0.8s both; }
.hero-stat .num { font-size: 2.2rem; font-weight: 800; color: var(--primary-dark); display: block; line-height: 1; }
.hero-stat .lbl { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

.hero-right { display: flex; align-items: center; justify-content: center; animation: fadeInRight 1s ease 0.4s both; }

.hero-float-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(78,205,196,0.35);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  width: 360px;
  color: var(--secondary);
  position: relative;
  box-shadow: 0 20px 50px rgba(78,205,196,0.18);
}

.hero-float-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--primary-dark); }
.hero-float-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }

.hero-card-feature { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.hero-card-feature-icon { width: 36px; height: 36px; background: var(--primary-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--primary-dark); flex-shrink: 0; }
.hero-card-feature span { font-size: 0.88rem; color: var(--secondary); }

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--secondary);
}
.floating-badge:nth-child(2) { top: -18px; right: -18px; animation: floatBadge 3s ease-in-out infinite; }
.floating-badge:nth-child(3) { bottom: -18px; left: -18px; animation: floatBadge 3s ease-in-out infinite 1.5s; }
.floating-badge .b-icon { font-size: 1.2rem; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* === SECTION BASE === */
section { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* === STATS SECTION === */
.stats-section { background: var(--secondary); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 40px 24px; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 3.2rem; font-weight: 800; color: var(--primary); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,0.5); font-size: 0.88rem; }

/* === FEATURES SECTION === */
.features-section { background: var(--light-bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(78,205,196,0.08);
  border: 1px solid rgba(78,205,196,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--primary-dark)); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.feature-icon { width: 72px; height: 72px; border-radius: 20px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.8rem; color: var(--primary-dark); transition: var(--transition); }
.feature-card:hover .feature-icon { background: var(--primary); color: var(--white); transform: rotate(8deg) scale(1.1); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--secondary); }
.feature-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }

/* === ABOUT SECTION === */
.about-section { background: var(--white); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--primary-light), var(--primary)); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-badge-float { position: absolute; bottom: -20px; right: -20px; background: var(--secondary); color: var(--white); border-radius: var(--radius); padding: 20px 24px; text-align: center; box-shadow: var(--shadow-dark); }
.about-badge-float .num { font-size: 2.4rem; font-weight: 800; color: var(--primary); display: block; }
.about-badge-float .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.about-points { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.about-point { display: flex; align-items: flex-start; gap: 14px; }
.about-point-icon { width: 40px; height: 40px; min-width: 40px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary-dark); font-size: 1rem; }
.about-point-text h4 { font-size: 0.95rem; margin-bottom: 3px; color: var(--secondary); }
.about-point-text p { font-size: 0.88rem; color: var(--text-light); }

/* === OFFERS SECTION === */
.offers-section { background: var(--secondary); position: relative; overflow: hidden; }
.offers-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(78,205,196,0.08) 0%, transparent 60%); }
.offers-section .section-title { color: var(--white); }
.offers-section .section-subtitle { color: rgba(255,255,255,0.55); }

.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; position: relative; z-index: 1; }

.offer-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(78,205,196,0.12); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.offer-card:hover { transform: translateY(-10px); border-color: rgba(78,205,196,0.35); box-shadow: 0 24px 64px rgba(0,0,0,0.3); }

.offer-img { aspect-ratio: 16/10; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.offer-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offer-card:hover .offer-img img { transform: scale(1.08); }

.offer-tag { position: absolute; top: 14px; left: 14px; background: var(--accent); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; z-index: 2; }

.offer-body { padding: 26px; color: var(--white); }
.offer-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.offer-body p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.6; }
.offer-link { color: var(--primary); font-size: 0.88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.offer-link:hover { gap: 10px; }

/* === VIDEO SECTION === */
.video-section { background: var(--light-bg); }
.video-note { text-align: center; font-size: 0.85rem; color: var(--text-light); margin-top: 16px; }

.video-wrap {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--secondary);
  position: relative;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.video-placeholder-bg { position: absolute; inset: 0; background: var(--light-bg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.video-placeholder-bg p { color: var(--text-light); font-size: 0.9rem; }

.play-btn { width: 80px; height: 80px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--white); box-shadow: 0 0 0 16px rgba(78,205,196,0.18); animation: pulseShadow 2s ease-in-out infinite; transition: var(--transition); }
.play-btn:hover { transform: scale(1.1); background: var(--accent); }

@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 0 0 16px rgba(78,205,196,0.18); }
  50% { box-shadow: 0 0 0 28px rgba(78,205,196,0.05); }
}

/* === GALLERY SECTION === */
.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 220px); gap: 14px; margin-top: 56px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--primary-light), var(--primary)); cursor: pointer; position: relative; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,26,46,0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: var(--white); font-size: 1.8rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--light-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid rgba(78,205,196,0.1); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }

.testimonial-stars { color: #FFB800; font-size: 1rem; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-text { font-size: 0.93rem; color: var(--text); margin-bottom: 24px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); flex-shrink: 0; }
.author-info .name { font-weight: 700; font-size: 0.92rem; }
.author-info .role { font-size: 0.78rem; color: var(--text-light); }

/* === SOCIAL SECTION === */
.social-section { background: var(--secondary); padding: 80px 0; }
.social-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.social-section p { color: rgba(255,255,255,0.55); margin-bottom: 40px; }

/* Light variant (shared "ustalony kolor" = --light-bg) */
.social-section-light { background: var(--light-bg); }
.social-section-light h2 { color: var(--secondary); }
.social-section-light p { color: var(--text-light); }

/* Offers light variant */
.offers-section-light { background: var(--light-bg); }
.offers-section-light::before { display: none; }
.offers-section-light .section-tag { background: var(--primary-light); color: var(--primary-dark); }
.offers-section-light .section-title { color: var(--secondary); }
.offers-section-light .section-subtitle { color: var(--text-light); }
.offers-section-light .offer-card { background: var(--white); border: 1px solid rgba(78,205,196,0.18); box-shadow: 0 4px 24px rgba(78,205,196,0.08); }
.offers-section-light .offer-card:hover { border-color: var(--primary); box-shadow: 0 20px 48px rgba(78,205,196,0.18); }
.offers-section-light .offer-body { color: var(--secondary); }
.offers-section-light .offer-body p { color: var(--text-light); }

/* Values light variant (o-nas page) */
.values-section-light { background: var(--light-bg) !important; }
.values-section-light .section-title { color: var(--secondary) !important; }
.values-section-light .section-subtitle { color: var(--text-light) !important; }
.values-section-light .section-tag { background: var(--primary-light) !important; color: var(--primary-dark) !important; }
.values-section-light .value-card { background: var(--white); border: 1px solid rgba(78,205,196,0.15); color: var(--secondary); box-shadow: 0 4px 20px rgba(78,205,196,0.08); }
.values-section-light .value-card:hover { border-color: var(--primary); }
.values-section-light .value-card h3 { color: var(--secondary); }
.values-section-light .value-card p { color: var(--text-light); }

/* Info light variant (dla-rodzicow page) */
.info-section-light { background: var(--light-bg) !important; }
.info-section-light .section-title { color: var(--secondary) !important; }
.info-section-light .section-subtitle { color: var(--text-light) !important; }
.info-section-light .section-tag { background: var(--primary-light) !important; color: var(--primary-dark) !important; }
.info-section-light .info-card { background: var(--white); border: 1px solid rgba(78,205,196,0.15); color: var(--secondary); box-shadow: 0 4px 20px rgba(78,205,196,0.08); }
.info-section-light .info-card:hover { border-color: var(--primary); }
.info-section-light .info-card h4 { color: var(--secondary); }
.info-section-light .info-card p { color: var(--text-light); }

/* Safety light variant (sierpien-2026 page) */
.safety-section-light { background: var(--light-bg); }
.safety-section-light .section-title { color: var(--secondary); }
.safety-section-light .section-subtitle { color: var(--text-light); }
.safety-section-light .section-tag { background: var(--primary-light) !important; color: var(--primary-dark) !important; }
.safety-section-light .safety-card { background: var(--white); border: 1px solid rgba(78,205,196,0.15); color: var(--secondary); box-shadow: 0 4px 20px rgba(78,205,196,0.08); }
.safety-section-light .safety-card:hover { border-color: var(--primary); background: var(--white); }
.safety-section-light .safety-card h3 { color: var(--secondary); }
.safety-section-light .safety-card p { color: var(--text-light); }
.social-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: var(--transition); }
.social-btn-fb { background: #1877F2; color: var(--white); }
.social-btn-fb:hover { background: #0d65d9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,119,242,0.4); }
.social-btn-ig { background: linear-gradient(135deg, #E1306C, #833AB4, #F77737); color: var(--white); }
.social-btn-ig:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(225,48,108,0.4); }

/* === CTA BANNER === */
.cta-banner { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%); background-size: 200%; animation: gradMove 5s ease infinite; padding: 80px 0; text-align: center; }
@keyframes gradMove { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* === PAGE HERO (subpages) === */
.page-hero { background: var(--light-bg); padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(78,205,196,0.18) 0%, transparent 70%); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--secondary); position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--text-light); font-size: 0.88rem; margin-top: 14px; position: relative; z-index: 1; }
.breadcrumb a { color: var(--primary-dark); }
.breadcrumb span { color: rgba(26,26,46,0.25); }

/* === FAQ === */
.faq-section { background: var(--light-bg); }
.faq-list { max-width: 820px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 10px; }

.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid rgba(78,205,196,0.12); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--primary); box-shadow: 0 4px 20px rgba(78,205,196,0.15); }

.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 26px; cursor: pointer; font-weight: 600; font-size: 0.97rem; color: var(--secondary); transition: var(--transition); gap: 16px; }
.faq-question:hover { color: var(--primary-dark); }

.faq-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary-dark); font-size: 0.85rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 26px 20px; color: var(--text-light); font-size: 0.93rem; line-height: 1.7; border-top: 1px solid rgba(78,205,196,0.1); padding-top: 16px; }

/* === DOWNLOADS === */
.downloads-section { background: var(--white); }
.downloads-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; margin-top: 48px; }

.download-card { background: var(--light-bg); border-radius: var(--radius); padding: 26px; border: 1px solid rgba(78,205,196,0.15); display: flex; align-items: center; gap: 18px; transition: var(--transition); }
.download-card:hover { border-color: var(--primary); transform: translateX(4px); box-shadow: var(--shadow); }
.download-icon { width: 54px; height: 54px; min-width: 54px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--primary-dark); }
.download-info h4 { font-size: 0.93rem; margin-bottom: 4px; color: var(--secondary); }
.download-info p { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; }
.download-btn { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-dark); font-size: 0.82rem; font-weight: 600; transition: var(--transition); }
.download-btn:hover { gap: 10px; }

/* === CONTACT REVEAL === */
.contact-reveal-section { background: var(--secondary); padding: 80px 0; text-align: center; }
.contact-reveal-section h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.contact-reveal-section p { color: rgba(255,255,255,0.6); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

.reveal-btn {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border: none;
  padding: 20px 52px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(78,205,196,0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  animation: pulseShadow 2s ease-in-out infinite;
}
.reveal-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(78,205,196,0.5); }

.contact-revealed { display: none; margin-top: 36px; background: var(--white); border-radius: var(--radius-lg); padding: 40px; max-width: 500px; margin-left: auto; margin-right: auto; animation: fadeInUp 0.5s ease; }
.contact-revealed.show { display: block; }
.contact-revealed h3 { font-size: 1.2rem; margin-bottom: 24px; color: var(--secondary); }

.contact-detail { display: flex; align-items: center; gap: 16px; padding: 14px; background: var(--light-bg); border-radius: 12px; margin-bottom: 10px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-info .lbl { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail-info .val { font-size: 1.1rem; font-weight: 700; color: var(--secondary); }
.contact-detail-info .val a { color: var(--secondary); transition: var(--transition); }
.contact-detail-info .val a:hover { color: var(--primary-dark); }

/* === SAFETY CARDS === */
.safety-section { background: var(--secondary); }
.safety-section .section-title { color: var(--white); }
.safety-section .section-subtitle { color: rgba(255,255,255,0.55); }
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }

.safety-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(78,205,196,0.12); border-radius: var(--radius); padding: 30px 24px; text-align: center; color: var(--white); transition: var(--transition); }
.safety-card:hover { border-color: var(--primary); background: rgba(78,205,196,0.06); transform: translateY(-4px); }
.safety-card .s-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.safety-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.safety-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* === PHOTOS GRID (landing) === */
.photos-section { background: var(--white); }
.photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
.photo-item { border-radius: var(--radius); overflow: hidden; background: var(--primary-light); position: relative; cursor: pointer; }
.photo-item:nth-child(1) { aspect-ratio: 4/3; }
.photo-item:nth-child(2) { aspect-ratio: 4/5; grid-row: span 2; }
.photo-item:nth-child(3) { aspect-ratio: 4/3; }
.photo-item:nth-child(4) { aspect-ratio: 4/3; }
.photo-item:nth-child(5) { aspect-ratio: 16/9; grid-column: span 2; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-item:hover img { transform: scale(1.06); }
.photo-overlay { position: absolute; inset: 0; background: rgba(26,26,46,0.4); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; }
.photo-item:hover .photo-overlay { opacity: 1; }

/* === COUNTDOWN === */
.countdown { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.cd-item { text-align: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 14px 18px; min-width: 72px; }
.cd-num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.cd-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.cd-sep { display: flex; align-items: center; font-size: 2rem; color: rgba(255,255,255,0.25); font-weight: 300; padding-top: 4px; }

/* === CONTACT PAGE === */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; margin-top: 60px; align-items: start; }
.contact-info-card { background: var(--secondary); border-radius: var(--radius-lg); padding: 48px 40px; color: var(--white); }
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-item-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: rgba(78,205,196,0.1); border: 1px solid rgba(78,205,196,0.2); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; }
.contact-item-info .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.contact-item-info .val { font-size: 1rem; font-weight: 600; color: var(--white); }
.contact-item-info .val a { color: var(--white); transition: var(--transition); }
.contact-item-info .val a:hover { color: var(--primary); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 48px 40px; box-shadow: 0 4px 32px rgba(78,205,196,0.1); border: 1px solid rgba(78,205,196,0.1); }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--secondary); }
.contact-form > p { color: var(--text-light); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--secondary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border: 1.5px solid rgba(78,205,196,0.2); border-radius: 10px; font-family: var(--font); font-size: 0.95rem; color: var(--text); background: var(--light-bg); transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === FOOTER === */
.footer { background: var(--secondary); color: var(--white); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer-brand > p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 16px 0 24px; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-logo img { height: 44px; }
.footer-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: var(--primary); }

.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 1rem; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--secondary); transform: translateY(-2px); }

.footer-col h4 { font-size: 0.95rem; margin-bottom: 20px; color: var(--white); position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon { width: 34px; height: 34px; min-width: 34px; background: rgba(78,205,196,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.85rem; }
.footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-contact-item a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom a:hover { color: var(--primary); }

/* === BACK TO TOP === */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 46px; height: 46px; background: var(--primary); color: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; border: none; box-shadow: 0 4px 16px rgba(78,205,196,0.4); transition: var(--transition); opacity: 0; pointer-events: none; z-index: 999; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-3px); }

/* === COOKIE BANNER === */
.cookie-banner { display: none; position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 560px; background: var(--secondary); border: 1px solid rgba(78,205,196,0.2); border-radius: var(--radius); padding: 24px 28px; z-index: 9998; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.cookie-banner p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.5; }
.cookie-banner a { color: var(--primary); }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btn { padding: 9px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer; border: none; font-family: var(--font); transition: var(--transition); }
.cookie-btn-accept { background: var(--primary); color: var(--secondary); }
.cookie-btn-accept:hover { background: var(--primary-dark); color: var(--white); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); }
.cookie-btn-decline:hover { background: rgba(255,255,255,0.05); }

/* === LIGHTBOX === */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 99999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 10px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: var(--white); font-size: 1.5rem; cursor: pointer; background: rgba(255,255,255,0.1); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); border: none; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* === KIDS PAGE SPECIFIC === */
.kids-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0533 50%, #0d2b1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 80px;
}

.kids-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,107,157,0.2) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(116,192,252,0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(105,219,124,0.08) 0%, transparent 50%);
}

.floating-emojis { position: absolute; inset: 0; pointer-events: none; }
.float-em { position: absolute; font-size: 2.2rem; animation: floatEm var(--dur,7s) ease-in-out infinite; animation-delay: var(--delay,0s); opacity: 0.7; user-select: none; }
@keyframes floatEm { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-25px) rotate(12deg); } }

.kids-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.kids-hero-title .w1 { color: #FF6B9D; }
.kids-hero-title .w2 { color: #FFE66D; }
.kids-hero-title .w3 { color: #74C0FC; }
.kids-hero-title .w4 { color: #69DB7C; }

.kids-hero-sub { font-size: 1.3rem; color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 48px; line-height: 1.6; }

.kids-activities-section { background: var(--white); }
.activities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 24px; margin-top: 56px; }

.activity-card { background: var(--light-bg); border-radius: 20px; padding: 36px 20px; text-align: center; border: 2px solid transparent; transition: var(--transition); cursor: default; }
.activity-card:hover { border-color: var(--primary); transform: translateY(-8px) scale(1.02); background: var(--white); box-shadow: 0 20px 60px rgba(78,205,196,0.2); }
.activity-emoji { font-size: 3rem; margin-bottom: 14px; display: block; animation: bounce 2.5s ease-in-out infinite; animation-delay: var(--delay,0s); }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.activity-card h3 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 6px; }
.activity-card p { font-size: 0.84rem; color: var(--text-light); }

.kids-why-section { background: linear-gradient(135deg, var(--secondary), #0f3460); padding: 100px 0; }
.kids-why-section .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; margin-top: 56px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px 24px; color: var(--white); transition: var(--transition); }
.why-card:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-4px); }
.why-card .why-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 10px; }
.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.kids-cta-section { background: linear-gradient(135deg, #FF6B9D, #C77DFF, #74C0FC); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.kids-cta-section h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--white); margin-bottom: 18px; text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.kids-cta-section p { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.kids-cta-section .btn { background: var(--white); color: var(--secondary); font-size: 1.1rem; padding: 16px 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.kids-cta-section .btn:hover { transform: translateY(-3px) scale(1.03); }

/* === LANDING PAGE === */
.lp-hero { min-height: 100vh; background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
.lp-hero .hero-content { padding: 100px 24px 80px; }

.lp-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white); padding: 8px 22px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; margin-bottom: 24px; animation: pulseGlow 2s ease-in-out infinite; }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); } 50% { box-shadow: 0 0 0 12px rgba(255,107,53,0); } }

.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.trust-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); padding: 7px 14px; border-radius: 50px; font-size: 0.78rem; display: flex; align-items: center; gap: 6px; }
.trust-badge i { color: var(--primary); }

/* === CONVERSION RESERVE BUTTON (pulse) === */
@keyframes pulseReserve {
  0%, 100% { box-shadow: 0 6px 20px rgba(255,107,53,0.4), 0 0 0 0 rgba(255,107,53,0.45); transform: scale(1); }
  50% { box-shadow: 0 10px 28px rgba(255,107,53,0.55), 0 0 0 14px rgba(255,107,53,0); transform: scale(1.03); }
}
.btn-pulse { position: relative; }

/* === ANIMATIONS === */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-right { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,26,46,0.98); align-items: center; justify-content: center; gap: 16px; z-index: 999; backdrop-filter: blur(10px); }
  .nav-menu.open .nav-link { font-size: 1.2rem; padding: 10px 24px; }
  .nav-toggle { display: flex; }
  .nav-right .nav-social { display: none; }
  .offers-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .photos-grid { grid-template-columns: 1fr 1fr; }
  .photo-item:nth-child(2) { grid-row: span 1; aspect-ratio: 4/3; }
  .photo-item:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; }
  .safety-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .trust-badges { gap: 8px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .photos-grid { grid-template-columns: 1fr; }
  .photo-item:nth-child(2) { grid-row: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .social-buttons { flex-direction: column; align-items: center; }
  .countdown { gap: 8px; }
  .cd-num { font-size: 1.8rem; }
  .activities-grid { grid-template-columns: repeat(2,1fr); }
}
