/* ================================================
   ESSE TAŞIMACILIK - LEGACY CSS COMPAT
   Diğer sayfalarda tema uyumluluğu için korunuyor
   ================================================ */

/* Mobil Sabit Arama Butonu (eski sayfalar için) */
.floating-call-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #ffffff !important;
    text-align: center;
    padding: 14px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.floating-call-btn i {
    font-size: 20px;
    animation: phone-wiggle 1.5s infinite ease-in-out;
}

.floating-call-btn:hover,
.floating-call-btn:focus {
    background: linear-gradient(135deg, #a93226, #c0392b);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(192, 57, 43, 0.6);
    text-decoration: none;
}

/* Pulse Buton */
.pulse-call-number {
    display: inline-block;
    position: relative;
    color: #c0392b !important;
    animation: text-pulse 2s infinite ease-in-out;
}

.pulse-call-button {
    background: #c0392b !important;
    border-color: #c0392b !important;
    color: #fff !important;
    animation: button-pulse-glow 2s infinite ease-in-out;
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7);
}

/* Animasyonlar */
@keyframes phone-wiggle {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

@keyframes text-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); color: #e74c3c !important; }
    100% { transform: scale(1); }
}

@keyframes button-pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(192, 57, 43, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

/* Mobil */
@media (max-width: 767px) {
    .intro_section > img,
    .intro_section .slides > li > img {
        opacity: 1;
    }

    .floating-call-btn {
        display: flex;
    }

    body {
        padding-bottom: 80px !important;
    }

    .intro_section .slide_description {
        background: #ffffff !important;
        color: #333333 !important;
        padding: 30px 10px 25px !important;
        border-bottom: 1px solid #eeeeee;
    }

    .intro_section .slide_description .big {
        color: #222222 !important;
        font-size: 24px !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
        margin-bottom: 15px !important;
    }

    .intro_section .slide_description .big strong.highlight {
        color: #c0392b !important;
        font-weight: 900 !important;
        display: inline-block;
        margin-top: 5px;
    }

    .intro_section .slide_description .lightfont {
        color: #555555 !important;
        font-size: 18px !important;
        line-height: 1.5 !important;
        margin-top: 15px !important;
        margin-bottom: 5px !important;
        font-weight: 500;
    }
}