﻿ 
:root {
    --blue: #1565C0;
    --blue-light: #1E88E5;
    --blue-pale: #E3F2FD;
    --blue-mid: #BBDEFB;
    --green: #2E7D32;
    --green-light: #43A047;
    --green-pale: #E8F5E9;
    --gold: #F9A825;
    --gold-pale: #FFF8E1;
    --red: #C62828;
    --red-pale: #FFEBEE;
    --white: #ffffff;
    --off-white: #F7FBF7;
    --text-dark: #1a2e1a;
    --text-mid: #3a4a3a;
    --text-light: #6a7a6a;
    --border: #D8E8D8;
    --radius: 14px;
    --radius-lg: 24px;
    --shadow: 0 8px 32px rgba(21,101,192,0.12);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ══ NAV ══ */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(21,101,192,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .nav-logo img {
        height: 54px;
        width: auto;
        object-fit: contain;
    }

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        font-weight: 700;
        font-size: 0.93rem;
        color: var(--text-mid);
        padding: 8px 16px;
        border-radius: 50px;
        transition: background .2s, color .2s;
    }

        .nav-links a:hover {
            background: var(--blue-pale);
            color: var(--blue);
        }

        .nav-links a.active {
            background: var(--blue-pale);
            color: var(--blue);
        }

        .nav-links a.cta {
            background: var(--blue);
            color: white;
            padding: 8px 22px;
        }

            .nav-links a.cta:hover {
                background: var(--blue-light);
            }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--blue);
        border-radius: 3px;
    }

/* ══ BREADCRUMB ══ */
.breadcrumb {
    max-width: 860px;
    margin: 0 auto;
    padding: 18px 5vw 0;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .breadcrumb a {
        color: var(--blue);
        text-decoration: none;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

    .breadcrumb .sep {
        opacity: .45;
    }

/* ══ PAGE HERO ══ */
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #E3F2FD 0%, #F7FBF7 55%, #E8F5E9 100%);
    padding: 60px 5vw 56px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

    .hero-bg span {
        position: absolute;
        border-radius: 50%;
        opacity: .09;
    }

        .hero-bg span:nth-child(1) {
            width: 400px;
            height: 400px;
            background: var(--blue);
            top: -140px;
            left: -100px;
        }

        .hero-bg span:nth-child(2) {
            width: 280px;
            height: 280px;
            background: var(--green);
            bottom: -80px;
            right: -60px;
        }

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-pale);
    color: var(--blue);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: fadeUp .5s ease both;
}

.page-hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeUp .6s .1s ease both;
}

    .page-hero h1 .blue {
        color: var(--blue);
    }

    .page-hero h1 .green {
        color: var(--green);
    }

.page-hero p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.75;
    animation: fadeUp .6s .2s ease both;
}

/* ══ PROGRESS STEPS ══ */
.progress-wrap {
    max-width: 860px;
    margin: 36px auto 0;
    padding: 0 5vw;
    animation: fadeUp .6s .3s ease both;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.88rem;
    background: var(--blue-pale);
    color: var(--blue);
    border: 2px solid var(--blue-mid);
    transition: all .3s;
}

    .step-circle.active {
        background: var(--blue);
        color: white;
        border-color: var(--blue);
        box-shadow: 0 4px 14px rgba(21,101,192,.35);
    }

    .step-circle.done {
        background: var(--green);
        color: white;
        border-color: var(--green);
    }

.step-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-mid);
}

    .step-label.active {
        color: var(--blue);
    }

.step-connector {
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: var(--blue-mid);
    margin: 0 12px;
}

/* ══ FORM WRAPPER ══ */
.form-page {
    padding: 48px 5vw 80px;
    max-width: 860px;
    margin: 0 auto;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Section header inside form */
.form-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 36px 18px;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 28px;
}

.fsh-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.fsh-blue {
    background: var(--blue-pale);
}

.fsh-green {
    background: var(--green-pale);
}

.fsh-gold {
    background: var(--gold-pale);
}

.fsh-text h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.25rem;
    color: var(--blue);
    line-height: 1.1;
}

.fsh-text p {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 2px;
}

/* Form body padding */
.form-body {
    padding: 0 36px 36px;
}

/* Two-col grid */
.form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

    .form-row.cols-2 {
        grid-template-columns: 1fr 1fr;
    }

    .form-row.cols-1 {
        grid-template-columns: 1fr;
    }

/* Field */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .field label {
        font-weight: 800;
        font-size: 0.84rem;
        color: var(--text-mid);
        letter-spacing: .02em;
        display: flex;
        align-items: center;
        gap: 6px;
    }

.badge-required {
    background: var(--red);
    color: white;
    font-size: 0.64rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.badge-optional {
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 0.64rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color .2s, box-shadow .2s, background .2s;
    outline: none;
}

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
        border-color: var(--blue-light);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(30,136,229,.10);
    }

    .field input.error {
        border-color: var(--red);
        background: var(--red-pale);
    }

        .field input.error:focus {
            box-shadow: 0 0 0 4px rgba(198,40,40,.10);
        }

    .field input[type="number"] {
        -moz-appearance: textfield;
    }

        .field input[type="number"]::-webkit-outer-spin-button,
        .field input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
        }

