/* ==========================================
   כפתורי יצירת קשר מקצועיים - מה יש פה? 2025
   עיצוב נקי ומודרני לאתר גיוס
   ========================================== */

/* ---------- קונטיינר כפתורים ---------- */
.contact-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    z-index: 15;
}

/* ---------- עיצוב בסיס - נקי ומקצועי ---------- */
.contact-button {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%; /* עיגול מלא - נקי יותר */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    border: none;
    cursor: pointer;
}

/* ---------- כפתור ווצאפ - ירוק קלאסי ---------- */
.whatsapp-button {
    background: #25D366;
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:active {
    transform: translateY(-1px);
}

/* ---------- כפתור שיתוף - כחול מקצועי ---------- */
.share-button {
    background: #0066FF !important; /* כחול אלגנטי */
}

.share-button:hover {
    background: #0052cc !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.3);
}

.share-button:active {
    transform: translateY(-1px);
}

/* ---------- כפתור SMS - סגול/כחול (רק מובייל) ---------- */
.sms-button {
    background: #7C3AED;
    display: none !important; /* מוסתר בדסקטופ */
}

.sms-button:hover {
    background: #6d28d9;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}

.sms-button:active {
    transform: translateY(-1px);
}

/* ---------- אייקונים ---------- */
.contact-button i {
    position: relative;
    z-index: 2;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.contact-button:hover i {
    transform: scale(1.05);
}

/* ---------- מיקוד נגיש ---------- */
.contact-button:focus-visible {
    outline: 3px solid rgba(0, 102, 255, 0.5);
    outline-offset: 2px;
}

/* ========================================
   כפתורים במודל המשרה
   ======================================== */

.contact-method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    position: relative;
}

/* כפתור ווצאפ במודל */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* כפתור SMS במודל - מוסתר בדסקטופ */
.sms-btn {
    background: #7C3AED;
    display: none !important;
}

.sms-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}

.contact-method-btn i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.contact-method-btn:hover i {
    transform: scale(1.05);
}

/* ========================================
   התאמות טאבלט
   ======================================== */
@media (max-width: 1024px) {
    .contact-button {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }
    
    .contact-button i {
        font-size: 19px;
    }
}

/* ========================================
   התאמות מובייל - כאן מופיע ה-SMS
   ======================================== */
@media (max-width: 768px) {
    /* במובייל - מציגים גם SMS */
    .sms-button {
        display: flex !important;
    }
    
    .sms-btn {
        display: flex !important;
    }
    
    /* גודל כפתורים */
    .contact-button {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .contact-button i {
        font-size: 18px;
    }
    
    .contact-buttons {
        gap: 10px;
    }
    
    .contact-method-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .contact-method-btn i {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .contact-button {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    
    .contact-button i {
        font-size: 17px;
    }
    
    .contact-buttons {
        gap: 8px;
    }
}

/* ========================================
   כבוד להעדפות נגישות
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .contact-button,
    .contact-method-btn {
        transition: none;
    }
    
    .contact-button:hover,
    .contact-method-btn:hover {
        transform: none;
    }
}
