:root {
  --gold: #f0c93a;
  --cyan: #3dd6d0;
  --dark: #080b10;
  --dark2: #0f1520;
  --dark3: #161e2e;
  --card: #111927;
  --text: #e8eaf0;
  --muted: #8a9ab5;
  --border: rgba(240,201,58,0.15);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(8,11,16,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}
nav.scrolled { height: 56px; background: rgba(8,11,16,0.98); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; background-color: transparent; transition: filter 0.3s; }
.nav-logo:hover img { filter: drop-shadow(0 0 16px rgba(240,201,58,0.8)); }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand span:first-child { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.08em; color: var(--gold); }
.nav-brand span:last-child { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gold) !important; color: #000 !important; padding: 8px 18px; border-radius: 3px; font-weight: 700 !important; transition: background 0.3s, transform 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--cyan) !important; transform: translateY(-1px); }

/* ── HERO ── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 40%, rgba(61,214,208,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 20% 60%, rgba(240,201,58,0.06) 0%, transparent 50%), var(--dark);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(240,201,58,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(240,201,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-diagonal { position: absolute; right: 0; top: 0; width: 52%; height: 100%; background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%); clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); }
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 5vw 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  width: 100%; max-width: 1400px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cyan); font-weight: 700; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--cyan); }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.92; letter-spacing: 0.02em; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
}
.hero-title span { color: var(--gold); display: block; }
.hero-title em { color: var(--cyan); font-style: normal; }
.hero-desc { font-size: 1rem; line-height: 1.7; color: var(--muted); max-width: 440px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.65s forwards; }
.btn-primary {
  background: var(--gold); color: #000; padding: 14px 32px; border-radius: 3px;
  text-decoration: none; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover { background: #ffd700; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,201,58,0.35); }
.btn-outline {
  border: 1.5px solid var(--cyan); color: var(--cyan); padding: 14px 32px; border-radius: 3px;
  text-decoration: none; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--cyan); color: #000; transform: translateY(-2px); }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; opacity: 0; animation: fadeIn 1.2s 0.4s forwards; }
.logo-glow-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.logo-glow-wrap::before { content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(240,201,58,0.18) 0%, transparent 70%); animation: pulse 3s ease-in-out infinite; }
.logo-glow-wrap::after { content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(61,214,208,0.2); animation: spin 20s linear infinite; }
.hero-logo-img { width: 300px; height: auto; background-color: transparent; position: relative; z-index: 2; animation: float 4s ease-in-out infinite; filter: drop-shadow(0 0 40px rgba(240,201,58,0.4)) drop-shadow(0 0 80px rgba(61,214,208,0.2)); }
.orbit-ring { position: absolute; border: 1px dashed rgba(240,201,58,0.15); border-radius: 50%; animation: spin 30s linear infinite reverse; }
.orbit-ring:nth-child(1) { width: 420px; height: 420px; }
.orbit-ring:nth-child(2) { width: 500px; height: 500px; animation-duration: 40s; }
.scroll-indicator { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeIn 1s 1.2s forwards; }
.scroll-indicator span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 1.5s ease-in-out infinite; }

/* ── SECTION BASE ── */
section { padding: 100px 5vw; }
.section-label { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cyan); font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--cyan); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1; letter-spacing: 0.03em; margin-bottom: 20px; }
.section-title span { color: var(--gold); }
.section-body { font-size: 1rem; line-height: 1.8; color: var(--muted); max-width: 560px; }

