/* ========================================== */
/* ===== RESET & BASE ===== */
/* ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.rs-banner-area {
    position: relative;
    width: 100%;
    margin-top: 80px;
}

/* ========================================== */
/* ===== SLIDER WRAPPER ===== */
/* ========================================== */
.rs-banner-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ========================================== */
/* ===== SLIDER CONTAINER ===== */
/* ========================================== */
.rs-banner-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
}

/* ========================================== */
/* ===== EACH SLIDE ===== */
/* ========================================== */
.rs-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.rs-banner-slide.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================== */
/* ===== WRAPPER ===== */
/* ========================================== */
.rs-banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ========================================== */
/* ===== BACKGROUND IMAGE ===== */
/* ========================================== */
.rs-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

/* ========================================== */
/* ===== OVERLAY FOR TEXT SLIDES ===== */
/* ========================================== */
.rs-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* ========================================== */
/* ===== CONTENT (CHANGED COLORS) ===== */
/* ========================================== */
.rs-banner-content {
    color: #ffffff; /* Text White */
    padding: 30px;
    position: relative;
    z-index: 3;
}

.rs-banner-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ff6600; /* ORANGE SUBTITLE */
}

.rs-banner-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff; /* White Title */
}

.rs-banner-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    color: #ffffff; /* White Description */
}

/* ========================================== */
/* ===== BUTTON (CHANGED TO ORANGE) ===== */
/* ========================================== */
.rs-banner-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ff6600; /* ORANGE BUTTON */
    color: #ffffff;       /* White text on button */
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rs-banner-btn:hover {
    background: #ffffff;
    color: #ff6600; /* Orange text on hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ========================================== */
/* ===== NAVIGATION BUTTONS ===== */
/* ========================================== */
.rs-banner-prev,
.rs-banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 22px;
    cursor: pointer;
    font-size: 28px;
    font-weight: 300;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.rs-banner-prev {
    left: 30px;
}

.rs-banner-next {
    right: 30px;
}

.rs-banner-prev:hover,
.rs-banner-next:hover {
    background: #ff6600; /* ORANGE HOVER */
    color: #ffffff;
    border-color: #ff6600;
}

/* ========================================== */
/* ===== DOTS (CHANGED TO ORANGE) ===== */
/* ========================================== */
.rs-banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #ff6600; /* ORANGE ACTIVE DOT */
    border-color: #ffffff;
    transform: scale(1.2);
}

.dot:hover {
    background: #ff6600; /* ORANGE HOVER DOT */
}

/* ========================================== */
/* ========================================== */
/* ===== RESPONSIVE BREAKPOINTS ===== */
/* ========================================== */
/* ========================================== */

/* ========================================== */
/* ===== LARGE SCREENS (1200px+) ===== */
/* ========================================== */
@media (min-width: 1200px) {
    .rs-banner-slider {
        height: 100vh;
        min-height: 600px;
        max-height: 900px;
    }
    
    .rs-banner-title {
        font-size: 70px;
    }
    
    .rs-banner-bg {
        background-size: cover !important;
        background-position: center !important;
    }
}

/* ========================================== */
/* ===== TABLET LANDSCAPE (992px - 1199px) ===== */
/* ========================================== */
@media (max-width: 1199px) {
    .rs-banner-slider {
        height: 90vh;
        min-height: 500px;
        max-height: 800px;
    }
    
    .rs-banner-title {
        font-size: 50px;
    }
    
    .rs-banner-subtitle {
        font-size: 16px;
    }
    
    .rs-banner-bg {
        background-size: cover !important;
        background-position: center !important;
    }
}

/* ========================================== */
/* ===== TABLET PORTRAIT (768px - 991px) ===== */
/* ========================================== */
@media (max-width: 991px) {
    .rs-banner-slider {
        height: 80vh;
        min-height: 450px;
        max-height: 700px;
    }
    
    .rs-banner-title {
        font-size: 40px;
    }
    
    .rs-banner-desc {
        font-size: 16px;
    }
    
    .rs-banner-prev,
    .rs-banner-next {
        padding: 12px 16px;
        font-size: 22px;
    }
    
    .rs-banner-prev {
        left: 15px;
    }
    
    .rs-banner-next {
        right: 15px;
    }
    
    .rs-banner-bg {
        background-size: cover !important;
        background-position: center !important;
    }
}

/* ========================================== */
/* ===== MOBILE LANDSCAPE (576px - 767px) ===== */
/* ========================================== */
@media (max-width: 767px) {
    .rs-banner-slider {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        aspect-ratio: 16/9 !important;
    }
    
    .rs-banner-bg {
        background-size: contain !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        background-color: transparent !important;
    }
    
    .rs-banner-wrapper {
        height: 100% !important;
        width: 100% !important;
    }
    
    .rs-banner-slide {
        height: 100% !important;
        width: 100% !important;
        position: absolute !important;
    }
    
    .rs-banner-title {
        font-size: 32px;
    }
    
    .rs-banner-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .rs-banner-desc {
        font-size: 15px;
        max-width: 100%;
    }
    
    .rs-banner-content {
        padding: 20px;
        text-align: center;
    }
    
    .rs-banner-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .rs-banner-prev,
    .rs-banner-next {
        display: none;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

/* ========================================== */
/* ===== MOBILE PORTRAIT (below 576px) ===== */
/* ========================================== */
@media (max-width: 575px) {
    .rs-banner-slider {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        aspect-ratio: 16/10 !important;
    }
    
    .rs-banner-bg {
        background-size: contain !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        display: block !important;
        background-color: transparent !important;
    }
    
    .rs-banner-wrapper {
        height: 100% !important;
        width: 100% !important;
        display: block !important;
    }
    
    .rs-banner-slide {
        height: 100% !important;
        width: 100% !important;
        display: block !important;
        position: absolute !important;
    }
    
    .rs-banner-title {
        font-size: 26px;
    }
    
    .rs-banner-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .rs-banner-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .rs-banner-content {
        padding: 15px;
    }
    
    .rs-banner-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .rs-banner-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .rs-banner-dots {
        bottom: 20px;
        gap: 8px;
    }
}

/* ========================================== */
/* ===== EXTRA SMALL DEVICES (below 400px) ===== */
/* ========================================== */
@media (max-width: 400px) {
    .rs-banner-slider {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        aspect-ratio: 16/11 !important;
    }
    
    .rs-banner-bg {
        background-size: contain !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
        background-color: transparent !important;
    }
    
    .rs-banner-title {
        font-size: 20px;
    }
    
    .rs-banner-subtitle {
        font-size: 11px;
    }
    
    .rs-banner-desc {
        font-size: 12px;
    }
    
    .rs-banner-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .rs-banner-content {
        padding: 10px;
    }
}