/* ================================================================
   GIRLS FREE COUNSELLING PROGRAM — GirlsCounselling.css
   Aesthetic: Warm Empowerment — Rose · Marigold · Plum (refined v2)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Dancing+Script:wght@600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
    --rose: #B7355A;
    --rose-deep: #6E1230;
    --rose-light: #F0AFC2;
    --rose-pale: #FDF1F4;
    --gold: #D89A3D;
    --gold-deep: #A8701F;
    --gold-light: #F3D9A0;
    --gold-pale: #FDF7EA;
    --mauve: #6B3F5C;
    --mauve-light: #D9BAC9;
    --cream: #FBF6EF;
    --dark: #1F0B16;
    --text: #34121F;
    --text-muted: #7C5568;
    --border: rgba(183,53,90,.16);
    --white: #ffffff;
    --shadow-sm: 0 2px 12px rgba(110,18,48,.08);
    --shadow-md: 0 8px 32px rgba(110,18,48,.12);
    --shadow-lg: 0 24px 64px rgba(110,18,48,.18);
}

/* ── Base ──────────────────────────────────────────────────────── */
.gc-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
}

/* ── HERO ──────────────────────────────────────────────────────── */
.gc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1F0B16 0%, #421B32 40%, #6E1230 70%, #B7355A 100%);
    overflow: hidden;
}

.gc-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: radial-gradient(circle at 20% 50%, #D89A3D 1px, transparent 1px), radial-gradient(circle at 80% 20%, #F0AFC2 1px, transparent 1px), radial-gradient(circle at 60% 80%, #B7355A 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px, 80px 80px;
}

.gc-hero-orb1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216,154,61,.25) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.gc-hero-orb2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183,53,90,.2) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(20px,-30px) scale(1.05);
    }
}

.gc-hero-inner {
    position: relative;
    z-index: 2;
}

.gc-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(216,154,61,.15);
    border: 1px solid rgba(216,154,61,.35);
    border-radius: 30px;
    padding: 6px 18px;
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

    .gc-hero-eyebrow .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

.gc-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 16px;
}

    .gc-hero h1 .italic {
        font-style: italic;
        color: var(--gold-light);
    }

    .gc-hero h1 .underline-rose {
        position: relative;
        display: inline-block;
    }

        .gc-hero h1 .underline-rose::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--rose-light));
            border-radius: 2px;
        }

.gc-hero-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--rose-light);
    margin: 0 0 28px;
    opacity: .9;
}

.gc-hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    max-width: 520px;
    line-height: 1.8;
    margin: 0 0 40px;
}

.gc-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gc-hero-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}

    .gc-hero-badge i {
        color: var(--gold-light);
        font-size: 11px;
    }

.gc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--dark);
    font-weight: 800;
    font-size: 14px;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 8px 24px rgba(216,154,61,.4);
}

    .gc-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(216,154,61,.5);
        color: var(--dark);
        text-decoration: none;
    }

.gc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.3);
    cursor: pointer;
    text-decoration: none;
    transition: all .3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

    .gc-btn-outline:hover {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.5);
        color: #fff;
        text-decoration: none;
    }

.gc-hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gc-hero-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 32px;
    max-width: 380px;
    position: relative;
}

.gc-hero-card-top {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(216,154,61,.4);
}

.gc-hero-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: #fff;
    margin: 0 0 10px;
    text-align: center;
}

.gc-hero-card p {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    text-align: center;
    margin: 0 0 20px;
}

.gc-hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gc-hero-stat-item {
    background: rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.08);
}

    .gc-hero-stat-item .num {
        font-family: 'Cormorant Garamond', serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--gold-light);
        line-height: 1;
    }

    .gc-hero-stat-item .lbl {
        font-size: 10px;
        color: rgba(255,255,255,.55);
        margin-top: 4px;
        font-weight: 600;
        letter-spacing: .5px;
    }

.gc-hero-floating {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    animation: floatBadge 4s ease-in-out infinite;
}

    .gc-hero-floating.f1 {
        top: -20px;
        right: -40px;
        animation-delay: 0s;
    }

    .gc-hero-floating.f2 {
        bottom: 30px;
        left: -50px;
        animation-delay: 1.5s;
    }

    .gc-hero-floating.f3 {
        top: 50%;
        right: -60px;
        animation-delay: .7s;
    }

