/* === Slim Sticky Contact Bar === */
.contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 12, 63, 0.85); /* Şeffaf koyu mavi */
    backdrop-filter: blur(8px);
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
}

.contact-btn {
    flex: 1;
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
    margin: 0 5px;
}

.contact-btn.whatsapp {
    background: #25D366;
}

.contact-btn.call {
    background: #e64336;
}

.icon {
    width: 18px;
    height: 18px;
}

/* Tüm ekranlarda yan yana göster */
@media (max-width: 600px) {
    .contact-bar {
        padding: 8px 10px;
    }

    .contact-btn {
        font-size: 13.5px;
        padding: 9px;
        margin: 0 4px;
    }

    .icon {
        width: 17px;
        height: 17px;
    }
}
/* === Home Page Single Call Bar === */
.home-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 12, 63, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px;
    text-align: center;
    z-index: 999999;
}

.home-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1f2a55; /* kırmızı yok */
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.home-call-btn:hover {
    background: #26346a;
}

