/* ========== FIX nice-select import error ========== */
/* Remove or replace this line in style.css: */
/* @import url(nice-select.html);  <-- DELETE THIS LINE */
/* Replace with: */
/* @import url(nice-select.css);   <-- if the file is .css */


/* ========== BANNER SLIDER FULL FIX ========== */
.banner-slider-main {
    width: 100%;
    height: 100vh !important;
    min-height: 500px;
    margin-top: 0 !important;
    position: relative;
    overflow: hidden;
}

.banner-slider-main .swiper-wrapper {
    width: 100%;
    height: 100% !important;
}

.banner-slider-main .swiper-slide {
    width: 100%;
    height: 100% !important;
    overflow: hidden;
}

.slide-background {
    width: 100%;
    height: 100vh !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.slide-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 2;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 900px;
    padding: 20px;
}

/* Fix h1 being overridden by global style.css h1 { font-size: 24px } */
.slide-content h1 {
    font-size: 55px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    padding-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}

/* Fix p being overridden */
.slide-content p {
    font-size: 20px !important;
    color: #f0f0f0 !important;
    line-height: 1.7 !important;
    margin-bottom: 35px !important;
    padding-bottom: 0 !important;
}

.slide-btn {
    display: inline-block;
    padding: 14px 45px;
    background: linear-gradient(135deg, #df8a3b, #638d98);
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #df8a3b;
}

.slide-btn:hover {
    background: transparent;
    color: white !important;
    transform: scale(1.05);
}

/* Nav Buttons */
.banner-slider-main .swiper-button-next,
.banner-slider-main .swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.3);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner-slider-main .swiper-button-next:hover,
.banner-slider-main .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.banner-slider-main .swiper-button-next::after,
.banner-slider-main .swiper-button-prev::after {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

/* Pagination */
.banner-slider-main .swiper-pagination {
    bottom: 30px !important;
    z-index: 15 !important;
}

.banner-slider-main .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    border: 2px solid white;
    margin: 0 6px !important;
}

.banner-slider-main .swiper-pagination-bullet-active {
    background: #df8a3b !important;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-slider-main { height: 70vh !important; }
    .slide-background { height: 70vh !important; }
    .slide-content h1 { font-size: 36px !important; }
    .slide-content p { font-size: 16px !important; }
}

@media (max-width: 480px) {
    .banner-slider-main { height: 60vh !important; min-height: 380px; }
    .slide-background { height: 60vh !important; }
    .slide-content h1 { font-size: 26px !important; }
    .slide-content p { font-size: 14px !important; }
    .slide-btn { padding: 10px 25px; font-size: 13px; }
}