/* Enhanced Slider Styles - Modern & Attractive Design */

/* ==================== Hero Slider Container ==================== */
.hero-custom {
    position: relative !important;
    height: 80vh !important;
    min-height: 600px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, var(--primary-color, #8b6179) 0%, var(--secondary-color, #ffbd59) 100%) !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.hero-custom::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* ==================== Slider Navigation Buttons ==================== */
.nextBtn, .prevBtn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 55px !important;
    height: 55px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 1000 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.8 !important;
}

.nextBtn::before, .prevBtn::before {
    content: '' !important;
    width: 12px !important;
    height: 12px !important;
    border-top: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-right: 2px solid rgba(255, 255, 255, 0.9) !important;
    transform: rotate(45deg) !important;
}

.prevBtn::before {
    transform: rotate(-135deg) !important;
}

.nextBtn {
    right: 25px !important;
}

.prevBtn {
    left: 25px !important;
}

.nextBtn:hover, .prevBtn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-50%) scale(1.05) !important;
    opacity: 1 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* ==================== Slider Items ==================== */
.home-slider .banner-slide-item {
    position: relative !important;
    height: 80vh !important;
    min-height: 600px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.home-slider .banner-slide-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, 
        rgba(139, 97, 121, 0.85) 0%, 
        rgba(139, 97, 121, 0.4) 30%, 
        rgba(255, 189, 89, 0.3) 70%, 
        rgba(255, 189, 89, 0.7) 100%) !important;
    z-index: 1 !important;
}

.home-slider .banner-slide-item::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.03"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="20" r="2"/><circle cx="20" cy="80" r="2"/><circle cx="80" cy="80" r="2"/><circle cx="50" cy="50" r="1"/></svg>') !important;
    background-size: 100px 100px !important;
    z-index: 1 !important;
}

/* ==================== Banner Content ==================== */
.banner-wrapper-item {
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}

.banner-content {
    color: var(--bg-white, #ffffff) !important;
    max-width: 700px !important;
    padding: 2rem !important;
    animation: slideInUp 0.8s ease-out !important;
}

.text-left .banner-content {
    text-align: left !important;
    margin-left: 0 !important;
}

.text-center .banner-content {
    text-align: center !important;
    margin: 0 auto !important;
}

.text-right .banner-content {
    text-align: right !important;
    margin-right: 0 !important;
}

/* ==================== Typography Enhancements ==================== */
.banner-content .subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    position: relative !important;
    display: inline-block !important;
    animation: fadeInLeft 0.8s ease-out 0.2s both !important;
}

.banner-content .subtitle::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 2px !important;
    background: var(--secondary-color, #ffbd59) !important;
    border-radius: 2px !important;
}

.text-left .banner-content .subtitle::after {
    left: 0 !important;
    transform: translateX(0) !important;
}

.text-right .banner-content .subtitle::after {
    right: 0 !important;
    left: auto !important;
    transform: translateX(0) !important;
}

.banner-content .title {
    font-family: 'Dancing Script', cursive !important;
    font-size: 4.5rem !important;
    font-weight: 700 !important;
    color: var(--bg-white, #ffffff) !important;
    margin-bottom: 2rem !important;
    line-height: 1.2 !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3) !important;
    animation: fadeInUp 0.8s ease-out 0.4s both !important;
}

.banner-content p {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 3rem !important;
    line-height: 1.6 !important;
    max-width: 600px !important;
    animation: fadeInUp 0.8s ease-out 0.6s both !important;
}

