/* Footer İletişim Bilgileri Stilleri */
.footer-contact-item {
    margin: 8px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
}

.footer-contact-item i {
    margin-right: 10px;
    width: 20px;
    color: #00d4aa;
    font-size: 16px;
    text-align: center;
}

.footer-contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #00d4aa;
    text-decoration: none;
}

.footer-contact-item span {
    color: #ffffff;
}

/* WhatsApp özel stili */
.footer-contact-item .fa-whatsapp {
    color: #25D366;
}

.footer-contact-item a:hover .fa-whatsapp {
    color: #128C7E;
}

/* LinkedIn özel stili */
.footer-contact-item .fa-linkedin-in {
    color: #0077B5;
}

.footer-contact-item a:hover .fa-linkedin-in {
    color: #005582;
}

/* Fax stili */
.footer-contact-item .fa-fax {
    color: #6c757d;
}

/* Sabit Sosyal Medya Butonları */
.fixed-social-buttons {
    position: fixed;
    left: 10px;
    bottom: 5px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fixed-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.fixed-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    text-decoration: none;
}

/* Arama butonu */
.fixed-btn.search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fixed-btn.search-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Telefon butonu */
.fixed-btn.phone-btn {
    background: #25D366 !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.fixed-btn.phone-btn:hover {
    background: #1ea952 !important;
    background: linear-gradient(135deg, #1ea952 0%, #0f6b5e 100%) !important;
    color: #ffffff !important;
}

.fixed-btn.phone-btn i {
    color: #ffffff !important;
}

/* Instagram butonu */
.fixed-btn.instagram-btn {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.fixed-btn.instagram-btn:hover {
    background: linear-gradient(135deg, #7329a3 0%, #e91a1a 50%, #e3a03e 100%);
}

/* LinkedIn butonu */
.fixed-btn.linkedin-btn {
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
}

.fixed-btn.linkedin-btn:hover {
    background: linear-gradient(135deg, #006ba3 0%, #004470 100%);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .fixed-social-buttons {
        left: 15px;
        bottom: 15px;
    }
    
    .fixed-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
