/* ====== Contact page ====== */
.ct-section {
    padding: calc(var(--nav-height) + 54px) 0 84px;
    background: var(--dark-band);
}

.ct-section .be-eyebrow {
    color: var(--accent-light);
}

.ct-section .be-title {
    color: #fff;
}

.ct-section .be-lead {
    color: rgba(255, 255, 255, 0.9);
}

.ct-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 56px;
    align-items: start;
}

/* ---- info column ---- */
.ct-contacts {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ct-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.ct-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(44, 127, 184, 0.1);
    border: 1px solid rgba(44, 127, 184, 0.28);
    color: var(--accent);
    transition: background 0.2s ease, color 0.2s ease;
}

.ct-contact-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.9;
}

.ct-contact:hover .ct-contact-icon {
    background: var(--accent);
    color: #fff;
}

.ct-contact-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ct-contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.ct-contact-value {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ct-contact:hover .ct-contact-value {
    color: var(--accent-light);
}

.ct-note {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    max-width: 40ch;
}

/* ---- form card ---- */
.ct-form {
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: 20px;
    padding: 32px 30px;
    box-shadow: var(--card-shadow);
}

.ct-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-field.full {
    grid-column: 1 / -1;
}

.ct-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    border: 1px solid var(--divider);
    border-radius: 11px;
    background: var(--bg);
    color: var(--text);
    padding: 12px 14px;
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ct-field textarea {
    min-height: 140px;
    resize: vertical;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
    color: var(--muted);
    opacity: 0.7;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(44, 127, 184, 0.14);
}

.ct-submit {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    border: 0;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ct-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.ct-submit:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}

/* spam honeypot — hidden from real users */
.ct-hp {
    display: none !important;
}

/* submit result message */
.ct-result {
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.ct-result:empty {
    margin: 0;
}

.ct-result.is-success {
    color: #1f9d6b;
}

.ct-result.is-error {
    color: #c0392b;
}

.ct-submit i,
.ct-submit svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
    transition: transform 0.2s ease;
}

.ct-submit:hover i,
.ct-submit:hover svg {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .ct-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ct-form-grid {
        grid-template-columns: 1fr;
    }
}
