 /* Hızlı Erişim Menüsü Stilleri */
 .quick-access {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.quick-access-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e55100 0%, #f5c0ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-access-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.quick-access-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-access-button:hover::before {
    opacity: 1;
}

.menu-icon {
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.quick-access.active .menu-icon {
    transform: rotate(45deg);
}

.quick-access-menu {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
    overflow: hidden;
}

/* Desktop hover efekti */
@media (hover: hover) and (pointer: fine) {
    .quick-access:hover .quick-access-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }
}

/* Mobil ve desktop için aktif state */
.quick-access.active .quick-access-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.menu-header {
    background: linear-gradient(135deg, #e55100 0%, #f5c0ac 100%);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.menu-items {
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: linear-gradient(135deg, #e55100 0%, #f5c0ac 100%);
    color: white;
    transform: translateX(5px);
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #e55100 0%, #f5c0ac 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.menu-item:hover::before {
    transform: scaleY(1);
}

.menu-item-icon {
    margin-right: 12px;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.menu-item-text {
    font-weight: 500;
    font-size: 14px;
}

.menu-item-subtitle {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 2px;
}

.phone-number {
    font-weight: 600;
    color: #e55100;
    margin-top: 4px;
}

.menu-item:hover .phone-number {
    color: white;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .quick-access {
        right: 15px;
    }
    
    .quick-access-button {
        width: 56px;
        height: 56px;
        /* Mobilde daha büyük tıklama alanı */
    }
    
    .menu-icon {
        font-size: 22px;
    }
    
    .quick-access-menu {
        right: 65px;
        min-width: 260px;
    }
}

/* Touch cihazlar için iyileştirmeler */
@media (pointer: coarse) {
    .quick-access-button {
        width: 60px;
        height: 60px;
        /* Touch cihazlarda daha büyük buton */
    }
    
    .menu-item {
        padding: 18px 20px;
        /* Touch için daha büyük tıklama alanı */
        min-height: 54px;
    }
    
    .menu-item-text {
        font-size: 15px;
        /* Touch cihazlarda daha büyük yazı */
    }
}

/* Mobil dokunmatik feedback */
.quick-access-button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.menu-item:active {
    background: linear-gradient(135deg, #e55100 0%, #f5c0ac 100%);
    color: white;
}

/* Animasyon efektleri */
.menu-item {
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

/* Desktop hover animasyonları */
@media (hover: hover) and (pointer: fine) {
    .quick-access:hover .menu-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .quick-access:hover .menu-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .quick-access:hover .menu-item:nth-child(3) {
        animation-delay: 0.3s;
    }
}

/* Aktif state animasyonları (mobil ve desktop) */
.quick-access.active .menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.quick-access.active .menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.quick-access.active .menu-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}