﻿
*,
*::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --navy: #0A1628;
    --navy-mid: #112240;
    --navy-light: #1B3358;
    --gold: #C9A84C;
    --gold-light: #E8C876;
    --gold-dim: rgba(201,168,76,0.15);
    --cream: #F5F0E8;
    --cream-light: #FAF8F4;
    --white: #FFFFFF;
    --text-muted: #8899AA;
    --border-light: #e8e3d8;
    --fd: 'Syne',sans-serif;
    --fb: 'Neue Haas Grotesk Display Pro','NeueHaasGrotesk','Inter', -apple-system,sans-serif,sans-serif
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: var(--fb);
    /*background: var(--cream-light);*/
    color: var(--navy);
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%
}

.sec-pad {
    padding: 6.5rem 0
}


/* Form area */
.client-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

@media(max-width:1000px) {
    .client-form-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.client-form-info h3 {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.client-form-info > p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4a5568;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cl-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .cl-checklist li {
        display: flex;
        gap: 0.85rem;
        align-items: flex-start;
        font-size: 0.95rem;
        line-height: 1.55;
        color: #4a5568;
    }

    .cl-checklist .cl-check {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(201,168,76,0.15);
        border: 1px solid rgba(201,168,76,0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1px;
    }

        .cl-checklist .cl-check svg {
            width: 12px;
            height: 12px;
        }

    .cl-checklist strong {
        color: var(--navy);
        font-weight: 600;
    }

.client-form-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 12px 36px rgba(10,22,40,0.05);
}

    .client-form-card h3 {
        font-family: var(--fd);
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 0.4rem;
    }

    .client-form-card .sub {
        margin-bottom: 1.5rem;
        font-size: 0.92rem;
    }

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media(max-width:600px) {
    .cf-row {
        grid-template-columns: 1fr;
    }
}

.cf-group {
    margin-bottom: 1.1rem;
}

    .cf-group label {
        display: block;
        font-family: var(--fd);
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 0.45rem;
    }

    .cf-group input, .cf-group select, .cf-group textarea {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid var(--border-light);
        border-radius: 10px;
        font-family: var(--fb);
        font-size: 0.95rem;
        color: var(--navy);
        background: #fff;
        transition: all .2s;
    }

        .cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
        }

    .cf-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .cf-group .cf-helper {
        font-size: 0.78rem;
        color: #94a3b8;
        margin-top: 0.4rem;
        font-style: italic;
    }

.cf-submit {
    background: var(--navy);
    color: #fff;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.95rem 1.75rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .cf-submit:hover {
        background: var(--gold);
        color: var(--navy);
        transform: translateY(-2px);
    }

