/* ==========================================
   VIDYATAM SUMMER CAMP — camp.css
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --orange: #FF6B35;
    --yellow: #FFD23F;
    --green: #06D6A0;
    --blue: #3A86FF;
    --purple: #8338EC;
    --pink: #FF006E;
    --dark: #1A1A2E;
    --white: #FFFFFF;
    --light: #FFFBF0;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Baloo 2', cursive;
    line-height: 1.2;
}

.camp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.light-bg-camp { background: #FFF9F0; }
.text-center { text-align: center; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 2.5rem; color: var(--dark); }
.section-header p { color: #666; margin-top: 12px; font-size: 1.1rem; }

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

/* ==========================================
   FLOATING WHATSAPP
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: all 0.2s ease;
    animation: pulse-wa 2s infinite;
}
.whatsapp-float i { font-size: 1.5rem; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 36px rgba(37,211,102,0.5); }

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* ==========================================
   NAVBAR
   ========================================== */
.camp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.camp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}
.camp-logo {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.camp-logo small { font-size: 0.65rem; font-weight: 500; color: var(--orange); letter-spacing: 2px; }
.camp-nav-links { display: flex; gap: 28px; }
.camp-nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.camp-nav-links a:hover { color: var(--orange); }
.camp-nav-cta {
    background: linear-gradient(135deg, var(--orange), #ff8a50);
    color: white;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    white-space: nowrap;
}
.camp-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.4); }

/* ==========================================
   HERO SECTION
   ========================================== */
.camp-hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF4E0 0%, #FFF9F0 50%, #E8F4FF 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}
.shape-1 { width: 400px; height: 400px; background: var(--orange); top: -100px; right: -80px; }
.shape-2 { width: 250px; height: 250px; background: var(--blue); bottom: -60px; left: -60px; }
.shape-3 { width: 180px; height: 180px; background: var(--green); top: 40%; left: 35%; }
.sun-rays {
    position: absolute;
    top: -50px; right: 80px;
    width: 300px; height: 300px;
    background: conic-gradient(transparent 0deg, rgba(255,210,63,0.15) 10deg, transparent 20deg, rgba(255,210,63,0.1) 30deg, transparent 40deg, rgba(255,210,63,0.12) 50deg, transparent 60deg);
    border-radius: 50%;
    animation: spin-slow 30s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-tag {
    display: inline-block;
    background: rgba(255,107,53,0.12);
    color: var(--orange);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255,107,53,0.25);
}
.hero-text h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.15;
}
.highlight-text {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub { font-size: 1.3rem; color: #555; font-weight: 500; margin-bottom: 24px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges span {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-enroll {
    background: linear-gradient(135deg, var(--orange), #ff8a50);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255,107,53,0.4);
    transition: all 0.2s;
    display: inline-block;
}
.btn-enroll:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,107,53,0.5); }
.btn-wa {
    background: #25D366;
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    transition: all 0.2s;
    display: inline-block;
}
.btn-wa:hover { transform: translateY(-3px); }
.urgency-text { font-size: 0.95rem; color: var(--orange); font-weight: 600; }

