/* --- 1. SABİT BUTONLAR (Mevcut kodların) --- */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 9999;
    pointer-events: none;
}
.float-btn {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    text-decoration: none !important;
}
.float-btn:hover {
    transform: scale(1.1);
}
.phone-btn { background-color: #ff6600; }
.whatsapp-btn { background-color: #25d366; }

/* --- 2. BANNER VE MOBİL AYARLARI (Buraya ekliyoruz) --- */
/* Mobilde banner kaymasını ve yazı boyutunu düzeltir */
@media screen and (max-width: 767px) {
    .tor_banner_wrapper {
        padding: 100px 0 !important; /* Banner dikey boşluğu */
    }
    .tor_banner_text h6 {
        font-size: 16px !important;
        color: #ff6600 !important;
    }
    .tor_banner_text h1 {
        font-size: 24px !important;
        line-height: 30px !important;
    }
}

/* Banner içindeki butonun tasarımı */
.banner-cta {
    margin-top: 20px;
}
.cta-phone-btn {
    background-color: #ff6600 !important;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}