/* Videos Page Styles */

/* Videos Hero Section */
.videos-hero {
    position: relative;
    padding: 180px 240px 0px;
    z-index: 5;
    max-width: 1920px;
    margin: 0 auto;
}

.videos-hero-content {
    /* text-align: center; */
}

.videos-title {
    font-size: 98px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin: 0;
    line-height: 1.2;
}

/* Videos Section */
.videos-section {
    position: relative;
    background: linear-gradient(to bottom, #000000 0%, #080d12 30%, #0c1823 100%);
    padding: 100px 240px;
    z-index: 5;
}

.videos-container {
    max-width: 1920px;
    margin: 0 auto;
}

.videos-content-wrapper {
    width: 100%;
}

/* Video Tabs */
.video-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.video-tab {
    position: relative;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 32px;
    font-weight: 700;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.video-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fa660f;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.video-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.video-tab.active {
    color: #ffffff;
}

.video-tab.active::after {
    transform: scaleX(1);
}

/* Video Content */
.video-content {
    display: none;
}

.video-content.active {
    display: block;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.video-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-8px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.video-item:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn img {
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 0 10px;
}

.video-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
}

.video-date {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.2px;
}

/* Ask a Question Section */
.ask-question-section {
    position: relative;
    background-color: #ebf1f7;
    padding: 120px 240px;
    z-index: 5;
}

.ask-question-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ask-question-title {
    font-size: 50px;
    font-weight: 900;
    color: #0c1823;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.ask-question-subtitle {
    font-size: 22px;
    font-weight: 400;
    color: #0c1823;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.ask-question-btn {
    display: inline-block;
    background-color: #fa660f;
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    padding: 18px 60px;
    border-radius: 7px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
}

.ask-question-btn:hover {
    background-color: #e05500;
}

/* Tablet Responsive (768px - 1440px) */
@media screen and (max-width: 1440px) {
    .videos-hero {
        padding: 140px 60px 80px;
    }

    .videos-title {
        font-size: 70px;
    }

    .videos-section {
        padding: 80px 60px;
    }

    .video-tabs {
        gap: 30px;
        margin-bottom: 60px;
    }

    .video-tab {
        font-size: 28px;
        padding: 15px 30px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .video-title {
        font-size: 20px;
    }

    .video-date {
        font-size: 15px;
    }

    .ask-question-section {
        padding: 80px 60px;
    }

    .ask-question-title {
        font-size: 40px;
    }

    .ask-question-subtitle {
        font-size: 20px;
    }

    .ask-question-btn {
        font-size: 22px;
        padding: 16px 50px;
    }
}

/* Mobile Responsive (max-width: 768px) */
@media screen and (max-width: 768px) {
    .videos-hero {
        padding: 100px 20px 60px;
    }

    .videos-title {
        font-size: 48px;
    }

    .videos-section {
        padding: 60px 20px;
    }

    .video-tabs {
        flex-direction: column;
        gap: 0;
        margin-bottom: 40px;
        border-bottom: none;
    }

    .video-tab {
        font-size: 24px;
        padding: 20px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        text-align: left;
    }

    .video-tab::after {
        display: none;
    }

    .video-tab.active {
        background-color: rgba(250, 102, 15, 0.1);
        border-left: 4px solid #fa660f;
        padding-left: 16px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-title {
        font-size: 18px;
    }

    .video-date {
        font-size: 14px;
    }

    .ask-question-section {
        padding: 60px 20px;
    }

    .ask-question-title {
        font-size: 32px;
    }

    .ask-question-subtitle {
        font-size: 18px;
    }

    .ask-question-btn {
        font-size: 20px;
        padding: 15px 40px;
        width: 100%;
    }
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    .videos-hero {
        padding: 80px 20px 40px;
    }

    .videos-title {
        font-size: 36px;
    }

    .video-tab {
        font-size: 20px;
        padding: 16px;
    }

    .video-title {
        font-size: 16px;
    }

    .ask-question-title {
        font-size: 28px;
    }

    .ask-question-subtitle {
        font-size: 16px;
    }

    .ask-question-btn {
        font-size: 18px;
        padding: 14px 35px;
    }
}

