/* ===========================
   Art Shala – Summer Camp 2026
   =========================== */

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

:root {
    --pink:       #E8547A;
    --pink-light: #FDE8EF;
    --orange:     #F4845F;
    --orange-light: #FEF0EB;
    --yellow:     #F5C842;
    --yellow-light: #FEFAEB;
    --purple:     #9B72CF;
    --purple-light: #F3EEFB;
    --blue:       #5B9BD5;
    --blue-light: #EBF3FB;
    --green:      #4CAF7D;
    --green-light:#EBF7F1;
    --text:       #2D2D2D;
    --text-light: #666;
    --white:      #FFFFFF;
    --off-white:  #FAFAF8;
    --shadow:     0 4px 24px rgba(0,0,0,0.09);
    --shadow-lg:  0 8px 40px rgba(0,0,0,0.13);
    --radius:     18px;
    --radius-sm:  10px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: 'Fredoka One', cursive;
    line-height: 1.2;
}

/* ── Shared Section Labels ── */
.section-tag {
    display: inline-block;
    background: var(--yellow-light);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
    margin-bottom: 0.75rem;
}
.section-tag.center { display: block; text-align: center; }

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text);
    margin-bottom: 1rem;
}
.section-title.center { text-align: center; }

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: var(--white);
    box-shadow: 0 4px 18px rgba(232, 84, 122, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 84, 122, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--pink);
    border: 2.5px solid var(--pink);
}
.btn-secondary:hover {
    background: var(--pink-light);
    transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

/* ── Navigation ── */
.navbar {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

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

.logo-container {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 128px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }

.btn-enroll {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.88rem !important;
    box-shadow: 0 3px 12px rgba(232, 84, 122, 0.3);
}
.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 84, 122, 0.4);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── Hero ── */
.hero {
    position: relative;
    background: linear-gradient(160deg, #FFF8F5 0%, #FEF3FB 40%, #F0F7FF 100%);
    padding: 5rem 0 6rem;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8%;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Decorative blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
}
.blob-1 { width: 500px; height: 500px; background: var(--pink-light); top: -100px; right: -80px; }
.blob-2 { width: 350px; height: 350px; background: var(--yellow-light); bottom: -80px; left: -60px; }
.blob-3 { width: 280px; height: 280px; background: var(--purple-light); top: 30%; left: 40%; }

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow-light), var(--orange-light));
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.2rem;
    border: 1.5px solid var(--orange);
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text);
}

.hero-nowrap { white-space: nowrap; }

.hero-highlight {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-offerings {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.hero-offering-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
}

.hero-offering-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.hero-offering-item div {
    display: flex;
    flex-direction: column;
}

.hero-offering-item strong {
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 700;
}

.hero-offering-item span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-info-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    background: rgba(255,255,255,0.8);
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    border: 1.5px solid rgba(0,0,0,0.07);
}

/* Hero art decoration */
.hero-art {
    flex: 0 0 45%;
    position: relative;
}

.paint-splash {
    position: absolute;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    animation: float 4s ease-in-out infinite;
}
.ps-yellow { width: 180px; height: 180px; background: rgba(245,200,66,0.25); top: 0; right: 0; animation-delay: 0s; }
.ps-pink   { width: 140px; height: 140px; background: rgba(232,84,122,0.18); bottom: 40px; right: 40px; animation-delay: 1.5s; }
.ps-blue   { width: 120px; height: 120px; background: rgba(91,155,213,0.22); top: 60px; left: 10px; animation-delay: 0.8s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-14px) rotate(3deg); }
}

.hero-slider {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-slides {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    width: 100%;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.slider-caption {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.2;
    color: var(--text);
    margin-top: 1.2rem;
}

.hero-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.25);
}

.easel-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.easel-icon { font-size: 3.5rem; margin-bottom: 0.5rem; }
.easel-text { font-family: 'Fredoka One', cursive; font-size: 1.15rem; color: var(--text); line-height: 1.3; }

/* ── Mission Section ── */
.mission-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.mission-values {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.value-chip {
    background: var(--white);
    border: 2px solid var(--pink-light);
    color: var(--pink);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
}

.mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s;
}
.mission-card:hover { transform: translateY(-4px); }

.mc-purple { border-top: 4px solid var(--purple); }
.mc-orange { border-top: 4px solid var(--orange); }
.mc-green  { border-top: 4px solid var(--green); }
.mc-blue   { border-top: 4px solid var(--blue); }

.mc-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.mission-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.mission-card p  { font-size: 0.82rem; color: var(--text-light); }