@keyframes floatBadge {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.gc-hero-floating .fi {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

    .gc-hero-floating .fi.rose {
        background: var(--rose-pale);
    }

    .gc-hero-floating .fi.gold {
        background: var(--gold-pale);
    }

    .gc-hero-floating .fi.mauve {
        background: #F0E4EC;
    }

/* ── MARQUEE ───────────────────────────────────────────────────── */
.gc-marquee-bar {
    background: linear-gradient(135deg, var(--rose-deep), var(--rose));
    padding: 14px 0;
    overflow: hidden;
}

.gc-marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}

.gc-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    letter-spacing: .5px;
}

    .gc-marquee-item i {
        color: var(--gold-light);
    }

@keyframes marqueeScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ── SECTION SHARED ────────────────────────────────────────────── */
.gc-section {
    padding: 80px 0;
}

.gc-section-alt {
    background: var(--rose-pale);
}

.gc-section-dark {
    background: linear-gradient(135deg, #1F0B16, #421B32);
    color: white;
}

.gc-section-gold {
    background: var(--gold-pale);
}

.gc-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rose-pale);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--rose);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

    .gc-section-badge.gold {
        background: var(--gold-pale);
        border-color: rgba(216,154,61,.2);
        color: var(--gold-deep);
    }

    .gc-section-badge.white {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.2);
        color: rgba(255,255,255,.8);
    }

.gc-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px;
}

    .gc-section-title .accent {
        color: var(--rose);
    }

    .gc-section-title .italic {
        font-style: italic;
    }

    .gc-section-title.light {
        color: white;
    }

        .gc-section-title.light .accent {
            color: var(--gold-light);
        }

.gc-section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
}

    .gc-section-desc.light {
        color: rgba(255,255,255,.65);
    }

.gc-divider {
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    margin: 16px 0 32px;
}

    .gc-divider.center {
        margin: 16px auto 32px;
    }

/* ── STATS ROW ─────────────────────────────────────────────────── */
.gc-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gc-stat-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

    .gc-stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--rose), var(--gold));
    }

    .gc-stat-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .gc-stat-card .icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin: 0 auto 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

        .gc-stat-card .icon.rose {
            background: var(--rose-pale);
            color: var(--rose);
        }

        .gc-stat-card .icon.gold {
            background: var(--gold-pale);
            color: var(--gold-deep);
        }

        .gc-stat-card .icon.mauve {
            background: #F0E4EC;
            color: var(--mauve);
        }

        .gc-stat-card .icon.dark {
            background: var(--rose-pale);
            color: var(--rose-deep);
        }

    .gc-stat-card .number {
        font-family: 'Cormorant Garamond', serif;
        font-size: 48px;
        font-weight: 700;
        line-height: 1;
        background: linear-gradient(135deg, var(--rose-deep), var(--gold-deep));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .gc-stat-card .label {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted);
        margin-top: 6px;
    }

/* ── PROGRAM CARDS ─────────────────────────────────────────────── */
.gc-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gc-program-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .35s;
    cursor: pointer;
}

    .gc-program-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.gc-program-header {
    padding: 32px 28px 24px;
    position: relative;
    background: linear-gradient(135deg, var(--rose-pale), white);
}

.gc-program-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(183,53,90,.2);
}

    .gc-program-icon.rose {
        background: linear-gradient(135deg, var(--rose), var(--rose-deep));
        color: white;
    }

    .gc-program-icon.gold {
        background: linear-gradient(135deg, var(--gold), var(--gold-deep));
        color: white;
    }

    .gc-program-icon.mauve {
        background: linear-gradient(135deg, var(--mauve), #3D2438);
        color: white;
    }

    .gc-program-icon.teal {
        background: linear-gradient(135deg, #2D8577, #16564C);
        color: white;
    }

    .gc-program-icon.purple {
        background: linear-gradient(135deg, #7A4FA8, #522072);
        color: white;
    }

    .gc-program-icon.orange {
        background: linear-gradient(135deg, #DB7A3E, #A9531E);
        color: white;
    }

.gc-program-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
}

.gc-program-header p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.gc-program-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--rose-pale);
    border: 1px solid var(--border);
    color: var(--rose);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 10px;
}

    .gc-program-tag.free {
        background: #E7F6EF;
        border-color: rgba(22,163,74,.2);
        color: #16a34a;
    }

.gc-program-body {
    padding: 24px 28px;
}

.gc-program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .gc-program-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.5;
    }

        .gc-program-features li .check {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--rose-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
            color: var(--rose);
            font-size: 9px;
        }

