/* CSS מינימלי לדף יצירת קשר */

.contact-page-container {
    max-width: 800px;
    margin: 60px auto;
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.contact-content {
    margin-top: 30px;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

    .contact-option:hover {
        background-color: var(--hover-color);
    }

.contact-icon {
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.contact-option:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details {
    flex: 1;
}

    .contact-details h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--text-color);
    }

    .contact-details p {
        margin-bottom: 12px;
        color: var(--text-color);
        opacity: 0.8;
    }

.phone-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

    .phone-link:hover {
        color: var(--accent-color);
    }

.contact-note {
    background-color: var(--hover-color);
    padding: 15px;
    text-align: center;
    color: var(--text-color);
    border-radius: 8px;
    margin-top: 15px;
    position: relative;
}

    .contact-note p {
        margin: 0;
        line-height: 1.5;
        display: inline-block;
        vertical-align: middle;
    }


.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}

    .pulse-dot:before,
    .pulse-dot:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--secondary-color);
        border-radius: 50%;
        z-index: -1;
        opacity: 0.7;
    }

    .pulse-dot:before {
        animation: pulse 2s infinite;
    }

    .pulse-dot:after {
        animation: pulse 2s 0.5s infinite;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* תאימות למובייל */
@media screen and (max-width: 576px) {
    .contact-option {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto 15px;
    }
}
