﻿


.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 90%;
    z-index: 1050;
}

.footer-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px; /* İki sütun arası boşluk */
}

.linkBol {
    display: flex;
    flex-wrap: wrap;
}

    .linkbol li {
        width: 50%;
        margin-bottom: 10px;
    }


.phone-button {
    position: fixed;
    bottom: 20px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .phone-button:hover {
        display: flex !important; /* flex olarak kal, inline-block olma */
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }

    .phone-button img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

.whatsapp-button {
    position: fixed;
    bottom: 80px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .whatsapp-button:hover {
        display: flex !important; /* flex olarak kal, inline-block olma */
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-button img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

/* Desktop'ta gizli */
.mobile-contact-bar {
    display: none;
}

/* Mobil için büyük boyut */
@media (max-width: 767px) {
    /* Desktop'ta gizli */
    .Desktop-contact-bar {
        display: none;
    }
    body {
        padding-bottom: 70px; /* Alt butonlar için yer */
    }

    .mobile-contact-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 -3px 20px rgba(0,0,0,0.15);
    }

    .contact-button {
          flex: 1;
        padding: 15px 10px;
        text-decoration: none;
        color: white;
        font-weight: 600;
        display: flex !important;
        flex-direction: row; /* Yan yana */
        align-items: center;
        justify-content: center;
        gap: 8px; /* İkon-yazı arası */
        transition: all 0.3s ease;
    }

    .phone-btn {
        background: linear-gradient(45deg, #007bff, #0056b3);
    }

    .whatsapp-btn {
        background: linear-gradient(45deg, #25d366, #128c7e);
    }

    .contact-button svg {
        width: 24px;
        height: 24px;
        fill: white; 
        flex-shrink: 0;
    }

    .contact-button .text {
        font-size: 12px;
        font-weight: 500;		
        white-space: nowrap; /* Alt satıra geçmesin */
    }



    .phone-button {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 20px;
    }

        .phone-button img {
            width: 30px;
            height: 30px;
        }

        .phone-button:hover {
            transform: none; /* Mobilde hover efekti yok */
        }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        bottom: 30px;
        left: 20px;
    }

        .whatsapp-button img {
            width: 30px;
            height: 30px;
        }

        .whatsapp-button:hover {
            transform: none; /* Mobilde hover efekti yok */
        }
}

/* Küçük ekranlar */
@media (max-width: 380px) {
    .contact-button {
        padding: 12px 5px;
        gap: 5px;
    }
    
    .contact-button svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-button .text {
        font-size: 11px;
    }
}