.why-choose-section {
    width: 100%;
    padding: 120px 0;
    background-color: #FAFBFC;
}

.why-choose-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.why-choose-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-badge {
    background-color: #FEF2F2;
    color: #590401;
    height: 32px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 32px;
    border: 1px solid rgba(89, 4, 1, 0.1);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: #590401;
}

.section-description {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    max-width: 936px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* Video Section */
.video-card {
    position: relative;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    max-width: 936px;
    aspect-ratio: 16 / 9; /* Standard video ratio */
    background-color: #0A0A0A;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(89, 4, 1, 0.1);
    isolation: isolate; /* Ensures border-radius clipping for iframes */
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.video-controls {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: none; /* Let clicks pass through to the play button area */
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
}

.progress-active {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: #FFFFFF;
    border-radius: 3px;
}

.control-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    opacity: 0.8;
}

.player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    border-radius: 24px;
    overflow: hidden;
}

.video-thumbnail-wrapper.is-playing .player-container {
    opacity: 1;
    pointer-events: all;
}

.video-thumbnail-wrapper.is-playing .video-thumbnail,
.video-thumbnail-wrapper.is-playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}


@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .video-thumbnail-wrapper {
        border-radius: 16px;
        aspect-ratio: 16 / 9; /* Keep consistent ratio on mobile */
    }
    
    .player-container {
        border-radius: 16px;
    }

    .video-controls {
        bottom: 16px;
        left: 16px;
        right: 16px;
        transform: scale(0.8);
        transform-origin: bottom left;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
}