.hero-img { position: relative; }
.hero-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); animation: float-soft 5s ease-in-out infinite; }
@keyframes float-soft { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-float-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: white;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 4px solid var(--orange);
}
.badge-num { font-size: 1.5rem; font-weight: 800; color: var(--orange); font-family: 'Baloo 2', cursive; }
.badge-lbl { font-size: 0.75rem; color: #777; }

/* ==========================================
   TRUST STRIP
   ========================================== */
.trust-strip {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    padding: 20px 0;
}
.trust-row {
    display: flex;
    gap: 0;
    justify-content: space-between;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 16px;
}
.trust-item i { font-size: 1.2rem; }

/* ==========================================
   ABOUT CAMP
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 20px; }
.about-text h2 span { color: var(--orange); }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 16px; font-size: 1.05rem; }
.about-stats { display: flex; gap: 20px; margin-top: 32px; }
.astat {
    text-align: center;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    flex: 1;
    border-top: 4px solid var(--orange);
}
.astat span { display: block; font-size: 1.5rem; font-weight: 800; color: var(--orange); font-family: 'Baloo 2', cursive; }
.astat small { font-size: 0.8rem; color: #888; margin-top: 4px; display: block; }
.about-img-wrap img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ==========================================
   ACTIVITIES
   ========================================== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.act-card {
    padding: 36px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.act-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.act-study { background: linear-gradient(135deg, #E8F4FF, #DDEEFF); border-top: 4px solid var(--blue); }
.act-art   { background: linear-gradient(135deg, #FFF0E8, #FFDDD0); border-top: 4px solid var(--orange); }
.act-games { background: linear-gradient(135deg, #E8FFE8, #D0FFD8); border-top: 4px solid var(--green); }
.act-speak { background: linear-gradient(135deg, #F5E8FF, #EDD0FF); border-top: 4px solid var(--purple); }
.act-icon { font-size: 2.5rem; margin-bottom: 16px; }
.act-card h3 { font-size: 1.15rem; margin-bottom: 14px; color: var(--dark); }
.act-card ul { list-style: none; }
.act-card ul li { padding: 6px 0; font-size: 0.9rem; color: #555; border-bottom: 1px dashed rgba(0,0,0,0.07); }
.act-card ul li:last-child { border: none; }
.act-card ul li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* ==========================================
   SCHEDULE
   ========================================== */
.schedule { background: linear-gradient(135deg, #1A1A2E 0%, #16213e 100%); }
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.schedule-img img { width: 100%; border-radius: var(--radius); opacity: 0.9; }
.schedule-content .section-tag { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.schedule-content h2 { font-size: 2.4rem; color: white; margin-bottom: 8px; }
.sched-sub { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.05rem; }
.sched-items { display: flex; flex-direction: column; gap: 16px; }
.sched-item {
    display: grid;
    grid-template-columns: 90px 20px 1fr;
    align-items: center;
    gap: 16px;
}
.sched-time { font-size: 0.8rem; font-weight: 700; color: var(--yellow); text-align: right; }
.sched-dot { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; }
.study-dot { background: var(--blue); }
.art-dot { background: var(--orange); }
.game-dot { background: var(--green); }
.speak-dot { background: var(--purple); }
.sched-detail { background: rgba(255,255,255,0.08); padding: 14px 20px; border-radius: var(--radius-sm); }
.sched-detail h4 { font-size: 1rem; color: white; margin-bottom: 4px; }
.sched-detail p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.25s;
}
.why-card:hover { transform: translateY(-6px); }
.why-card span { font-size: 2.5rem; display: block; margin-bottom: 14px; }
.why-card p { color: #444; font-weight: 600; font-size: 1rem; line-height: 1.5; }

/* ==========================================
   OFFER SECTION
   ========================================== */
.offer-section {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.offer-section::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,107,53,0.12), transparent);
    border-radius: 50%;
}
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.offer-img img { width: 100%; max-width: 380px; margin: 0 auto; display: block; animation: float-soft 4s ease-in-out infinite; }
.offer-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse-offer 1.5s ease-in-out infinite;
}
@keyframes pulse-offer {
    0%,100%{ transform: scale(1); }
    50%{ transform: scale(1.04); }
}
.offer-content h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 16px; }
.offer-content h2 span { color: var(--orange); }
.offer-content p { color: #555; font-size: 1.1rem; margin-bottom: 32px; }
.offer-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.seats-left { font-weight: 700; color: var(--orange); font-size: 1rem; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.25s;
}
.testi-card:hover { transform: translateY(-6px); }
.testi-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(255,107,53,0.1);
    line-height: 1;
}
.testi-stars { color: #FFD23F; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: #555; font-style: italic; line-height: 1.7; margin-bottom: 24px; font-size: 0.98rem; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}
.testi-author strong { color: var(--dark); display: block; font-size: 0.98rem; }
.testi-author small { color: #888; font-size: 0.8rem; }

/* ==========================================
   REGISTRATION FORM
   ========================================== */
.register-section { background: linear-gradient(135deg, #0a0a1a, #1A1A2E); }
.reg-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.reg-info .section-tag { background: rgba(255,107,53,0.9); color: white; }
.reg-info h2 { font-size: 2.4rem; color: white; margin-bottom: 16px; }
.reg-info > p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.7; }
.reg-contact { display: flex; flex-direction: column; gap: 16px; }
.reg-contact-item {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255,255,255,0.07);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: white;
    transition: background 0.2s;
}
.reg-contact-item:hover { background: rgba(255,255,255,0.13); }
.reg-contact-item i { font-size: 1.75rem; flex-shrink: 0; }
.reg-contact-item span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.reg-contact-item strong { font-size: 1rem; }
.reg-contact-item.wa i { color: #25D366; }

.reg-form-card {
    background: white;
    border-radius: var(--radius);
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
}
.reg-form-card h3 { font-size: 1.6rem; color: var(--dark); margin-bottom: 28px; }
.reg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reg-group { margin-bottom: 18px; }
.reg-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; color: var(--dark); }
.reg-group input,
.reg-group select,
.reg-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: #FAFAFA;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--dark);
}
.reg-group input:focus,
.reg-group select:focus,
.reg-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}
.btn-submit-camp {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.25s;
    box-shadow: 0 8px 24px rgba(255,107,53,0.4);
    font-family: 'Inter', sans-serif;
}
.btn-submit-camp:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,53,0.5); }
.btn-submit-camp:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-safe-note { font-size: 0.8rem; color: #888; margin-top: 14px; display: flex; align-items: center; gap: 6px; }

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    padding: 80px 0;
    text-align: center;
}
.final-cta h2 { font-size: 2.5rem; color: white; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 40px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
    background: transparent;
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.2s;
    display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.final-cta .btn-enroll { background: white; color: var(--orange); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.final-cta .btn-enroll:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.2); }

/* ==========================================
   FOOTER
   ========================================== */
.camp-footer {
    background: var(--dark);
    padding: 40px 0;
    color: rgba(255,255,255,0.7);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}
.camp-footer strong { color: white; font-size: 1.1rem; display: block; margin-bottom: 6px; }
.camp-footer p { font-size: 0.9rem; line-height: 1.7; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .schedule-grid, .offer-grid, .reg-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.5rem; }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .schedule-img { display: none; }
    .camp-nav-links { display: none; }
    .hero-img { order: -1; }
}

@media (max-width: 600px) {
    .hero-text h1 { font-size: 2rem; }
    .activities-grid, .testi-grid, .why-grid { grid-template-columns: 1fr; }
    .reg-form-row { grid-template-columns: 1fr; }
    .reg-form-card { padding: 28px 20px; }
    .section-pad { padding: 56px 0; }
    .trust-row { justify-content: center; }
    .camp-nav-cta { display: none; }
    .about-stats { flex-wrap: wrap; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
    .footer-inner { flex-direction: column; text-align: center; }
}