.gc-program-footer {
    padding: 16px 28px;
    background: var(--rose-pale);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .gc-program-footer .duration {
        font-size: 12px;
        font-weight: 700;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .gc-program-footer .action {
        font-size: 12px;
        font-weight: 800;
        color: var(--rose);
        display: flex;
        align-items: center;
        gap: 4px;
        transition: gap .2s;
    }

.gc-program-card:hover .gc-program-footer .action {
    gap: 8px;
}

/* ── TIMELINE ──────────────────────────────────────────────────── */
.gc-timeline {
    position: relative;
    padding-left: 40px;
}

    .gc-timeline::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 8px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--rose), var(--gold), transparent);
    }

.gc-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

    .gc-timeline-item:last-child {
        margin-bottom: 0;
    }

.gc-timeline-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--rose-light);
}

.gc-timeline-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
}

.gc-timeline-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.gc-timeline-item .step-tag {
    display: inline-block;
    background: var(--rose-pale);
    color: var(--rose);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
}

/* ── MENTOR CARDS ──────────────────────────────────────────────── */
.gc-mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gc-mentor-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all .3s;
}

    .gc-mentor-card:hover {
        background: rgba(255,255,255,.12);
        transform: translateY(-4px);
    }

.gc-mentor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
    border: 3px solid rgba(216,154,61,.3);
    box-shadow: 0 8px 24px rgba(216,154,61,.3);
}

.gc-mentor-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: white;
    margin: 0 0 4px;
}

.gc-mentor-card .role {
    font-size: 12px;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.gc-mentor-card .org {
    font-size: 11px;
    color: rgba(255,255,255,.5);
    margin-bottom: 14px;
}

.gc-mentor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.gc-mentor-tag {
    background: rgba(216,154,61,.15);
    border: 1px solid rgba(216,154,61,.25);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 8px;
}

/* ── BENEFITS ──────────────────────────────────────────────────── */
.gc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gc-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid var(--border);
    transition: all .25s;
}

    .gc-benefit-item:hover {
        box-shadow: var(--shadow-sm);
        transform: translateX(4px);
    }

.gc-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

    .gc-benefit-icon.r1 {
        background: var(--rose-pale);
        color: var(--rose);
    }

    .gc-benefit-icon.r2 {
        background: var(--gold-pale);
        color: var(--gold-deep);
    }

    .gc-benefit-icon.r3 {
        background: #EEF0FB;
        color: #4A4FB0;
    }

    .gc-benefit-icon.r4 {
        background: #EAF6F0;
        color: #1F8A4C;
    }

    .gc-benefit-icon.r5 {
        background: var(--rose-pale);
        color: var(--mauve);
    }

    .gc-benefit-icon.r6 {
        background: var(--gold-pale);
        color: #B5641A;
    }

.gc-benefit-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 5px;
}

.gc-benefit-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── TESTIMONIALS ──────────────────────────────────────────────── */
.gc-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gc-testi-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all .3s;
}

    .gc-testi-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.gc-testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    line-height: 1;
    color: var(--rose-light);
    position: absolute;
    top: 16px;
    right: 24px;
}

.gc-testi-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 20px;
}

.gc-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gc-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--mauve));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.gc-testi-author .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.gc-testi-author .place {
    font-size: 11px;
    color: var(--text-muted);
}

.gc-testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

    .gc-testi-stars i {
        color: var(--gold-deep);
        font-size: 12px;
    }

