/* Slide Banner Component */

.slide-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 0.8s ease-in-out;
}

.slide-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(30, 30, 30, 0.7));
    z-index: 1;
}

.slide-banner__content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .slide-banner__content {
        padding: 80px 40px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .slide-banner__content {
        padding: 60px 30px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .slide-banner__content {
        padding: 40px 20px;
    }
}

.slide-banner__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.slide-banner__subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #cfcece;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .slide-banner__subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .slide-banner__subtitle {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

.slide-banner__heading {
    font-size: 59px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 1024px) {
    .slide-banner__heading {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .slide-banner__heading {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .slide-banner__heading {
        font-size: 28px;
    }
}

.slide-banner__description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 900px;
    margin: 0;
}

@media (max-width: 1024px) {
    .slide-banner__description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .slide-banner__description {
        font-size: 14px;
        line-height: 1.5;
    }
}

.slide-banner__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    padding: 12px 32px;
    margin-top: 30px;
    text-decoration: none;
    color: #1a1a1a;
    background-color: #19e40e;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-banner__link:hover {
    background-color: #0cc900;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 228, 14, 0.4);
}

.slide-banner__link-arrow {
    display: none;
}

.slide-banner__link-arrow::after {
    display: none;
}



/* Slide Indicators */
.slide-indicators {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 15;
}

@media (max-width: 1024px) {
    .slide-indicators {
        right: 40px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .slide-indicators {
        bottom: 120px;
        top: auto;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slide-indicators {
        bottom: 80px;
        right: 50%;
        transform: translateX(50%);
        gap: 8px;
    }
}

.slide-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .slide-indicator {
        width: 35px;
        height: 35px;
        font-size: 11px;
        border-width: 1.5px;
    }
}

.slide-indicator.active {
    background: linear-gradient(135deg, #22ff00, #66ffb5);
    border-color: #0efc8d;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 255, 13, 0.5);
}

.slide-indicator:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

/* Social Icons */
.slide-banner__socials {
    position: absolute;
    bottom: 30px;
    left: 60px;
    display: flex;
    gap: 15px;
    z-index: 15;
}

@media (max-width: 1024px) {
    .slide-banner__socials {
        left: 40px;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .slide-banner__socials {
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .slide-banner__socials {
        bottom: 30px;
        gap: 8px;
    }
}

.slide-banner__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .slide-banner__social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

.slide-banner__social-link:hover {
    background: rgba(0, 255, 21, 0.3);
    border-color: #00ff26;
    color: #00ff1a;
}

/* Swiper Styles for Slide Banner */
.slide-banner-swiper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.swiper-slide-banner {
    width: 100%;
    height: 100%;
}

.swiper-button-next-banner,
.swiper-button-prev-banner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-button-next-banner:hover,
.swiper-button-prev-banner:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

.swiper-button-next-banner {
    right: 30px;
}

.swiper-button-prev-banner {
    left: 30px;
}

.swiper-button-next-banner::after,
.swiper-button-prev-banner::after {
    content: '';
    font-size: 16px;
    color: #ffffff;
}
