 /* =========================================================
   WEBLINKUS TUTORIALS / YOUTUBE
   PREMIUM SECTION
========================================================= */


/* =========================================================
   01. YOUTUBE SECTION
========================================================= */

.youtube {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    direction: rtl;
}


/* =========================================================
   02. YOUTUBE BOX
========================================================= */

.youtube-box {
    width: 100%;
}


/* =========================================================
   03. SECTION TITLE
========================================================= */

.youtube .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.youtube .section-title h2 {
    margin: 0 0 12px;
    color: #03142d;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.5;
}

.youtube .section-title h2 span {
    color: #f00000;
}

.youtube .section-title p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}


/* =========================================================
   04. YOUTUBE GRID
========================================================= */

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}


/* =========================================================
   05. SUBSCRIBE CARD
========================================================= */

.youtube .subscribe-card {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 330px;

    padding: 30px 24px;

    text-align: center;

    background: #03142d;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(3, 20, 45, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.youtube .subscribe-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(3, 20, 45, 0.18);
}


/* =========================================================
   06. YOUTUBE ICON
========================================================= */

.youtube .subscribe-card .yt {
    width: 66px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    background: #f00000;

    border-radius: 12px;

    color: #ffffff;

    font-size: 24px;
    line-height: 1;

    box-shadow:
        0 8px 22px rgba(240, 0, 0, 0.28);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.youtube .subscribe-card:hover .yt {
    transform: scale(1.06);

    box-shadow:
        0 12px 28px rgba(240, 0, 0, 0.38);
}


/* =========================================================
   07. YOUTUBE LOGO
========================================================= */

.youtube .youtube-logo {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 800;
}


/* =========================================================
   08. SUBSCRIBE TITLE
========================================================= */

.youtube .subscribe-card h3 {
    margin: 5px 0 10px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.6;
}


/* =========================================================
   09. SUBSCRIBE TEXT
========================================================= */

.youtube .subscribe-card p {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   10. SUBSCRIBE BUTTON
========================================================= */

.youtube .subscribe-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
    min-height: 46px;

    padding: 10px 22px;

    background: #f00000;

    border-radius: 10px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.youtube .subscribe-card .btn:hover {
    background: #d40000;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(240, 0, 0, 0.25);
}


/* =========================================================
   11. VIDEO CARD
========================================================= */

.youtube .video-card {
    min-width: 0;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 28px rgba(3, 20, 45, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.youtube .video-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 42px rgba(3, 20, 45, 0.15);
}


/* =========================================================
   12. VIDEO LINK
========================================================= */

.youtube .video-card > a {
    display: block;

    width: 100%;
    height: 100%;

    color: inherit;

    text-decoration: none;

    cursor: pointer;
}


/* =========================================================
   13. VIDEO THUMBNAIL
========================================================= */

.youtube .video-thumb {
    position: relative;

    width: 100%;

    /*
     * تم زيادة الارتفاع هنا
     * حتى تظهر صورة الفيديو بشكل أكبر
     */
    height: 215px;

    overflow: hidden;

    background: #03142d;
}


/* =========================================================
   14. THUMBNAIL IMAGE
========================================================= */

.youtube .video-thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}


/* =========================================================
   15. HOVER IMAGE
========================================================= */

.youtube .video-card:hover .video-thumb img {
    transform: scale(1.07);

    filter: brightness(0.72);
}


/* =========================================================
   16. PLAY BUTTON
========================================================= */

.youtube .play-button {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    background: #f00000;

    border-radius: 50%;

    color: #ffffff;

    font-size: 22px;

    line-height: 1;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* =========================================================
   17. PLAY BUTTON HOVER
========================================================= */

.youtube .video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.13);

    background: #ff0000;

    box-shadow:
        0 12px 32px rgba(240, 0, 0, 0.38);
}


/* =========================================================
   18. VIDEO TITLE
========================================================= */

.youtube .video-card h4 {
    margin: 18px 18px 8px;

    color: #03142d;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.6;

    transition:
        color 0.25s ease;
}

.youtube .video-card:hover h4 {
    color: #f00000;
}


/* =========================================================
   19. VIDEO META
========================================================= */

.youtube .video-card p {
    margin: 0 18px 20px;

    color: #8a94a6;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   20. TABLET
========================================================= */

@media (max-width: 991px) {

    .youtube {
        padding: 60px 0;
    }

    .youtube-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .youtube .subscribe-card {
        min-height: 310px;
    }

    .youtube .section-title h2 {
        font-size: 28px;
    }


    /* =========================================
       VIDEO THUMBNAIL - TABLET
    ========================================= */

    .youtube .video-thumb {
        height: 200px;
    }

}


/* =========================================================
   21. MOBILE
========================================================= */

@media (max-width: 767px) {

    .youtube {
        padding: 45px 0;
    }

    .youtube .section-title {
        margin-bottom: 28px;
    }

    .youtube .section-title h2 {
        font-size: 24px;
        line-height: 1.5;
    }

    .youtube .section-title p {
        font-size: 14px;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .youtube .subscribe-card {
        min-height: auto;

        padding: 30px 20px;
    }

    .youtube .video-card h4 {
        font-size: 16px;
    }


    /* =========================================
       VIDEO THUMBNAIL - MOBILE
       العودة إلى 16:9
    ========================================= */

    .youtube .video-thumb {
        height: auto;

        aspect-ratio: 16 / 9;
    }

}


/* =========================================================
   22. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .youtube .section-title h2 {
        font-size: 21px;
    }

    .youtube .section-title p {
        font-size: 13px;
    }

    .youtube .play-button {
        width: 52px;
        height: 52px;

        font-size: 20px;
    }

    .youtube .video-card h4 {
        margin-top: 15px;

        font-size: 15px;
    }

}


/* =========================================================
   WEBLINKUS TUTORIALS
   YOUTUBE VIDEO POPUP
========================================================= */


/* =========================================================
   24. POPUP OVERLAY
========================================================= */

.youtube-popup {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(3, 20, 45, 0.88);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* =========================================================
   25. POPUP OPEN
========================================================= */

.youtube-popup.is-open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   26. POPUP OVERLAY LAYER
========================================================= */

.youtube-popup-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    cursor: pointer;
}


/* =========================================================
   27. POPUP CONTENT
========================================================= */

.youtube-popup-content {
    position: relative;

    width: min(900px, 100%);

    z-index: 2;

    background: #000000;

    border-radius: 18px;

    overflow: visible;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.45);

    transform: scale(0.92);

    transition:
        transform 0.3s ease;
}


/* =========================================================
   28. POPUP CONTENT OPEN
========================================================= */

.youtube-popup.is-open .youtube-popup-content {
    transform: scale(1);
}


/* =========================================================
   29. VIDEO CONTAINER
========================================================= */

.youtube-popup-video {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000000;

    border-radius: 18px;
}


/* =========================================================
   30. VIDEO IFRAME
========================================================= */

.youtube-popup-video iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   31. CLOSE BUTTON
========================================================= */

.youtube-popup-close {
    position: absolute;

    top: -18px;
    right: -18px;

    z-index: 5;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #f00000;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 30px;

    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   32. CLOSE BUTTON HOVER
========================================================= */

.youtube-popup-close:hover {
    background: #d40000;

    transform: rotate(90deg);

    box-shadow:
        0 10px 28px rgba(240, 0, 0, 0.35);
}


/* =========================================================
   33. BODY LOCK
========================================================= */

body.youtube-popup-open {
    overflow: hidden;
}


/* =========================================================
   34. TABLET
========================================================= */

@media (max-width: 991px) {

    .youtube-popup {
        padding: 25px;
    }

    .youtube-popup-content {
        width: min(850px, 100%);
    }

    .youtube-popup-close {
        top: -16px;
        right: -16px;

        width: 40px;
        height: 40px;

        font-size: 28px;
    }

}


/* =========================================================
   35. MOBILE
========================================================= */

@media (max-width: 767px) {

    .youtube-popup {
        padding: 20px;
    }

    .youtube-popup-content {
        width: 100%;

        border-radius: 12px;
    }

    .youtube-popup-video {
        border-radius: 12px;
    }

    .youtube-popup-close {
        top: -15px;
        right: -8px;

        width: 38px;
        height: 38px;

        font-size: 26px;
    }

}


/* =========================================================
   36. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .youtube-popup {
        padding: 15px;
    }

    .youtube-popup-close {
        top: -14px;
        right: -6px;

        width: 36px;
        height: 36px;

        font-size: 24px;
    }

}

/* =========================================================
   37. ALL VIDEOS BUTTON
========================================================= */

.youtube-more {
    display: flex;

    justify-content: center;

    margin-top: 38px;
}


/* =========================================================
   38. ALL VIDEOS BUTTON LINK
========================================================= */

.youtube-more-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 220px;
    min-height: 50px;

    padding: 12px 24px;

    background: #03142d;

    border: 2px solid #03142d;

    border-radius: 12px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.5;

    text-decoration: none;

    box-shadow:
        0 8px 22px rgba(3, 20, 45, 0.12);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   39. BUTTON ICON
========================================================= */

.youtube-more-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 19px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


/* =========================================================
   40. BUTTON HOVER
========================================================= */

.youtube-more-btn:hover {
    background: #f00000;

    border-color: #f00000;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(240, 0, 0, 0.22);
}

.youtube-more-btn:hover .youtube-more-icon {
    transform: translateX(-4px);
}


/* =========================================================
   41. MOBILE
========================================================= */

@media (max-width: 767px) {

    .youtube-more {
        margin-top: 30px;
    }

    .youtube-more-btn {
        min-width: 200px;

        min-height: 48px;

        padding: 11px 20px;

        font-size: 14px;
    }

}