/* ── FAQ ───────────────────────────────────────────────────────── */
.gc-faq-item {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 10px;
    transition: all .25s;
}

    .gc-faq-item:hover {
        border-color: var(--rose-light);
    }

.gc-faq-q {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    user-select: none;
}

    .gc-faq-q .arrow {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--rose-pale);
        color: var(--rose);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        flex-shrink: 0;
        transition: transform .25s;
    }

.gc-faq-item.open .gc-faq-q .arrow {
    transform: rotate(180deg);
    background: var(--rose);
    color: white;
}

.gc-faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.gc-faq-item.open .gc-faq-a {
    display: block;
}

/* ── REGISTRATION FORM ─────────────────────────────────────────── */
.gc-register-wrap {
    background: white;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    max-width: 780px;
    margin: 0 auto;
}

.gc-register-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px;
}

.gc-register-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 32px;
}

.gc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gc-form-group {
    margin-bottom: 18px;
}

    .gc-form-group label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 7px;
        letter-spacing: .3px;
    }

        .gc-form-group label .req {
            color: var(--rose);
        }

.gc-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #EAD9E0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: #FDF8FA;
    transition: all .2s;
    box-sizing: border-box;
    outline: none;
}

    .gc-form-control:focus {
        border-color: var(--rose);
        background: white;
        box-shadow: 0 0 0 3px rgba(183,53,90,.1);
    }

    .gc-form-control::placeholder {
        color: #B69AA8;
    }

.gc-form-select {
    width: 100%;
    padding: 12px 36px 12px 16px;
    border: 1.5px solid #EAD9E0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: #FDF8FA;
    transition: all .2s;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

    .gc-form-select:focus {
        border-color: var(--rose);
        background: white;
        box-shadow: 0 0 0 3px rgba(183,53,90,.1);
    }

.gc-interest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gc-interest-chip {
    padding: 7px 14px;
    border-radius: 20px;
    border: 1.5px solid #EAD9E0;
    background: #FDF8FA;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .2s;
    user-select: none;
}

    .gc-interest-chip.selected {
        background: var(--rose-pale);
        border-color: var(--rose);
        color: var(--rose);
    }

/* FIX: Preferred Session Mode — ASP.NET's RadioButton control renders
   its own <input><label> pair for the Text property. The previous
   markup wrapped that pair inside a second, manual <label>, which is
   invalid nested-label HTML and made the text collapse/overlap on
   render. Style the control's own rendered pair instead — no wrapper
   label needed. Matching .aspx markup:
     <div class="gc-radio-group">
       <div class="gc-radio-option">
         <asp:RadioButton ... Text="..." />
       </div>
       ...
     </div>
*/
.gc-radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.gc-radio-option {
    display: flex;
    align-items: center;
}

    .gc-radio-option input[type="radio"] {
        accent-color: var(--rose);
        width: 16px;
        height: 16px;
        margin-right: 7px;
        cursor: pointer;
    }

    .gc-radio-option label {
        font-weight: 500;
        font-size: 13px;
        color: var(--text-muted);
        cursor: pointer;
        margin: 0;
    }

.gc-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

    .gc-form-consent input {
        margin-top: 2px;
        accent-color: var(--rose);
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .gc-form-consent a {
        color: var(--rose);
        font-weight: 600;
    }

.gc-form-submit {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--rose-deep), var(--rose));
    color: white;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 8px 24px rgba(110,18,48,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .gc-form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(110,18,48,.4);
    }

    .gc-form-submit:active {
        transform: translateY(0);
    }

/* ── SUCCESS MESSAGE ───────────────────────────────────────────── */
.gc-success-panel {
    background: linear-gradient(135deg, var(--rose-pale), var(--gold-pale));
    border: 1.5px solid var(--rose-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    display: none;
}

    .gc-success-panel .check-circle {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, #16a34a, #15803d);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        font-size: 28px;
        color: white;
        box-shadow: 0 8px 24px rgba(22,163,74,.3);
    }

    .gc-success-panel h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 28px;
        color: var(--text);
        margin: 0 0 8px;
    }

    .gc-success-panel p {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0;
    }

/* ── PROGRAM ELIGIBILITY ───────────────────────────────────────── */
.gc-eligibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gc-elig-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: all .3s;
}

    .gc-elig-card:hover {
        background: rgba(255,255,255,.12);
    }

    .gc-elig-card .icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        background: rgba(216,154,61,.15);
        border: 1px solid rgba(216,154,61,.2);
        color: var(--gold-light);
    }

    .gc-elig-card h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 20px;
        color: white;
        margin: 0 0 10px;
    }

    .gc-elig-card p {
        font-size: 13px;
        color: rgba(255,255,255,.6);
        line-height: 1.7;
        margin: 0;
    }