/* Helper & error text */
.helper {
    font-size: 0.80rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

    .helper.info {
        color: var(--blue);
    }

    .helper.warn {
        color: #E65100;
    }

.helper-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.field-error {
    font-size: 0.80rem;
    font-weight: 700;
    color: var(--red);
    display: none;
    align-items: center;
    gap: 5px;
}

    .field-error.show {
        display: flex;
    }

/* Investment Terms box */
.terms-box {
    background: linear-gradient(135deg, var(--blue-pale) 0%, #DCEEFB 100%);
    border: 2px solid var(--blue-mid);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 20px;
}

.terms-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .terms-box-header span:first-child {
        font-size: 1.4rem;
    }

    .terms-box-header strong {
        font-family: 'Fredoka One', cursive;
        font-size: 1rem;
        color: var(--blue);
    }

.terms-text {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.65;
    background: var(--white);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1.5px solid var(--blue-mid);
    user-select: none;
}

.terms-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
}

    .terms-agree input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        accent-color: var(--blue);
        flex-shrink: 0;
        cursor: pointer;
    }

    .terms-agree label {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-mid);
        cursor: pointer;
        line-height: 1.5;
    }

/* Payment section */
.payment-section {
    background: linear-gradient(135deg, var(--gold-pale) 0%, #FFF3CD 100%);
    border: 2px solid #FFE082;
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 20px;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .payment-header span {
        font-size: 1.5rem;
    }

    .payment-header div strong {
        font-family: 'Fredoka One', cursive;
        font-size: 1.05rem;
        color: #E65100;
        display: block;
    }

    .payment-header div p {
        font-size: 0.80rem;
        font-weight: 700;
        color: var(--text-light);
        margin-top: 2px;
    }

.zelle-info {
    background: var(--white);
    border-radius: 12px;
    padding: 16px 18px;
    border: 1.5px solid #FFE082;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.zelle-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6C1CD1, #9C27B0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: white;
    font-weight: 900;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    letter-spacing: .01em;
}

.zelle-details strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    margin-bottom: 3px;
}

.zelle-details span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-light);
}

.amount-warning {
    background: var(--gold-pale);
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #7B5800;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
}

/* Form divider */
.form-divider {
    border: none;
    border-top: 1.5px solid var(--border);
    margin: 28px 0;
}

/* Amount display */
.amount-display {
    background: var(--green-pale);
    border: 2px solid #A5D6A7;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .amount-display span {
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--green);
    }

    .amount-display strong {
        font-family: 'Fredoka One', cursive;
        font-size: 1.4rem;
        color: var(--green);
    }

/* Submit button */
.submit-wrap {
    padding: 0 36px 36px;
}

.submit-btn {
    width: 100%;
    padding: 18px 28px;
    border: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.08rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 26px rgba(21,101,192,.32);
    transition: transform .18s, box-shadow .18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(21,101,192,.42);
    }

    .submit-btn:disabled {
        opacity: .6;
        cursor: not-allowed;
        transform: none;
    }

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ══ SUCCESS OVERLAY ══ */
.success-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .success-overlay.show {
        display: flex;
    }

.success-modal {
    background: var(--white);
    border-radius: 28px;
    padding: 52px 44px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,.22);
    animation: popIn .4s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.8) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 24px;
    box-shadow: 0 12px 36px rgba(46,125,50,.30);
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 12px 36px rgba(46,125,50,.30);
    }

    50% {
        box-shadow: 0 16px 48px rgba(46,125,50,.48);
    }
}

.success-modal h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 12px;
}

.success-modal p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 28px;
}

.countdown-bar {
    background: var(--green-pale);
    border-radius: 50px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.countdown-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    border-radius: 50px;
    width: 100%;
    transition: width 1s linear;
}

.countdown-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.97rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(46,125,50,.30);
    transition: transform .18s, box-shadow .18s;
}

    .btn-home:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(46,125,50,.40);
    }

/* ══ FOOTER ══ */
footer {
    background: linear-gradient(135deg, #0D47A1 0%, #1B5E20 100%);
    color: white;
    padding: 48px 5vw 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin-bottom: 22px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.footer-mission {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: .82;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.82rem;
    font-weight: 800;
    opacity: .88;
}

    .footer-tagline .heart {
        color: var(--gold);
    }

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 0.97rem;
    margin-bottom: 12px;
    color: #90CAF9;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-col ul li a {
        text-decoration: none;
        color: rgba(255,255,255,.74);
        font-weight: 600;
        font-size: 0.87rem;
        transition: color .2s;
    }

        .footer-col ul li a:hover {
            color: white;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: 0.80rem;
    opacity: .58;
    font-weight: 600;
}

.footer-note {
    font-size: 0.80rem;
    opacity: .58;
    font-weight: 600;
}

    .footer-note a {
        color: #A5D6A7;
        text-decoration: none;
    }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 700px) {
    .form-row.cols-2 {
        grid-template-columns: 1fr;
    }

    .form-body, .form-section-header, .submit-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 14px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
    }

        .nav-links.open {
            display: flex;
        }

    .hamburger {
        display: flex;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .success-modal {
        padding: 36px 24px;
    }
}

 
