/* ============================================================
   Contact Us page — matched to the ReadySetSold home page design
   ============================================================ */
.contact-page {
    box-sizing: border-box;
    max-width: 1080px;
    margin: 0 auto;
    padding: 72px 22px 90px;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1f1f1f;
}

.contact-page *,
.contact-page *::before,
.contact-page *::after { box-sizing: border-box; }

.contact-head {
    text-align: center;
    margin-bottom: 44px;
}

.contact-head .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 800;
    color: #1f1f1f;
    border-bottom: 1px solid #9ed6d6;
    padding-bottom: 4px;
    margin-bottom: 18px;
}

.contact-head h1 {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: #1f1f1f;
    margin: 0 0 12px;
}

.contact-head p {
    font-size: 16px;
    color: #6b6b6b;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    border: 1px solid #e7e7e7;
}

/* ---- Left charcoal panel ---- */
.contact-aside {
    background: #232425;
    color: #fff;
    padding: 46px 38px;
}

.contact-aside__logo {
    height: 38px;
    width: auto;
    margin-bottom: 28px;
}

.contact-aside h2 {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    font-size: 27px;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: #fff;
}

.contact-aside__intro {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.contact-method {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 26px;
}

.contact-method__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(158, 214, 214, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method__icon svg { width: 18px; height: 18px; }

.contact-method__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #9ed6d6;
    margin-bottom: 3px;
}

.contact-method__value,
.contact-method a {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.contact-method a:hover { color: #9ed6d6; }

/* ---- Right form card ---- */
.contact-form-card {
    background: #fff;
    padding: 46px 40px;
}

.contact-form-card__title {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    font-size: 27px;
    letter-spacing: -0.02em;
    color: #1f1f1f;
    margin: 0 0 6px;
}

.contact-form-card__sub {
    font-size: 14.5px;
    color: #6b6b6b;
    margin: 0 0 24px;
}

.contact-field { margin-bottom: 18px; }

.contact-field label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    color: #1f1f1f;
    background: #fff;
    transition: border-color 0.15s ease;
}

.contact-form-card .form-control:focus {
    outline: none;
    border-color: #1f1f1f;
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-card .form-control.is-invalid { border-color: #dc3545; }

.contact-form-card .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 12.5px;
    margin-top: 5px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    background: #9ed6d6;
    color: #1b1b1b;
    border: 0;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 760px) {
    .contact-page { padding: 44px 16px 60px; }
    .contact-head h1 { font-size: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-aside,
    .contact-form-card { padding: 32px 24px; }
}
