/* Sabit Telefon ve WhatsApp Butonları */
.fixed-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-btn i {
    font-size: 28px;
    color: white;
}

.phone-btn {
    background-color: #295064;
}

.phone-btn:hover {
    background-color: #1557b0;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.4);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .fixed-contact-buttons {
        left: 15px;
        bottom: 15px;
        gap: 12px;
    }

    .contact-btn {
        width: 50px;
        height: 50px;
    }

    .contact-btn i {
        font-size: 24px;
    }
}

/* Footer yazılarını mobilde sola yaslama */
@media (max-width: 576px) {

    footer .text-center,
    footer .text-sm-start {
        text-align: left !important;
    }

    footer .justify-content-center,
    footer .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    footer .d-flex.justify-content-center {
        justify-content: flex-start !important;
    }

    footer .widget h5 {
        text-align: left !important;
    }

    .subfooter .de-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .subfooter .menu-simple {
        margin-top: 10px;
    }
}