/* ── ABOUT ── */
#about { background: var(--dark2); position: relative; overflow: hidden; }
#about::before { content: 'OLYMPAX'; position: absolute; right: -2%; top: 50%; transform: translateY(-50%); font-family: 'Bebas Neue', sans-serif; font-size: 14vw; color: rgba(240,201,58,0.03); letter-spacing: 0.05em; pointer-events: none; white-space: nowrap; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1300px; margin: 0 auto; }
.about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-photo-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; display: block; }
.ph-tall { grid-row: span 2; min-height: 320px; }
.ph-short { min-height: 150px; }
.about-pillars { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--dark3); border-radius: 6px; border-left: 3px solid var(--gold); transition: transform 0.3s, box-shadow 0.3s; }
.pillar:hover { transform: translateX(6px); box-shadow: -6px 0 30px rgba(240,201,58,0.1); }
.pillar-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pillar-icon svg { width: 22px; height: 22px; color: var(--gold); }
.pillar-text h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.pillar-text p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── PROGRAMS ── */
#programs { background: var(--dark); }
.programs-header { text-align: center; margin-bottom: 60px; }
.programs-header .section-label { justify-content: center; }
.programs-header .section-label::before { display: none; }
.programs-header .section-body { margin: 0 auto; text-align: center; }
.programs-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn { padding: 10px 24px; border: 1.5px solid rgba(240,201,58,0.2); background: transparent; color: var(--muted); border-radius: 3px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.tab-btn:hover, .tab-btn.active { background: var(--gold); border-color: var(--gold); color: #000; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; max-width: 1300px; margin: 0 auto; }
.program-card { background: var(--card); border-radius: 8px; padding: 28px 24px; border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s; cursor: pointer; text-decoration: none; display: block; color: inherit; }
.program-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.program-card:hover::before { transform: scaleX(1); }
.program-card:hover { transform: translateY(-6px); border-color: rgba(240,201,58,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(240,201,58,0.08); }
.card-icon { width: 44px; height: 44px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; background: rgba(240,201,58,0.1); border-radius: 10px; transition: transform 0.3s, background 0.3s; }
.card-icon svg { width: 24px; height: 24px; }
.program-card:hover .card-icon { transform: scale(1.12) rotate(-5deg); background: rgba(240,201,58,0.2); }
.card-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); font-weight: 700; margin-bottom: 8px; }
.program-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px; color: white; }
.program-card p { font-size: 0.84rem; line-height: 1.65; color: var(--muted); }
.card-agegroup { margin-top: 16px; display: inline-block; padding: 4px 12px; background: rgba(240,201,58,0.1); border-radius: 20px; font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; }
.card-wa { margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3); border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; color: #25d366; text-decoration: none; transition: all 0.3s; }
.card-wa:hover { background: rgba(37,211,102,0.22); transform: translateY(-1px); }
.card-wa svg { width: 14px; height: 14px; fill: #25d366; }

/* ── SUMMER CAMP ── */
#summercamp { background: var(--dark2); position: relative; overflow: hidden; }
.camp-bg-glow { position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(61,214,208,0.06) 0%, transparent 70%); pointer-events: none; }
.camp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1300px; margin: 0 auto; }
.camp-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(61,214,208,0.1); border: 1px solid rgba(61,214,208,0.3); color: var(--cyan); padding: 6px 16px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.camp-badge-icon { width: 14px; height: 14px; fill: var(--cyan); }
.camp-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.camp-feature { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--dark3); border-radius: 6px; font-size: 0.88rem; color: var(--text); transition: all 0.3s; }
.camp-feature:hover { background: rgba(240,201,58,0.06); padding-left: 24px; }
.camp-feature-icon { width: 36px; height: 36px; background: rgba(240,201,58,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.camp-feature-icon svg { width: 18px; height: 18px; }
.camp-info-cards { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: var(--dark3); border-radius: 10px; padding: 28px; border: 1px solid rgba(255,255,255,0.05); }
.info-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.info-card-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), #e6a817); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card-icon svg { width: 22px; height: 22px; fill: #000; }
.info-card-header h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.info-rows { display: flex; flex-direction: column; gap: 10px; }
.info-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row .label { color: var(--muted); }
.info-row .value { color: white; font-weight: 600; }
.info-row .value.highlight { color: var(--cyan); }
.free-badge { background: linear-gradient(135deg, var(--gold), #e6a817); color: #000; padding: 3px 10px; border-radius: 4px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.camp-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.camp-photo { border-radius: 8px; overflow: hidden; }
.camp-photo img { width: 100%; height: 160px; object-fit: cover; display: block; }

/* ── GALLERY ── */
#gallery { background: var(--dark); text-align: center; }
.gallery-header { margin-bottom: 48px; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before { display: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 220px 220px; gap: 12px; max-width: 1300px; margin: 0 auto 40px; }
.gallery-item { border-radius: 6px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,11,16,0.5) 0%, transparent 60%); transition: opacity 0.3s; }
.gallery-item:hover::after { opacity: 0.5; }
.gi-large { grid-column: span 2; }
.gi-tall { grid-row: span 2; }

/* ── PRODUCTS ── */
#products { background: var(--dark); }
.products-container { max-width: 1300px; margin: 0 auto; }
.products-header { text-align: center; margin-bottom: 60px; }
.products-header .section-label { justify-content: center; }
.products-header .section-label::before { display: none; }
.products-header .section-body { margin: 0 auto; text-align: center; }
.section-subtitle { font-size: 0.95rem; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; max-width: 1300px; margin: 0 auto; }
.product-card { background: var(--card); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s; position: relative; display: flex; flex-direction: column; }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; z-index: 1; }
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { transform: translateY(-8px); border-color: rgba(240,201,58,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(240,201,58,0.08); }
.product-image { width: 100%; height: 200px; overflow: hidden; background: var(--dark2); }
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-info { display: flex; flex-direction: column; flex: 1; padding: 16px; justify-content: flex-end; min-height: 80px; }
.product-footer { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; }
.product-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(240,201,58,0.1); border: 1px solid rgba(240,201,58,0.3); border-radius: 5px; text-decoration: none; color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: all 0.3s; cursor: pointer; }
.product-btn svg { width: 14px; height: 14px; }
.product-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: translateY(-2px); }

