/* Main Section */
.video-showcase-section {
    padding: 120px 20px 80px 20px !important;
    background: #e8e4f3 !important;
    width: 100%;
    margin: 0 !important;
    overflow: hidden;
}

.video-showcase-section .container {
    max-width: 1300px !important;
    margin: 0 auto !important;
    background: none !important;
    padding: 0 20px !important;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.main-title {
    font-family: 'Lora', serif;
    font-size: 56px;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 18px;
    color: #4a4a5e;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Spec Videos Grid (2 videos side-by-side) */
.spec-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.video-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.12);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Fullscreen Button */
.fullscreen-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-wrapper:hover .fullscreen-btn,
.bf-video-wrapper:hover .fullscreen-btn {
    opacity: 1;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

/* Video placeholder for when no embed yet */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .video-placeholder:hover {
    background: rgba(0, 0, 0, 0.7);
} */

.play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.play-icon:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #1a1a2e;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.video-content {
    padding: 30px;
}

.video-title {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 600;
}

.video-description {
    color: #4a4a5e;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-description strong {
    color: #1a1a2e;
    display: block;
    margin-bottom: 6px;
}

.video-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #f5f3f8;
    color: #6a5b8c;
    border: 1px solid #d4cce0;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4cce0 20%, #d4cce0 80%, transparent);
    margin: 60px 0;
}

/* Spokesperson Section */
.spokesperson-section {
    max-width: 900px;
    margin: 0 auto 80px;
}

.spokesperson-header {
    text-align: center;
    margin-bottom: 40px;
}

.spokesperson-title {
    font-family: Canela;
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 400;
}

.spokesperson-subtitle {
    color: #4a4a5e;
    font-size: 16px;
}

.spokesperson-video {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
    overflow: hidden;
}

.spokesperson-content {
    padding: 30px 40px;
    text-align: center;
}

.spokesperson-description {
    color: #4a4a5e;
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
}

/* Comparison Note */
.comparison-note {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: #f5f3f8;
    border-radius: 12px;
}

.comparison-note p {
    color: #4a4a5e;
    font-size: 15px;
    line-height: 1.7;
}

.comparison-note strong {
    color: #1a1a2e;
    font-weight: 600;
}

.comparison-note em {
    color: #c9a961;
    font-style: normal;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
    margin-bottom: 0;
    max-width: 1200px;
    margin: 6rem auto 8rem;
}

.cta-text {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 30px;
}

#videoDemo .cta-button {
    display: inline-block;
    background: #c9a961;
    color: #1a1a2e;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
    width: auto;
}


.cta-button:hover {
    background: #b89650;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.cta-button-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-button-arrow {
    transform: translateX(4px);
}

.cta-disclaimer {
    font-size: 13px;
    color: #6a5b8c;
    margin-top: 20px;
    font-style: italic;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #d4cce0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 600;
    color: #c9a961;
    margin-bottom: 8px;
}

.stat-label {
    color: #4a4a5e;
    font-size: 14px;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .spec-videos-grid {
        gap: 30px;
    }

    .main-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .video-showcase-section {
        padding: 60px 15px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .main-title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .spec-videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .video-content {
        padding: 25px;
    }

    .video-title {
        font-size: 20px;
    }

    .spokesperson-title {
        font-size: 28px;
    }

    .spokesperson-content {
        padding: 25px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .cta-text {
        font-size: 18px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .fullscreen-btn {
        font-size: 11px;
        padding: 8px 12px;
    }
}