/* Sabit Telefon ve Ring Animasyonu */
.hotline-phone-ring-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.hotline-phone-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 11;
    display: block;
}

/* Dış Dalga Animasyonu */
.hotline-phone-ring-circle {
    width: 85px;
    height: 85px;
    top: 10px;
    left: 10px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #ff8c00; /* Kurumsal Turuncu */
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    opacity: .5;
}

/* İç Dolgu Animasyonu */
.hotline-phone-ring-circle-fill {
    width: 55px;
    height: 55px;
    top: 25px;
    left: 25px;
    position: absolute;
    background-color: rgba(255, 140, 0, 0.4);
    border-radius: 100%;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
}

/* En İçteki Telefon İkonu Alanı */
.hotline-phone-ring-img-circle {
    background-color: #ff8c00;
    width: 35px;
    height: 35px;
    top: 35px;
    left: 35px;
    position: absolute;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
}

.hotline-phone-ring-img-circle .pps-btn-img {
    color: #fff;
    display: flex;
    font-size: 20px;
}

/* Yan Uzanan Numara Barı */
.hotline-bar {
    position: absolute;
    background: rgba(255, 140, 0, 0.85);
    height: 40px;
    width: 180px;
    line-height: 40px;
    border-radius: 50px !important;
    padding: 0 10px;
    cursor: pointer;
    z-index: 9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    left: 45px;
    bottom: 33px;
    transition: all .5s;
}

.hotline-bar > a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-indent: 40px;
    display: block;
    font-family: Arial, sans-serif;
}

/* WhatsApp Butonu (Sağ Alt) */
.wsLink {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 60px;
    height: 60px;
    transition: .3s ease-in-out;
}

.wsLink a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: tada 2s infinite;
}

/* Keyframes - Animasyon Tanımları */
@keyframes phonering-alo-circle-anim {
    0% { transform: scale(0.5); opacity: 0.1; }
    30% { transform: scale(0.7); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.1; }
}

@keyframes phonering-alo-circle-fill-anim {
    0% { transform: scale(0.7); opacity: 0.6; }
    50% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(0.7); opacity: 0.6; }
}

@keyframes phonering-alo-circle-img-anim {
    0% { transform: rotate(0) scale(1); }
    10% { transform: rotate(-25deg) scale(1.1); }
    20% { transform: rotate(25deg) scale(1.1); }
    30% { transform: rotate(-25deg) scale(1.1); }
    40% { transform: rotate(25deg) scale(1.1); }
    50% { transform: rotate(0) scale(1); }
    100% { transform: rotate(0) scale(1); }
}

@keyframes tada {
    0% { transform: scale3d(1, 1, 1); }
    10%, 20% { transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); }
    30%, 50%, 70%, 90% { transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
    40%, 60%, 80% { transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
    100% { transform: scale3d(1, 1, 1); }
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .hotline-bar { display: none; } /* Mobilde sadece ikon kalsın */
    .wsLink { bottom: 10px; right: 10px; width: 50px; height: 50px; }
    .wsLink a { width: 50px; height: 50px; font-size: 30px; }
}