

/* Premium Carousel Styles */
.premium-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    width: 60%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.carousel-slide.active .slide-image img {
    transform: scale(1);
}

.slide-content {
    width: 40%;
    height: 100%;
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0) 70%);
}

.slide-number {
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 50px;
    right: 50px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.slide-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.5s;
}

.slide-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.7s;
}

.slide-buttons {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.9s;
}

.carousel-slide.active .slide-subtitle,
.carousel-slide.active .slide-title,
.carousel-slide.active .slide-description,
.carousel-slide.active .slide-buttons {
    transform: translateY(0);
    opacity: 1;
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-gold:hover::before {
    left: 0;
}

.btn-gold:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 30px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-outline-light:hover::before {
    left: 0;
}

.btn-outline-light:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.carousel-dots {
    display: flex;
    margin-right: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--secondary);
    transform: scale(1.3);
}

.carousel-arrows {
    display: flex;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-arrow:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--secondary);
    transition: width 0.1s linear;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 10;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.counter-current {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-right: 5px;
}

.counter-separator {
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .slide-image {
        width: 50%;
    }
    
    .slide-content {
        width: 50%;
        padding: 60px 40px;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slide-number {
        font-size: 100px;
        top: 30px;
        right: 30px;
    }
    
    .carousel-nav {
        bottom: 30px;
        right: 30px;
    }
    
    .slide-counter {
        top: 30px;
        left: 30px;
    }
}

@media (max-width: 767px) {
    .carousel-slide {
        flex-direction: column;
    }
    
    .slide-image {
        width: 100%;
        height: 50%;
    }
    
    .slide-image::before {
        background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    }
    
    .slide-content {
        width: 100%;
        height: 50%;
        padding: 40px 30px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .slide-number {
        font-size: 80px;
        top: 20px;
        right: 20px;
    }
    
    .carousel-nav {
        bottom: 20px;
        right: 20px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slide-counter {
        top: 20px;
        left: 20px;
    }
}