/* why-choose-us.css */

.wcu-section-wrapper {
    background-color: var(--wcu-bg-light);
    color: var(--wcu-text-dark);
    padding: 80px 20px;
    position: relative;
    font-family: 'Anek Bangla', sans-serif;
    overflow: hidden;
}

.wcu-section-wrapper * {
    box-sizing: border-box;
}

/* Subtle Background Dot Pattern */
.wcu-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(#d1d5db 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.wcu-container {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Top Section Layout */
.wcu-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    min-width: 0;
}

.wcu-main-grid > * {
    min-width: 0;
}

/* Left Column Styles */
.wcu-left-col .wcu-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F0EDFA;
    color: var(--wcu-primary-purple);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.wcu-left-col h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--wcu-text-dark);
}

.wcu-left-col h2 .highlight-purple {
    color: var(--wcu-primary-purple);
}

.wcu-left-col>p {
    color: var(--wcu-text-muted);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.wcu-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.wcu-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
}

.wcu-feature-item i {
    color: var(--wcu-primary-purple);
    font-size: 18px;
}

.wcu-action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.wcu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
}

.wcu-btn-primary {
    background-color: var(--wcu-primary-purple);
    color: var(--wcu-white);
}

.wcu-btn-primary:hover {
    filter: brightness(0.9);
    color: var(--wcu-white);
}

.wcu-btn-whatsapp {
    background-color: var(--wcu-whatsapp-green);
    color: var(--wcu-white);
}

.wcu-btn-whatsapp:hover {
    filter: brightness(0.9);
    color: var(--wcu-white);
}

.wcu-contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #F0EDFA;
    padding: 15px 25px;
    border-radius: 8px;
    max-width: max-content;
}

.wcu-contact-icon {
    background-color: var(--wcu-primary-purple);
    color: var(--wcu-white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.wcu-contact-text span {
    display: block;
    font-size: 13px;
    color: var(--wcu-text-muted);
}

.wcu-contact-text strong {
    font-size: 20px;
    color: var(--wcu-primary-purple);
    font-weight: 700;
}

/* Right Column (Video Section) Styles */
.wcu-right-col {
    background: var(--wcu-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.wcu-video-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.wcu-video-header i {
    color: var(--wcu-primary-purple);
    font-size: 24px;
}

.wcu-video-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.wcu-right-col>p.wcu-video-sub {
    font-size: 14px;
    color: var(--wcu-text-muted);
    margin-left: 36px;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* Main Video Player */
.wcu-main-video-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    margin-bottom: 20px;
    cursor: pointer;
}

.wcu-main-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}

.wcu-main-video-wrapper:hover img {
    opacity: 0.9;
}

.wcu-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--wcu-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--wcu-text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.wcu-video-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--wcu-white);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: rgb(14 24 22 / 40%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wcu-video-info-overlay h4 {
    font-size: 18px;
    margin-bottom: 5px;
    margin-top: 0;
    color: #fff;
}

.wcu-video-info-overlay p {
    font-size: 13px;
    color: #ddd;
    margin: 0;
}

/* Video Carousel */
.wcu-carousel-container {
    position: relative;
    overflow: hidden;
}

.wcu-carousel-track {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease-in-out;
}

.wcu-carousel-item {
    min-width: calc(33.333% - 10px);
    background: var(--wcu-white);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--wcu-border-color);
}

.wcu-thumb-wrapper {
    position: relative;
    height: 90px;
    background: #f0f0f0;
}

.wcu-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-thumb-info {
    padding: 10px;
}

.wcu-thumb-info h5 {
    font-size: 14px;
    margin-bottom: 2px;
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wcu-thumb-info p {
    font-size: 11px;
    color: var(--wcu-text-muted);
    margin: 0;
}

/* Carousel Controls */
.wcu-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.wcu-nav-btn {
    background: #F0EDFA;
    color: var(--wcu-primary-purple);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.wcu-nav-btn:hover {
    background: var(--wcu-primary-purple);
    color: white;
}

.wcu-dots {
    display: flex;
    gap: 8px;
}

.wcu-dot {
    width: 8px;
    height: 8px;
    background: #D1D5DB;
    border-radius: 50%;
    cursor: pointer;
}

.wcu-dot.active {
    background: var(--wcu-primary-purple);
}

/* Stats Banner Styles */
.wcu-stats-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--wcu-white);
    padding: 25px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    flex-wrap: wrap;
    gap: 20px;
}

.wcu-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wcu-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: white;
}

.wcu-icon-purple {
    background-color: var(--wcu-stat-1-color);
}

.wcu-icon-green {
    background-color: var(--wcu-stat-2-color);
}

.wcu-icon-blue {
    background-color: var(--wcu-stat-3-color);
}

.wcu-icon-orange {
    background-color: var(--wcu-stat-4-color);
}

.wcu-stat-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--wcu-text-dark);
    line-height: 1.1;
    margin: 0;
}

.wcu-stat-text h3.color-purple {
    color: var(--wcu-stat-1-color);
}

.wcu-stat-text h3.color-green {
    color: var(--wcu-stat-2-color);
}

.wcu-stat-text h3.color-blue {
    color: var(--wcu-stat-3-color);
}

.wcu-stat-text h3.color-orange {
    color: var(--wcu-stat-4-color);
}

.wcu-stat-text p {
    font-size: 14px;
    color: var(--wcu-text-muted);
    margin-top: 2px;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .wcu-main-grid {
        grid-template-columns: 1fr;
    }

    .wcu-stats-banner {
        grid-template-columns: 1fr 1fr;
        display: grid;
    }
}

@media (max-width: 768px) {
    .wcu-section-wrapper {
        padding: 40px 15px;
    }

    .wcu-left-col h2 {
        font-size: 28px;
    }

    .wcu-left-col > p {
        font-size: 15px;
        max-width: 100%;
    }

    .wcu-features-grid {
        grid-template-columns: 1fr;
    }

    .wcu-features-grid > * {
        min-width: 0;
        word-break: break-word;
    }

    .wcu-action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .wcu-action-buttons .wcu-btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        word-break: break-word;
    }

    .wcu-contact-box {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        width: 100%;
        word-break: break-word;
    }

    .wcu-main-video-wrapper {
        height: 200px;
    }

    .wcu-right-col {
        padding: 20px 15px;
    }

    .wcu-stats-banner {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 15px;
    }

    .wcu-carousel-item {
        min-width: 100%;
    }
}