/* דף יצירת קשר */
/* שורת טלפון: קידומת מימין (לפני מספר) ב-RTL */
.phone-prefix-row {
    flex-direction: row;
}
[dir="rtl"] .phone-prefix-row {
    flex-direction: row;
}
.contact-card .card-body {
    padding: 1.25rem 1.5rem;
}
.contact-card .btn-icon.rounded-circle {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* קופסת קפצ'ה – יישור בשורה אחת כמו בדף orderproduct */
.contact-captcha-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-captcha-box img {
    height: 48px;
    width: auto;
    vertical-align: middle;
    display: block;
}
.contact-captcha-refresh {
    color: var(--bs-primary);
    cursor: pointer;
    padding: 0.4rem;
    border: none;
    background: none;
    font-size: 1.8rem;
    line-height: 1;
}
.contact-captcha-refresh:hover {
    color: var(--bs-primary);
    opacity: 0.85;
}
.contact-form .form-label {
    font-weight: 500;
}
@keyframes contact-captcha-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.contact-captcha-refresh.animating {
    animation: contact-captcha-spin 0.6s ease-in-out;
}

/* פאנל הצלחה לאחר שליחת פנייה */
.contact-success-panel {
    border: 1px solid rgba(25, 135, 84, 0.2);
    background: linear-gradient(180deg, rgba(25, 135, 84, 0.06) 0%, rgba(25, 135, 84, 0.02) 100%);
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
}
.contact-success-icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 135, 84, 0.12);
}
.contact-success-icon {
    color: #198754;
    font-size: 2rem;
    line-height: 1;
}
.contact-success-ref .badge {
    font-size: 0.95rem;
    font-weight: 600;
}
@media (min-width: 992px) {
    .contact-card {
        min-height: 100%;
    }
}

