/* Contact / audit intake form — Swasthe brand layout */
.contact-us-component {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
}

.contact-us-title {
    margin: 0 0 32px;
    font-size: 24px;
    line-height: 1.25;
    color: #0a1d37;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-us-subtitle {
    margin: -20px 0 24px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.contact-us-alert-wrap {
    margin-bottom: 16px;
}

.contact-us-alert {
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-us-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.contact-us-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact-us-alert-error ul {
    margin: 0;
    padding-left: 18px;
}

.contact-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-us-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-us-field-full {
    grid-column: 1 / -1;
}

.contact-us-label {
    font-size: 14px;
    font-weight: 700;
    color: #0a1d37;
    margin-bottom: 8px;
    display: block;
}

.contact-us-input,
.contact-us-select,
.contact-us-textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    color: #334155;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-us-input::placeholder,
.contact-us-textarea::placeholder {
    color: #9ca3af;
}

.contact-us-input:focus,
.contact-us-select:focus,
.contact-us-textarea:focus {
    border-color: #b9860b;
    box-shadow: 0 0 0 1px #b9860b;
}

.contact-us-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-us-select-wrap {
    position: relative;
}

.contact-us-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.contact-us-select-chevron {
    pointer-events: none;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    line-height: 0;
}

.contact-us-select-chevron svg {
    width: 16px;
    height: 16px;
    display: block;
}

.contact-us-input-date {
    color: #334155;
}

.contact-us-check-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-top: 4px;
}

.contact-us-check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #374151;
}

.contact-us-submit-wrap {
    grid-column: 1 / -1;
    margin-top: 4px;
}

.contact-us-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: 0;
    border-radius: 6px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #b9860b;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background 0.2s, transform 0.15s;
}

.contact-us-submit:hover {
    background: #9a7209;
}

.contact-us-submit:active {
    transform: translateY(1px);
}

.contact-us-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-us-submit-chevron {
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
}

.contact-us-submit.is-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-us-btn-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: contact-us-spin 0.8s linear infinite;
}

@keyframes contact-us-spin {
    to { transform: rotate(360deg); }
}

.contact-us-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

.contact-us-security svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #94a3b8;
}

@media (max-width: 767px) {
    .contact-us-component {
        padding: 24px 20px;
    }

    .contact-us-title {
        margin-bottom: 24px;
        font-size: 22px;
    }
}
