/* Sample placeholder images for transformations */
.placeholder-before {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.placeholder-after {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4f4dd 100%);
    color: #2d5a41;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.placeholder-testimonial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

/* Enhanced transformation gallery styles */
.transformation-card {
    transition: all 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.before-after-container {
    position: relative;
    overflow: hidden;
}

.before-image, .after-image {
    transition: transform 0.3s ease;
}

.before-after-container:hover .before-image,
.before-after-container:hover .after-image {
    transform: scale(1.1);
}

/* Zoom cursor styles */
.cursor-zoom-in {
    cursor: zoom-in;
}

.cursor-zoom-out {
    cursor: zoom-out;
}

/* Video testimonials enhanced styles */
.video-testimonial-card {
    transition: all 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(200, 168, 130, 0.2);
}

/* Responsive iframe container */
.aspect-video {
    aspect-ratio: 16 / 9;
}

/* Enhanced modal animations */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-zoom-in {
    animation: zoomIn 0.3s ease-out;
}

/* Improved gradient overlays */
.gradient-overlay {
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.1) 0%, rgba(184, 152, 92, 0.1) 100%);
}

/* Enhanced button hover effects */
.btn-zoom {
    transition: all 0.3s ease;
}

.btn-zoom:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(200, 168, 130, 0.3);
}

/* Testimonial rating stars enhancement */
.rating-stars {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Loading state for images */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
