/* Elegant Hero Carousel Styles - Enhanced */
.elegant-hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 750px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

@media (max-width: 768px) {
    .elegant-hero-carousel {
        height: 60vh;
        min-height: 450px;
    }
}

.elegant-hero-carousel .elegantHeroSwiper {
    width: 100%;
    height: 100%;
}

.elegant-hero-carousel .elegant-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.elegant-hero-carousel .elegant-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.elegant-hero-carousel .elegant-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elegant-hero-carousel .elegant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(228, 3, 44, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.elegant-hero-carousel .elegant-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.elegant-hero-carousel .elegant-text-wrapper {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 1;
    pointer-events: auto;
}

.elegant-hero-carousel .elegant-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(228, 3, 44, 0.3);
    line-height: 1.15;
    opacity: 1;
    visibility: visible;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 992px) {
    .elegant-hero-carousel .elegant-title {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .elegant-hero-carousel .elegant-title {
        margin-bottom: 1rem;
    }
}

.elegant-hero-carousel .elegant-button-wrapper {
    margin-top: 1rem;
}

.elegant-hero-carousel .elegant-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #e4032c 0%, #c41230 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(228, 3, 44, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
    visibility: visible;
    position: relative;
    overflow: hidden;
}

.elegant-hero-carousel .elegant-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.elegant-hero-carousel .elegant-btn:hover::before {
    left: 100%;
}

.elegant-hero-carousel .elegant-btn:hover {
    background: linear-gradient(135deg, #c41230 0%, #a00f26 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(228, 3, 44, 0.5), 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.elegant-hero-carousel .elegant-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.elegant-hero-carousel .elegant-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 576px) {
    .elegant-hero-carousel .elegant-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Navigation Buttons - Enhanced */
.elegant-hero-carousel .elegant-nav {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
}

.elegant-hero-carousel .elegant-nav:hover {
    background: linear-gradient(135deg, #e4032c 0%, #c41230 100%);
    border-color: rgba(228, 3, 44, 0.5);
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(228, 3, 44, 0.4);
}

.elegant-hero-carousel .elegant-nav::after {
    display: none;
}

.elegant-hero-carousel .elegant-nav i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .elegant-hero-carousel .elegant-nav {
        width: 40px;
        height: 40px;
    }
    
    .elegant-hero-carousel .elegant-nav i {
        font-size: 1.2rem;
    }
}

.elegant-hero-carousel .swiper-button-prev {
    left: 20px;
}

.elegant-hero-carousel .swiper-button-next {
    right: 20px;
}

/* Pagination Dots - Enhanced */
.elegant-hero-carousel .elegant-dots {
    bottom: 35px !important;
    z-index: 20;
}

.elegant-hero-carousel .elegant-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.elegant-hero-carousel .elegant-dots .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #e4032c 0%, #c41230 100%);
    width: 35px;
    border-radius: 8px;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(228, 3, 44, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