/* ── Trial Banner ── */
.trial-banner {
    background: linear-gradient(135deg, #E8547A 0%, #F4845F 100%);
    padding: 3rem 0;
}

.trial-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.trial-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
    margin-bottom: 0.75rem;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.trial-banner-left h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.trial-banner-left p {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    max-width: 520px;
}

.trial-banner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.btn-trial {
    background: #fff;
    color: #E8547A;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    white-space: nowrap;
}
.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.trial-note {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-weight: 600;
}

/* ── About Section ── */
.about-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s;
}
.about-card:hover { transform: translateY(-4px); }

.about-me      { border-top: 4px solid var(--pink); }
.about-why     { border-top: 4px solid var(--orange); }
.about-mission { border-top: 4px solid var(--purple); }

.about-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.about-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

.about-card p strong {
    color: var(--text);
}

.about-pillars {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
}

/* ── Camps Section ── */
.camps-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFF 0%, #FFF8F5 100%);
}

.camps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.camp-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: transform 0.3s;
}
.camp-card:hover { transform: translateY(-6px); }

.camp-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--yellow);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.badge-toddler { background: var(--purple); color: var(--white); }

.camp-header {
    padding: 2.2rem 2.2rem 1.5rem;
    background: linear-gradient(135deg, var(--pink-light), var(--orange-light));
}
.camp-toddler .camp-header {
    background: linear-gradient(135deg, var(--purple-light), var(--blue-light));
}

.camp-icon { font-size: 2.6rem; margin-bottom: 0.6rem; }
.camp-title { font-size: 1.6rem; margin-bottom: 0.3rem; }
.camp-tagline { font-size: 0.85rem; font-weight: 600; color: var(--text-light); }

.camp-body { padding: 1.8rem 2.2rem 2.2rem; }

.camp-desc {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.camp-experiences {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.3rem;
    margin-bottom: 1.5rem;
}

.camp-experiences h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--text);
}

.camp-experiences ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.camp-experiences li {
    font-size: 0.87rem;
    color: var(--text-light);
    font-weight: 500;
}

.camp-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.3rem;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.detail-icon { font-size: 1.1rem; margin-top: 1px; }

.detail-row div {
    display: flex;
    flex-direction: column;
}

.detail-row strong {
    font-size: 0.95rem;
    color: var(--text);
}

.detail-row span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.payment-tag {
    background: var(--off-white);
    border: 1.5px solid var(--yellow);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 30px;
}

.btn-camp-primary {
    display: block;
    text-align: center;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(232, 84, 122, 0.3);
}
.btn-camp-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgba(232, 84, 122, 0.4);
}

.btn-camp-toddler {
    display: block;
    text-align: center;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(155, 114, 207, 0.3);
}
.btn-camp-toddler:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgba(155, 114, 207, 0.4);
}

/* ── Experiences Section ── */
.experiences-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.exp-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    text-align: center;
}
.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.exp-emoji { font-size: 2.2rem; margin-bottom: 0.7rem; }

.exp-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.exp-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── Why Section ── */
.why-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #F5F0FF 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.why-item strong {
    display: block;
    font-size: 0.97rem;
    margin-bottom: 0.25rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.quote-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
    position: relative;
    border-left: 5px solid var(--pink);
}

.quote-mark {
    font-family: 'Pacifico', cursive;
    font-size: 5rem;
    line-height: 1;
    color: var(--pink-light);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
}

.quote-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--pink);
}

.shala-info {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem 1.8rem;
    box-shadow: var(--shadow);
}

.shala-info h4 {
    font-size: 1.1rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.shala-info p {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ── Contact Section ── */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-title { margin-bottom: 0.8rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; font-size: 0.95rem; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.contact-item:hover { color: var(--pink); }

.contact-icon { font-size: 1.2rem; }

.camp-summary-cards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.summary-card {
    background: linear-gradient(135deg, var(--pink-light), var(--orange-light));
    border-radius: var(--radius-sm);
    padding: 1rem 1.3rem;
    border-left: 4px solid var(--pink);
}

.summary-card-2 {
    background: linear-gradient(135deg, var(--purple-light), var(--blue-light));
    border-left-color: var(--purple);
}

.summary-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.summary-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.summary-price { color: var(--pink) !important; font-weight: 700 !important; margin-top: 0.2rem !important; }
.summary-card-2 .summary-price { color: var(--purple) !important; }

/* Enrollment Form */
.enrollment-card {
    background: var(--off-white);
    border-radius: 24px;
    padding: 2.4rem;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid rgba(232, 84, 122, 0.1);
}

.enrollment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.enroll-sub {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(232,84,122,0.12);
}

.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.8rem;
}

/* ── Footer ── */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.85);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.fb1 { width: 400px; height: 400px; background: var(--pink); top: -100px; right: -100px; }
.fb2 { width: 300px; height: 300px; background: var(--yellow); bottom: -80px; left: -60px; }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 160px;
    width: auto;
    background: rgba(255,255,255,0.96);
    border-radius: 16px;
    padding: 10px 14px;
    display: block;
    margin-bottom: 0.6rem;
}

