*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:    #1C2B3A;
    --slate:   #3D5166;
    --sky:     #D9E8F0;
    --white:   #FFFFFF;
    --coral:   #E8735A;
    --coral-dk:#C75E46;
    --mist:    #EBF3F8;
    --border:  #B8D0DC;
    --text:    #2C3E50;
    --subtle:  #6B8A9E;
    --gold:    #C9A96E;
}

.test {
    font-family: 'Inter', sans-serif;
    background: var(--sky);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;    
}

.page-wrap {
    display: grid;
    grid-template-columns: 1fr 420px;
    max-width: 1060px;
    width: 100%;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(28,43,58,0.12);
}

/* ── LEFT: Form ── */
.form-panel {
    padding: 3rem 3rem 3rem;
    background: var(--white);
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.6rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--subtle);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 1.2rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.15rem;
}

label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--slate);
    margin-bottom: 0.35rem;
}

label .req { color: var(--coral); margin-left: 2px; }

input, select, textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--mist);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

input::placeholder, textarea::placeholder { color: #A5BFCB; }

input:focus, select:focus, textarea:focus {
    border-color: var(--slate);
    box-shadow: 0 0 0 3px rgba(61,81,102,0.1);
    background: var(--white);
}

select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B8A9E' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2rem; }

textarea { resize: vertical; min-height: 90px; }

.hint { font-size: 0.72rem; color: var(--subtle); margin-top: 0.3rem; }

/* Fee summary strip */
.fee-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--mist);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin: 1.2rem 0 1.6rem;
}

.fee-strip .fee-label { font-size: 0.8rem; color: var(--subtle); }
.fee-strip .fee-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
}
.fee-strip .fee-note { font-size: 0.7rem; color: var(--subtle); margin-top: 1px; text-align: right; }

.btn {
    display: block;
    width: 100%;
    padding: 0.95rem;
    background: var(--coral);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0.5rem;
}
.btn:hover { background: var(--coral-dk); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* ── RIGHT: Info panel ── */
.info-panel {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

.info-panel .intro {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.divider {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 1.4rem 0;
}

.contact-block { margin-bottom: 1.3rem; }
.contact-block .c-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.contact-block .c-value {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
}

/* What's included */
.includes-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.include-item .icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(201,169,110,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.include-item .icon svg { width: 13px; height: 13px; }

.include-item .ic-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    padding-top: 4px;
}

@media (max-width: 760px) {
    .page-wrap { grid-template-columns: 1fr; }
    .info-panel { order: -1; padding: 2rem 1.5rem; }
    .form-panel { padding: 2rem 1.5rem; }
    h1 { font-size: 1.9rem; }
    .row { grid-template-columns: 1fr; }
}

select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}