/* Sticky İletişim Butonu */
.sticky-contact-btn {
    position: fixed;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 8px 0 0 8px;
    box-shadow: -3px 3px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: right 0.4s ease, box-shadow 0.3s ease;
    z-index: 9999;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-contact-btn:hover {
    right: 0;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.5);
}

.sticky-contact-btn.show {
    right: 0;
}

.sticky-contact-btn i {
    margin-bottom: 10px;
    font-size: 20px;
    display: block;
}

/* Mobil için özel stiller */
@media (max-width: 768px) {
    .sticky-contact-btn {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        writing-mode: vertical-rl;
        text-orientation: mixed;
        border-radius: 8px 0 0 8px;
        padding: 10px 12px;
        min-height: 140px;
        font-size: 13px;
        letter-spacing: 0.5px;
        box-shadow: -3px 3px 15px rgba(0, 0, 0, 0.4);
        animation: pulse 2s infinite;
    }

    .sticky-contact-btn i {
        display: block;
        margin-bottom: 8px;
        margin-right: 0;
        font-size: 18px;
    }

    .sticky-contact-btn:hover {
        transform: translateY(-50%);
    }
}

/* Pulse animasyonu mobil için */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
}

/* Tablet için */
@media (min-width: 769px) and (max-width: 1024px) {
    .sticky-contact-btn {
        right: -220px;
        font-size: 14px;
        min-height: 150px;
        padding: 12px 15px;
    }

    .sticky-contact-btn:hover {
        right: 0;
    }
}

/* Smooth scroll için */
html {
    scroll-behavior: smooth;
}