.footer-motto {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links h5, .footer-contact h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.footer-links a, .footer-contact a {
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--yellow); }

.footer-payment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.pay-chip {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    position: relative;
    z-index: 1;
}

/* ── Sticky CTA ── */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.07);
    padding: 0.85rem 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-cta-content p {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.sticky-cta-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.btn-cta-sticky {
    padding: 0.55rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    background: var(--off-white);
    color: var(--text);
    border: 1.5px solid rgba(0,0,0,0.1);
    transition: all 0.2s;
}
.btn-cta-sticky:hover { background: rgba(0,0,0,0.06); }

.btn-cta-enroll {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: var(--white) !important;
    border-color: transparent !important;
    box-shadow: 0 3px 12px rgba(232,84,122,0.3);
}
.btn-cta-enroll:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(232,84,122,0.4); }

/* ── Success State ── */
.form-success {
    text-align: center;
    padding: 2rem;
}
.form-success-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.form-success h4 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--green); }
.form-success p { font-size: 0.9rem; color: var(--text-light); }

/* ── Camps Single Layout ── */
.camps-single {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.camp-full .camp-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
    align-items: start;
}

.camp-full .camp-desc {
    grid-column: 1 / -1;
}

.camp-full .btn-camp-primary {
    grid-column: 1 / -1;
}

/* ── Workshops Section ── */
.workshops-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-bottom: 2.5rem;
}

.workshop-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.workshop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.workshop-img-wrap {
    height: 180px;
    overflow: hidden;
}

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

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

.workshop-body {
    padding: 1.3rem 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.workshop-type {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 0.3rem;
}

.workshop-title {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.workshop-details {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
    flex: 1;
}

.ws-detail {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    align-items: flex-start;
}

.ws-detail span:first-child { flex-shrink: 0; }
.ws-detail strong { color: var(--text); }
.ws-detail em { font-style: italic; font-size: 0.75rem; }

.btn-ws {
    display: block;
    text-align: center;
    padding: 0.7rem;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 3px 12px rgba(232, 84, 122, 0.25);
}
.btn-ws:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 84, 122, 0.4);
}

/* Bundle banner */
.ws-bundle {
    background: linear-gradient(135deg, var(--text) 0%, #3a2d52 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: var(--white);
}

.ws-bundle-label {
    display: inline-block;
    background: var(--yellow);
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    margin-bottom: 0.6rem;
}

.ws-bundle-left h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.ws-bundle-left p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    max-width: 420px;
}

.ws-bundle-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.ws-bundle-price {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    color: var(--yellow);
    line-height: 1;
}

/* Workshop summary card */
.summary-card-workshop {
    background: linear-gradient(135deg, var(--green-light), var(--blue-light));
    border-left-color: var(--green);
}
.summary-card-workshop .summary-price { color: var(--green) !important; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .workshops-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .hero .container { flex-direction: column; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-info-row { justify-content: center; }
    .hero-art { display: none; }
    .trial-banner-inner { flex-direction: column; text-align: center; }
    .trial-banner-left p { margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .about-pillars { grid-template-columns: 1fr 1fr; }
    .camps-grid,
    .why-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .camp-full .camp-body { grid-template-columns: 1fr; }
    .ws-bundle { flex-direction: column; text-align: center; }
    .ws-bundle-right { justify-content: center; }
    .mission-cards { grid-template-columns: 1fr 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1.5rem 2rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        gap: 1.2rem;
        z-index: 999;
    }
    .navbar { position: relative; }
    .sticky-cta-content { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .exp-grid { grid-template-columns: 1fr 1fr; }
    .workshops-grid { grid-template-columns: 1fr; }
    .mission-cards { grid-template-columns: 1fr; }
    .camp-body { padding: 1.4rem; }
    .camp-header { padding: 1.6rem 1.4rem 1.2rem; }
    .enrollment-card { padding: 1.6rem; }
}

@media (max-width: 420px) {
    .exp-grid { grid-template-columns: 1fr; }
}
