.fixed-icons {
    position: fixed;
    bottom: 150px;
    right: 20px;
    z-index: 999999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* İkon stilleri */
.fixed-icons .icon {
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s; /* Hover efekti için animasyon */
}

.fixed-icons .icon:hover {
    transform: scale(1.2);
}

.fixed-icons .phone-icon {
    color: #ff0000;
}

.fixed-icons .whatsapp-icon {
    color: #25D366;
}

/* Sadece mobil cihazlarda göster */
.fixed-icons {
    display: none; /* Varsayılan olarak gizli */
}

@media (max-width: 576px) {
    .fixed-icons {
        display: flex; /* Mobil cihazlarda göster */
    }
}
/* Logo ve metin için stiller */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap; /* Logo ve metin yan yana kalsın */
}

.logo {
    border-radius: 50%;
    width: 150px; /* Masaüstü için varsayılan boyut */
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px; /* Metin ile logo arası boşluk */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    white-space: nowrap; /* Metin tek satırda kalsın */
}

/* İkonlar için stiller */
.contactList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contactList li {
    margin-left: 15px;
}

.ico {
    font-size: 1.5rem;
    color: #000;
}

.ico a {
    color: #000;
    text-decoration: none;
}

.ico a:hover {
    color: #d32f2f; /* Hover efekti */
}

.wrap .text {
    font-size: 0.9rem;
    color: #666;
}

.wrap .tell {
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.wrap .tell:hover {
    color: #d32f2f;
}

/* Responsive ayarlar */
@media (max-width: 576px) {
    .logo {
        width: 100px; /* Mobil için küçük logo */
        height: 100px;
        margin-right: 10px;
    }

    .logo-text {
        font-size: 1.2rem; /* Mobil için küçük yazı */
    }

    .contactList {
        justify-content: center; /* Mobil için ortala */
        margin-top: 10px;
    }

    .contactList li {
        margin: 5px 10px;
    }

    /* Mobil için sadece ikonlar görünsün */
    .wrap, .timeList {
        display: none !important;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .logo {
        width: 120px; /* Tablet için ara boyut */
        height: 120px;
    }

    .logo-text {
        font-size: 1.3rem;
        z-index: 99999;
        color: white;
    }
}