.text-center .banner-content p {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ==================== Enhanced CTA Button ==================== */
.btn-hero {
    background: linear-gradient(135deg, var(--bg-white, #ffffff) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    color: var(--primary-color, #8b6179) !important;
    border: none !important;
    padding: 18px 45px !important;
    border-radius: 35px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    animation: fadeInUp 0.8s ease-out 0.8s both !important;
    cursor: pointer !important;
}

.btn-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, var(--primary-color, #8b6179) 0%, var(--secondary-color, #ffbd59) 100%) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 0 !important;
}

.btn-hero:hover::before {
    left: 0 !important;
}

.btn-hero:hover {
    color: var(--bg-white, #ffffff) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2) !important;
    text-decoration: none !important;
}

.btn-hero span {
    position: relative !important;
    z-index: 1 !important;
}

/* ==================== Owl Carousel Customization ==================== */
.home-slider.owl-carousel .owl-dots {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    z-index: 1000 !important;
}

.home-slider.owl-carousel .owl-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    position: relative !important;
    margin: 0 !important;
}

.home-slider.owl-carousel .owl-dot.active {
    background: var(--bg-white, #ffffff) !important;
    border-color: var(--bg-white, #ffffff) !important;
    transform: scale(1.2) !important;
}

.home-slider.owl-carousel .owl-dot:hover {
    background: rgba(255, 255, 255, 0.7) !important;
    transform: scale(1.1) !important;
}

.home-slider.owl-carousel .owl-dot span {
    display: none !important;
}

/* ==================== Animations ==================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1199px) {
    .hero-custom {
        height: 75vh !important;
        min-height: 550px !important;
    }
    
    .home-slider .banner-slide-item {
        height: 75vh !important;
        min-height: 550px !important;
    }
    
    .banner-content .title {
        font-size: 4rem !important;
    }
    
    .banner-content .subtitle {
        font-size: 1.3rem !important;
    }
    
    .banner-content p {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 991px) {
    .hero-custom {
        height: 70vh !important;
        min-height: 500px !important;
    }
    
    .home-slider .banner-slide-item {
        height: 70vh !important;
        min-height: 500px !important;
    }
    
    .banner-content {
        max-width: 100% !important;
        padding: 1.5rem !important;
        text-align: center !important;
    }
    
    .banner-content .title {
        font-size: 3.5rem !important;
    }
    
    .banner-content .subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .banner-content p {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .btn-hero {
        padding: 16px 35px !important;
        font-size: 1rem !important;
    }
    
    .nextBtn, .prevBtn {
        width: 50px !important;
        height: 50px !important;
    }
    
    .nextBtn {
        right: 20px !important;
    }
    
    .prevBtn {
        left: 20px !important;
    }
}

@media (max-width: 767px) {
    .hero-custom {
        height: 65vh !important;
        min-height: 450px !important;
    }
    
    .home-slider .banner-slide-item {
        height: 65vh !important;
        min-height: 450px !important;
    }
    
    .banner-content {
        padding: 1rem !important;
    }
    
    .banner-content .title {
        font-size: 2.8rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .banner-content .subtitle {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        letter-spacing: 1px !important;
    }
    
    .banner-content p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .btn-hero {
        padding: 14px 30px !important;
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
    }
    
    .nextBtn, .prevBtn {
        width: 45px !important;
        height: 45px !important;
        opacity: 0.6 !important;
    }
    
    .nextBtn {
        right: 15px !important;
    }
    
    .prevBtn {
        left: 15px !important;
    }
    
    .home-slider.owl-carousel .owl-dots {
        bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .hero-custom {
        height: 60vh !important;
        min-height: 400px !important;
    }
    
    .home-slider .banner-slide-item {
        height: 60vh !important;
        min-height: 400px !important;
    }
    
    .banner-content .title {
        font-size: 2.4rem !important;
    }
    
    .banner-content .subtitle {
        font-size: 0.9rem !important;
    }
    
    .banner-content p {
        font-size: 0.9rem !important;
    }
    
    .btn-hero {
        padding: 12px 25px !important;
        font-size: 0.85rem !important;
    }
}

/* ==================== Performance Optimizations ==================== */
.home-slider .banner-slide-item {
    will-change: transform !important;
}

.banner-content {
    will-change: opacity, transform !important;
}

.btn-hero {
    will-change: transform, box-shadow !important;
}

/* ==================== Accessibility Improvements ==================== */
.nextBtn:focus, .prevBtn:focus {
    outline: 2px solid var(--secondary-color, #ffbd59) !important;
    outline-offset: 2px !important;
}

.btn-hero:focus {
    outline: 2px solid var(--secondary-color, #ffbd59) !important;
    outline-offset: 2px !important;
}

/* ==================== Print Styles ==================== */
@media print {
    .hero-custom {
        height: auto !important;
        min-height: auto !important;
        background: none !important;
        color: black !important;
    }
    
    .nextBtn, .prevBtn, .home-slider.owl-carousel .owl-dots {
        display: none !important;
    }
}