/* דף צור קשר — עיצוב מודרני */

.contact-page {
    --contact-radius: 16px;
    --contact-border: rgba(219, 172, 182, 0.45);
    --contact-text: #33292b;
    --contact-muted: #6f5a5e;
    padding-top: 28px;
    padding-bottom: 56px;
}

.contact-breadcrumb {
    margin-bottom: 20px;
}

.contact-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    color: var(--contact-muted);
}

.contact-breadcrumb__list a {
    color: var(--contact-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-breadcrumb__list a:hover {
    color: var(--ff-primary, #a85d6b);
}

.contact-breadcrumb__sep {
    opacity: 0.5;
}

.contact-breadcrumb__current {
    color: var(--contact-text);
    font-weight: 600;
}

.contact-shell {
    background: #fff;
    border: 1px solid var(--contact-border);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(47, 38, 40, 0.08);
    padding: 28px;
    overflow: hidden;
}

.contact-intro {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 8px 8px 4px;
    position: relative;
}

.contact-intro__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ff-primary, #a85d6b);
}

.contact-intro__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--contact-text);
    margin: 0;
    line-height: 1.2;
}

.contact-intro__subtitle {
    font-size: 15px;
    line-height: 1.65;
    color: var(--contact-muted);
    margin: 0;
    max-width: 38ch;
}

.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.contact-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-quick-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.contact-quick-btn--phone {
    background: var(--ff-primary, #a85d6b);
    color: #fff;
    box-shadow: 0 8px 20px rgba(168, 93, 107, 0.28);
}

.contact-quick-btn--phone:hover {
    color: #fff;
}

.contact-quick-btn--wa {
    background: #e8f7ee;
    color: #1a7a42;
    border: 1px solid #b8e6c8;
}

.contact-quick-btn--wa:hover {
    color: #146b38;
}

.contact-info-list {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--ff-primary-light, #fff5f7);
    color: var(--ff-primary, #a85d6b);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--contact-text);
    margin-bottom: 2px;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 14px;
    color: #4f4043;
    line-height: 1.5;
}

.contact-info-item a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-item a:hover {
    color: var(--ff-primary, #a85d6b);
}

.contact-intro__visual {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

.contact-intro__visual i {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 40px;
    color: #fff;
    background: linear-gradient(145deg, var(--ff-primary, #a85d6b) 0%, #c97a88 100%);
    box-shadow: 0 16px 40px rgba(168, 93, 107, 0.3);
}

.contact-card {
    background: linear-gradient(160deg, #fff 0%, #fffafb 100%);
    border: 1px solid var(--contact-border);
    border-radius: var(--contact-radius);
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card__head {
    margin-bottom: 22px;
}

.contact-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--contact-text);
    margin: 0 0 6px;
}

.contact-card__subtitle {
    font-size: 14px;
    color: var(--contact-muted);
}

.contact-form {
    flex: 1;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: #4f4043;
    margin: 0;
}

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

.contact-input-icon {
    position: absolute;
    top: 50%;
    inset-inline-start: 14px;
    transform: translateY(-50%);
    color: #9a8488;
    font-size: 16px;
    pointer-events: none;
}

.contact-input,
.contact-textarea {
    width: 100%;
    border: 1px solid #e8d4da;
    border-radius: 12px;
    background: #fff;
    color: var(--contact-text);
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input {
    min-height: 48px;
    padding: 10px 14px 10px 42px;
}

[dir="rtl"] .contact-input {
    padding: 10px 42px 10px 14px;
}

.contact-textarea {
    padding: 14px 16px;
    resize: vertical;
    min-height: 130px;
    line-height: 1.55;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--ff-primary, #a85d6b);
    box-shadow: 0 0 0 3px rgba(168, 93, 107, 0.15);
}

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

.contact-submit {
    min-height: 50px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 4px;
}

.contact-card__note {
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px solid #f1dde2;
    font-size: 13px;
    color: var(--contact-muted);
    line-height: 1.6;
}

.contact-card__note a {
    color: var(--ff-primary, #a85d6b);
    font-weight: 600;
    text-decoration: none;
}

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

.contact-card__footer {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.contact-card__footer a {
    color: var(--ff-primary, #a85d6b);
    font-weight: 600;
    text-decoration: none;
}

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

.contact-card__footer span {
    color: #d4b8c0;
}

@media (max-width: 991.98px) {
    .contact-shell {
        padding: 20px 16px;
    }

    .contact-intro {
        text-align: center;
        align-items: center;
    }

    .contact-intro__subtitle {
        max-width: none;
    }

    .contact-quick-actions {
        justify-content: center;
    }

    .contact-info-list {
        text-align: start;
        width: 100%;
        max-width: 360px;
    }

    .contact-intro__visual {
        display: none;
    }

    .contact-card {
        padding: 22px 18px;
    }
}

@media (max-width: 575.98px) {
    .contact-page {
        padding-top: 16px;
    }

    .contact-card__title {
        font-size: 20px;
    }

    .contact-quick-btn {
        flex: 1 1 calc(50% - 5px);
        justify-content: center;
    }
}