/* ── CTA BANNER ────────────────────────────────────────────────── */
.gc-cta-banner {
    background: linear-gradient(135deg, var(--rose-deep), #8A1F42, var(--rose));
    border-radius: 28px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .gc-cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: .05;
        background-image: radial-gradient(circle at 30% 50%, #fff 1px, transparent 1px), radial-gradient(circle at 70% 30%, #fff 1px, transparent 1px);
        background-size: 50px 50px, 70px 70px;
    }

    .gc-cta-banner h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(32px, 4vw, 52px);
        color: white;
        margin: 0 0 12px;
        position: relative;
    }

    .gc-cta-banner p {
        color: rgba(255,255,255,.7);
        font-size: 16px;
        margin: 0 0 32px;
        position: relative;
    }

    .gc-cta-banner .actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
    }

/* ── IMPACT STRIP ──────────────────────────────────────────────── */
.gc-impact-strip {
    background: linear-gradient(90deg, var(--rose-pale), var(--gold-pale));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 60px;
    overflow: hidden;
}

    .gc-impact-strip .icon-wrap {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--rose), var(--rose-deep));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
    }

    .gc-impact-strip .text h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--text);
        margin: 0 0 4px;
    }

    .gc-impact-strip .text p {
        font-size: 13px;
        color: var(--text-muted);
        margin: 0;
    }

    .gc-impact-strip .cta-link {
        margin-left: auto;
        font-size: 13px;
        font-weight: 700;
        color: var(--rose);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
        white-space: nowrap;
    }

        .gc-impact-strip .cta-link:hover {
            gap: 8px;
        }

/* ── ANIMATIONS ────────────────────────────────────────────────── */
.gc-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .7s forwards;
}

    .gc-fade-up.d1 {
        animation-delay: .1s;
    }

    .gc-fade-up.d2 {
        animation-delay: .2s;
    }

    .gc-fade-up.d3 {
        animation-delay: .3s;
    }

    .gc-fade-up.d4 {
        animation-delay: .4s;
    }

    .gc-fade-up.d5 {
        animation-delay: .5s;
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SCROLL REVEAL ─────────────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s, transform .6s;
}

    [data-reveal].revealed {
        opacity: 1;
        transform: translateY(0);
    }

    [data-reveal].delay-1 {
        transition-delay: .1s;
    }

    [data-reveal].delay-2 {
        transition-delay: .2s;
    }

    [data-reveal].delay-3 {
        transition-delay: .3s;
    }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media(max-width:991px) {
    .gc-stats-row {
        grid-template-columns: repeat(2,1fr);
    }

    .gc-programs-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gc-mentors-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gc-eligibility-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gc-testi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {
    .gc-section {
        padding: 52px 0;
    }

    .gc-stats-row {
        grid-template-columns: repeat(2,1fr);
        gap: 14px;
    }

    .gc-programs-grid {
        grid-template-columns: 1fr;
    }

    .gc-mentors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gc-eligibility-grid {
        grid-template-columns: 1fr;
    }

    .gc-testi-grid {
        grid-template-columns: 1fr;
    }

    .gc-benefits-grid {
        grid-template-columns: 1fr;
    }

    .gc-form-row {
        grid-template-columns: 1fr;
    }

    .gc-register-wrap {
        padding: 28px 20px;
    }

    .gc-cta-banner {
        padding: 40px 24px;
    }

    .gc-impact-strip {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

        .gc-impact-strip .cta-link {
            margin: 0 auto;
        }

    .gc-hero-floating {
        display: none;
    }
}
