/* Slider Styles - Clean version */

/* Hero Slider Container */
.hero-slider {
    position: relative;
    width: 100%;
    background-color: #f5f5f5;
    overflow: hidden;
}

/* Swiper Container */
.hero-swiper {
    width: 100%;
}

/* Individual Slide */
.swiper-slide {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slide Background - Shows FULL image without cropping */
.slide-bg {
    position: relative;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    aspect-ratio: 1400 / 500;
}

/* Black Overlay for Text Readability */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

/* Container positioning */
.slide-bg .container {
    position: relative;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 600px;
    padding: 40px 0;
    margin-bottom: 50px;
}

/* Slide Title */
.slide-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Slide Text */
.slide-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Slide Button */
.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f9a517;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-btn:hover {
    background-color: #3a353b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Pagination Dots */
.swiper-pagination {
    bottom: 20px !important;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
    margin: 0 5px !important;
    border-radius: 0;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #f9a517;
    width: 25px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .slide-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        text-align: center;
        margin-bottom: 30px;
        padding: 20px;
    }
    .slide-title {
        font-size: 1.5rem;
    }
    .slide-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 1.3rem;
    }
    .slide-btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.1rem;
    }
    .slide-text {
        display: none;
    }
}