/* Video Showcase Section */
.video-showcase-section {
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-beige) 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="15" r="2" fill="%23A8D5BA" opacity="0.2"/><circle cx="85" cy="35" r="1.5" fill="%237FB069" opacity="0.15"/><circle cx="45" cy="85" r="1.2" fill="%23F4A460" opacity="0.1"/></svg>');
    z-index: 0;
}

.video-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: var(--dark-text);
    margin-bottom: 40px;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-wrapper:hover .showcase-video {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-strong);
}

.video-sound-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.video-sound-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.video-benefits-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.video-benefit {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-benefit:hover {
    transform: translateY(-3px);
}

.benefit-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: var(--font-display);
    line-height: 1;
}

.benefit-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-top: 2px;
}

.video-cta-section {
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.video-cta-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

.video-cta-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.video-cta-subtitle {
    color: var(--medium-text);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.video-cta-btn {
    font-size: 1.2rem;
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
}

.video-cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.video-cta-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Video Loading State */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.1rem;
    z-index: 4;
}

.video-loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile video adaptations */
@media (max-width: 768px) {
    .video-wrapper {
        border-radius: 15px;
        margin-bottom: 30px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .video-sound-toggle {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
        font-size: 1rem;
    }

    .video-benefits-overlay {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }

    .video-benefit {
        padding: 8px 12px;
        border-radius: 8px;
    }

    .benefit-number {
        font-size: 1.2rem;
    }

    .benefit-label {
        font-size: 0.75rem;
    }

    .video-cta-section {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .video-cta-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .video-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .video-cta-btn {
        font-size: 0.8rem;
        padding: 16px 30px;
    }
}