/* Custom Home Slider Styles */
.custom-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.custom-slider-wrapper {
    position: relative;
    width: 100%;
}

.custom-slide {
    display: none;
    width: 100%;
}

.custom-slide.active {
    display: block;
}

/* 50/50 Split Layout */
.custom-slide .slider_grup {
    display: flex;
    width: 100%;
    margin: 0;
    position: relative;
    min-height: 500px;
    background: #ffffff url("../images/slide_bg.png") no-repeat center center;
    background-size: cover;
}

.custom-slide .home_slider_item {
    margin: 0;
    padding: 0;
}

.custom-slide .home_slider_item_img {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.custom-slide .home_slider_slogan {
    position: absolute;
    top: 30px;
    left: 20px;
    font-family: "Blacksword GGG", cursive;
    font-size: 4rem;
    font-weight: 100;
    z-index: 10;
    color: #ffffff;
    text-shadow: 0 0 3px #070707, 0 0 5px #050505;
}

.custom-slide .home_slider_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-slide .home_slider_item_text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    align-items: baseline;
}

.custom-slide .slide_title {
    font-size: 20px;
    font-weight: 700;
}

.custom-slide .slide_h2 {
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0 10px 0;
    display: flex;
    flex-direction: row;
}

.custom-slide .slide_h2::before {
    content: url("../images/g.svg");
    right: -20px;
    position: relative;
}

.custom-slide .slide_h2 h2 {
    font-size: 44px;
}

.custom-slide .slide_desc {
    max-width: 90%;
    font-size: 18px;
    font-weight: 400;
    padding-right: 50px;
}

.custom-slide .btn_slide {
    background-color: #73c6c7;
    margin: 20px;
    text-align: center;
    padding: 15px 25px;
    width: 300px;
}

.custom-slide .btn_slide a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

/* Responsive - stack on mobile */
@media (max-width: 991px) {
    .custom-slide .slider_grup {
        flex-direction: column;
        min-height: auto;
    }
    
    .custom-slide .home_slider_item_img,
    .custom-slide .home_slider_item_text {
        width: 100%;
    }
    
    .custom-slide .home_slider_item_img {
        height: 300px;
    }
    
    .custom-slide .slide_desc {
        max-width: 100%;
        padding-right: 20px;
    }
    
    .custom-slide .home_slider_slogan {
        font-size: 2.5rem;
        top: 20px;
        left: 15px;
    }
    
    .custom-slider-btn {
        font-size: 40px;
    }
    
    .custom-slider-prev {
        left: 20px;
    }
    
    .custom-slider-next {
        right: 20px;
    }
}

@media (max-width: 400px) {
    .custom-slide .home_slider_slogan {
        font-size: 2rem;
    }
    
    .custom-slider-btn {
        font-size: 30px;
    }
    
    .custom-slider-btn i {
        -webkit-text-stroke: 2px #ffffff;
        text-stroke: 2px #ffffff;
    }
    
    .custom-slider-prev {
        left: 10px;
    }
    
    .custom-slider-next {
        right: 10px;
    }
}

.custom-slider-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: auto;
    height: auto;
    cursor: pointer;
    z-index: 10;
    font-size: 50px;
    color: #4db8ba;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.custom-slider-btn i {
    -webkit-text-stroke: 3px #ffffff;
    text-stroke: 3px #ffffff;
    paint-order: stroke fill;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.custom-slider-btn:hover {
    color: #38c1c9;
    transform: translateY(-50%) scale(1.2);
}

.custom-slider-btn:hover i {
    -webkit-text-stroke: 3px #ffffff;
    text-stroke: 3px #ffffff;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.7));
}

.custom-slider-prev {
    left: 30px;
}

.custom-slider-next {
    right: 30px;
}

.custom-slider-btn:active {
    transform: translateY(-50%) scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .custom-slider-prev {
        left: 10px;
    }
    
    .custom-slider-next {
        right: 10px;
    }
    
    .custom-slider-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .custom-slide .home_slider_item_text {
        padding: 30px 20px;
    }
}
