/* Silavoca Contact Form — contact-form.css */

.svc-page-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.svc-badge {
    display: inline-block;
    font-size: 11px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    padding: 2px 12px;
    color: #6b7280;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.svc-title {
    font-size: 2rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

/* ─── Main wrapper ─────────────────────────────────────────── */
.svc-wrap {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    max-width: 960px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ─── Left panel ───────────────────────────────────────────── */
.svc-left {
    background: #f9fafb;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #e5e7eb;
}

.svc-avatar-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #EEEDFE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.svc-left-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px;
}

.svc-left-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 1.5rem;
}

.svc-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}

.svc-info-row svg {
    flex-shrink: 0;
}

.svc-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: color 0.15s;
}

.svc-learn-more:hover {
    color: #111827;
    text-decoration: none;
}

/* ─── Right panel ──────────────────────────────────────────── */
.svc-right {
    padding: 2rem 1.75rem;
    background: #ffffff;
}

/* ─── Form fields ──────────────────────────────────────────── */
.svc-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.svc-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}

.svc-field label {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

.svc-req {
    color: #D85A30;
}

.svc-field input[type="text"],
.svc-field input[type="email"],
.svc-field input[type="tel"],
.svc-field select,
.svc-field textarea {
    font-size: 14px;
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #ffffff;
    color: #111827;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
    resize: none;
    -webkit-appearance: none;
    appearance: none;
}

.svc-field input:focus,
.svc-field select:focus,
.svc-field textarea:focus {
    outline: none;
    border-color: #7F77DD;
    box-shadow: 0 0 0 3px rgba(127, 119, 221, 0.15);
}

.svc-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.svc-field textarea {
    line-height: 1.6;
}

/* ─── Checkbox ─────────────────────────────────────────────── */
.svc-checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.svc-checkbox-row input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #534AB7;
    flex-shrink: 0;
    cursor: pointer;
}

.svc-checkbox-row label {
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
}

.svc-checkbox-row label a {
    color: #534AB7;
    text-decoration: none;
}

.svc-checkbox-row label a:hover {
    text-decoration: underline;
}

/* ─── Submit button ────────────────────────────────────────── */
.svc-btn-send {
    width: 100%;
    padding: 11px;
    background: #3C3489;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, transform 0.1s;
}

.svc-btn-send:hover {
    background: #534AB7;
}

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

.svc-btn-send:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ─── Error / Success ──────────────────────────────────────── */
.svc-form-notice {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 14px;
    background: #FEF2F2;
    color: #B91C1C;
    border: 1px solid #FECACA;
}

.svc-success-inner {
    text-align: center;
    padding: 3rem 1rem;
}

.svc-success-inner svg {
    display: block;
    margin: 0 auto 1rem;
}

.svc-success-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px;
}

.svc-success-sub {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 700px) {
    .svc-wrap {
        grid-template-columns: 1fr;
    }
    .svc-left {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    .svc-row-2 {
        grid-template-columns: 1fr;
    }
    .svc-title {
        font-size: 1.5rem;
    }
}
