/* PeptideCO contact page */

.contact-hero {
    background: linear-gradient(160deg, #0a1f3d 0%, #0f2849 50%, #1a3a6b 100%);
    padding: 64px 0 56px;
    text-align: center;
}

.contact-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #60b0f8;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
}

.contact-hero p {
    color: #94b8d8;
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}

@media (max-width: 600px) {
    .contact-card {
        padding: 28px 20px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }
}

.contact-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    display: block;
}

.contact-label span {
    color: #ef4444;
    margin-left: 2px;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #94a3b8;
}

.contact-select-wrap {
    position: relative;
}

.contact-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-top-color: #64748b;
    pointer-events: none;
}

.contact-select {
    padding-right: 38px;
    cursor: pointer;
}

.contact-textarea {
    resize: vertical;
    min-height: 180px;
    font-family: inherit;
    line-height: 1.6;
}

.field-counter {
    font-size: 11px;
    color: #94a3b8;
    text-align: right;
    margin-top: 4px;
    transition: color 0.2s;
}

.field-counter.warn {
    color: #f59e0b;
    font-weight: 600;
}

.field-counter.limit {
    color: #ef4444;
    font-weight: 700;
}

.btn-send {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: background 0.15s, transform 0.1s;
    margin-top: 4px;
}

.btn-send:hover {
    background: #1d4ed8;
}

.btn-send:active {
    transform: scale(0.98);
}

.btn-send:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.form-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 28px 0;
}

.contact-info-strip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 28px;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    margin-bottom: 12px;
}

.contact-info-row:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563eb;
    font-size: 17px;
}

.contact-info-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
}

.contact-info-value {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.contact-info-value a {
    color: #2563eb;
    text-decoration: none;
}

.contact-info-value a:hover {
    text-decoration: underline;
}

.contact-alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.contact-alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.contact-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-alert i {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-disclaimer {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2563eb;
    text-transform: uppercase;
    margin-bottom: 6px;
}