/* ── FAQ ── */
#faq { padding: 100px 5vw; background: var(--dark); }
.faq-header { margin-bottom: 64px; }
.faq-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: rgba(240,201,58,0.3); background: rgba(240,201,58,0.02); }
.faq-question { width: 100%; padding: 24px; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1.05rem; font-weight: 600; color: var(--text); font-family: 'Barlow', sans-serif; transition: all 0.3s; text-align: left; }
.faq-question span { flex: 1; }
.faq-question svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-question[aria-expanded="true"] + .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 24px 24px 24px; color: var(--muted); line-height: 1.8; font-size: 0.95rem; }
.faq-answer strong { color: var(--gold); }

/* ── CONTACT ── */
#contact { background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1300px; margin: 0 auto; }
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: rgba(240,201,58,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(240,201,58,0.2); transition: all 0.3s; }
.contact-icon svg { width: 22px; height: 22px; }
.contact-item:hover .contact-icon { background: var(--gold); }
.contact-item:hover .contact-icon svg { color: #000; }
.contact-item-text h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 0.95rem; color: var(--text); text-decoration: none; transition: color 0.3s; display: block; line-height: 1.6; }
.contact-item-text a:hover { color: var(--gold); }
.social-row { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border: 1.5px solid rgba(255,255,255,0.1); border-radius: 6px; text-decoration: none; color: var(--text); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; transition: all 0.3s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.social-btn.wa-btn { border-color: rgba(37,211,102,0.3); color: #25d366; }
.social-btn.wa-btn:hover { border-color: #25d366; background: rgba(37,211,102,0.08); }
.social-btn svg { width: 18px; height: 18px; }
.map-placeholder { background: var(--dark3); border-radius: 10px; border: 1.5px dashed rgba(240,201,58,0.2); min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; cursor: pointer; transition: all 0.4s; text-decoration: none; color: var(--muted); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; position: relative; overflow: hidden; }
.map-placeholder:hover { border-color: var(--gold); color: var(--gold); }
.map-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.map-addr { text-align: center; font-size: 0.8rem; line-height: 1.6; padding: 0 30px; }
.register-cta { margin-top: 20px; padding: 28px; background: linear-gradient(135deg, rgba(240,201,58,0.12), rgba(61,214,208,0.08)); border-radius: 10px; border: 1px solid rgba(240,201,58,0.2); text-align: center; }
.register-cta h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; }
.register-cta p { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }

/* ── WA ENQUIRY PANEL ── */
.wa-enquiry { background: var(--dark3); border-radius: 12px; border: 1px solid rgba(37,211,102,0.2); padding: 28px; margin-top: 28px; }
.wa-enquiry h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #25d366; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.wa-enquiry h3 svg { width: 28px; height: 28px; fill: #25d366; flex-shrink: 0; }
.wa-enquiry p { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.wa-category-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); font-weight: 700; margin-bottom: 12px; }
.wa-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.wa-cat-btn { padding: 10px 14px; background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.08); border-radius: 6px; color: var(--muted); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; transition: all 0.25s; text-align: left; display: flex; align-items: center; gap: 8px; }
.wa-cat-btn svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.6; }
.wa-cat-btn:hover { border-color: #25d366; color: #25d366; background: rgba(37,211,102,0.08); }
.wa-cat-btn.active { border-color: #25d366; color: #25d366; background: rgba(37,211,102,0.12); }
.wa-send-btn { width: 100%; padding: 14px; background: #25d366; color: #000; border: none; border-radius: 8px; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; text-decoration: none; }
.wa-send-btn:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.wa-send-btn svg { width: 20px; height: 20px; fill: #000; }

/* ── FOOTER ── */
footer { background: var(--dark3); padding: 48px 5vw; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-logo img { height: 40px; background-color: transparent; }
.footer-logo-text span:first-child { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--gold); display: block; }
.footer-logo-text span:last-child { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: var(--muted); opacity: 0.6; }
.footer-copy span { color: var(--gold); }

/* ── HAMBURGER / MOBILE MENU ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }

/* ── FLOATING WA BUTTON ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.7); }
.wa-float svg { width: 32px; height: 32px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 1; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-18px) rotate(2deg); } }
@keyframes scrollLine { 0% { opacity: 1; transform: scaleY(1); transform-origin: top; } 100% { opacity: 0; transform: scaleY(0); transform-origin: top; } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes cardPop { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-diagonal { display: none; }
  .hero-title { font-size: 3.2rem; }
  .about-grid, .camp-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-large, .gi-tall { grid-column: auto; grid-row: auto; }
  .programs-grid, .products-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 4vw; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--dark); padding: 24px 5vw; gap: 24px; border-bottom: 1px solid var(--border); }
  .wa-categories { grid-template-columns: 1fr; }
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 28px; height: 28px; }
}
@media (max-width: 600px) {
  .programs-grid, .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .about-photo-grid { grid-template-columns: 1fr; }
  .ph-tall { grid-row: auto; min-height: 220px; }
  section { padding: 70px 5vw; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { text-align: center; }
}

.admin-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 5vw 80px;
}

.admin-hero {
  text-align: center;
  margin-bottom: 32px;
}

.admin-card {
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(9, 9, 12, 0.35);
  border-radius: 28px;
  padding: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.admin-form {
  display: grid;
  gap: 20px;
}

.admin-form label {
  font-weight: 600;
  color: var(--text);
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
}

.admin-form textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-form input[type="file"] {
  padding: 10px 14px;
}

.admin-form .btn-primary {
  align-self: start;
  margin-top: 4px;
}

.form-status {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.97rem;
}

@media (max-width: 960px) {
  .admin-card {
    padding: 26px;
  }
}

@media (max-width: 600px) {
  .admin-page {
    padding: 30px 4vw 56px;
  }
  .admin-card {
    padding: 24px;
  }
}
