/* Sabit Telefon ve WhatsApp Butonları */
.fixed-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.phone-button {
    background: #00a0e3;
    color: white;
}

.phone-button:hover {
    background: #0088c7;
}

.whatsapp-button {
    background: #25D366;
    color: white;
    font-size: 32px;
}

.whatsapp-button:hover {
    background: #128C7E;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .contact-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-button {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .fixed-contact-buttons {
        left: 10px;
        bottom: 10px;
    }
    
    .contact-button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .whatsapp-button {
        font-size: 24px;
    }
}

/* Video Play Button for thumb-3 */
.thumb-3 .shape-wrapped-thumb {
    position: relative;
    display: inline-block;
}

.thumb-3 .shape-wrapped-thumb > a {
    position: relative;
    display: block;
    text-decoration: none;
}

.thumb-3 .shape-wrapped-thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    border-radius: 10px;
    pointer-events: none;
}

.thumb-3 .shape-wrapped-thumb > a:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.video-play-button i {
    font-size: 32px;
    color: #667eea;
    margin-left: 5px;
}

.thumb-3 .shape-wrapped-thumb > a:hover .video-play-button {
    transform: scale(1.15);
    background: white;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.thumb-3 .shape-wrapped-thumb > a:hover .video-play-button i {
    color: #764ba2;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button i {
        font-size: 20px;
    }
}
