/* Instagram Video Section */
.instagram-video {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #6dbdc8;
    border-radius: 2px;
}

.video-wrapper {
    max-width: 540px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-loader {
    text-align: center;
    display: none !important; 
    cursor: pointer;
    padding: 60px 20px;
    transition: all 0.3s ease;
    margin-top: 5%;
}

.video-loader:hover {
    transform: scale(1.05);
}

.video-loader i {
    font-size: 80px;
    color: #6dbdc8;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.video-loader p {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.instagram-media {
    margin: 0 auto !important;
    max-width: 500px !important;
    min-width: 326px;
    width: 100% !important;
    border-radius: 10px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .instagram-video {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .video-wrapper {
        padding: 15px;
        min-height: 500px;
    }
    
    .video-loader i {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .video-wrapper {
        padding: 10px;
        min-height: 450px;
    }
    
    .instagram-media {
        min-width: 280px !important;
    }
}
