﻿ 
: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;
    --orange: #E65100;
    --white: #ffffff;
    --off-white: #F7FBF7;
    --text-dark: #1a2e1a;
    --text-mid: #3a4a3a;
    --text-light: #6a7a6a;
    --border: #D8E8D8;
    --radius: 14px;
    --radius-lg: 26px;
    --shadow: 0 10px 44px 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;
    min-height: 100vh;
}

/* ══ NAV ══ */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(21,101,192,.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: .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: 1100px;
    margin: 0 auto;
    padding: 18px 5vw 0;
    font-size: .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;
    }

/* ══ HERO ══ */
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--blue-pale) 0%, #F7FBF7 50%, var(--green-pale) 100%);
    padding: 68px 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: 300px;
            height: 300px;
            background: var(--green);
            bottom: -90px;
            right: -70px;
        }

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin: 0 auto 22px;
    box-shadow: 0 10px 32px rgba(21,101,192,.30);
    animation: fadeUp .5s ease both;
}

.page-hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 14px;
    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.7;
    animation: fadeUp .6s .2s ease both;
}

/* ══ LAYOUT ══ */
.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 5vw 80px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 36px;
    align-items: start;
}

/* ══ LEFT SIDEBAR ══ */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact preference banner */
.pref-banner {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border: 2.5px solid #FFAB40;
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    animation: fadeUp .6s .25s ease both;
}

.pref-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.pref-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(230,81,0,.28);
}

.pref-banner-header div strong {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: var(--orange);
    display: block;
}

.pref-banner-header div span {
    font-size: .80rem;
    font-weight: 700;
    color: #BF360C;
}

.pref-rule {
    background: var(--white);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid #FFE0B2;
}

    .pref-rule:last-child {
        margin-bottom: 0;
    }

.pr-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.pref-rule p {
    font-size: .86rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.45;
}

    .pref-rule p span {
        color: var(--orange);
        display: block;
        font-size: .75rem;
        margin-top: 2px;
    }

/* No-call badge */
.no-call-badge {
    background: var(--red-pale);
    border: 2px solid #EF9A9A;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

    .no-call-badge .ncb-icon {
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .no-call-badge p {
        font-size: .84rem;
        font-weight: 800;
        color: var(--red);
        line-height: 1.4;
    }

/* Contact info card */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    padding: 26px 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    animation: fadeUp .6s .35s ease both;
}

.cic-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cic-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

    .cic-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.cic-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ci-blue {
    background: var(--blue-pale);
}

.ci-green {
    background: var(--green-pale);
}

.ci-gold {
    background: var(--gold-pale);
}

.cic-row-text strong {
    font-size: .83rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    margin-bottom: 2px;
}

.cic-row-text span {
    font-size: .80rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Response time badge */
.response-badge {
    background: var(--green-pale);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #A5D6A7;
}

    .response-badge span {
        font-size: 1.2rem;
    }

    .response-badge p {
        font-size: .82rem;
        font-weight: 700;
        color: var(--green);
        line-height: 1.4;
    }

/* ══ RIGHT: FORM CARD ══ */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid var(--blue-mid);
    overflow: hidden;
    animation: fadeUp .6s .3s ease both;
}

.form-card-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    padding: 26px 36px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.fch-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.28);
}

.fch-text h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 3px;
}

.fch-text p {
    font-size: .82rem;
    font-weight: 700;
    color: rgba(255,255,255,.82);
    line-height: 1.4;
}

.form-body {
    padding: 32px 36px 36px;
}

/* Two-col row */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* Field */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

    .field:last-of-type {
        margin-bottom: 0;
    }

    .field label {
        font-weight: 800;
        font-size: .84rem;
        color: var(--text-mid);
        letter-spacing: .02em;
        display: flex;
        align-items: center;
        gap: 7px;
    }

.badge-required {
    background: var(--red);
    color: white;
    font-size: .62rem;
    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: .62rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
}

.input-icon-top {
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 1rem;
    pointer-events: none;
}

.field input,
.field textarea {
    width: 100%;
    padding: 13px 16px 13px 42px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-size: .97rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color .2s, box-shadow .2s, background .2s;
    outline: none;
}
.field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color 0.2s;
    outline: none;
}

    .field input: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,
    .field textarea.error {
        border-color: var(--red);
        background: var(--red-pale);
    }

.field textarea {
    padding-left: 42px;
    resize: vertical;
    min-height: 140px;
}

.field-error {
    font-size: .79rem;
    font-weight: 700;
    color: var(--red);
    display: none;
    align-items: center;
    gap: 5px;
}

    .field-error.show {
        display: flex;
    }

.helper {
    font-size: .79rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

/* Char counter */
.char-count {
    text-align: right;
    font-size: .76rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 4px;
}

    .char-count.warn {
        color: var(--orange);
    }

/* ══ SUBMIT ══ */
.submit-wrap {
    margin-top: 28px;
}

.submit-btn {
    width: 100%;
    padding: 17px 28px;
    border: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    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: .65;
        cursor: not-allowed;
        transform: none;
    }

.form-note {
    text-align: center;
    margin-top: 14px;
    font-size: .81rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ══ SUCCESS STATE (replaces form) ══ */
.success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 52px 36px;
}

    .success-state.show {
        display: flex;
    }

.success-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    margin-bottom: 26px;
    box-shadow: 0 12px 40px rgba(46,125,50,.30);
    animation: popIn .5s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-state h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 16px;
}

.success-message-box {
    background: linear-gradient(135deg, var(--green-pale), #C8E6C9);
    border: 2px solid #A5D6A7;
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 22px;
    max-width: 420px;
}

    .success-message-box p {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.7;
    }

    .success-message-box .highlight {
        color: var(--green);
        font-family: 'Fredoka One', cursive;
        font-size: 1.1rem;
    }

.whatsapp-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #E8F5E9;
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 26px;
    font-size: .86rem;
    font-weight: 700;
    color: var(--green);
    border: 1.5px solid #A5D6A7;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(21,101,192,.28);
    transition: transform .18s;
}

    .back-btn:hover {
        transform: translateY(-2px);
    }

/* ══ 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: .9rem;
    font-weight: 600;
    opacity: .82;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: .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: .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: .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: .80rem;
    opacity: .58;
    font-weight: 600;
}

.footer-note {
    font-size: .80rem;
    opacity: .58;
    font-weight: 600;
}

    .footer-note a {
        color: #A5D6A7;
        text-decoration: none;
    }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 860px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        order: 2;
    }

    .form-card {
        order: 1;
    }
}

@media (max-width: 600px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .form-body, .form-card-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .success-state {
        padding: 36px 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;
    }
}

 
