.parallax-banner {
   font-family: 'Montserrat', sans-serif;
    position: relative;
    height: 90vh;
    min-height: 800px;
    overflow: hidden;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

/* Parallax Layers */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    transform: translateY(0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-item.active .parallax-bg {
    transform: translateY(-10%);
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

/* Content Layout */
.parallax-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px;
    color: #ffffff;
    z-index: 2;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    width: 100%;
}

/* Text Content */
.content-text {
    grid-column: 2 / 7;
    position: relative;
}

.text-badge {
    display: inline-block;
    padding: 10px 25px;
    background: #14b8a6;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.text-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.text-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.text-cta {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.carousel-item.active .text-badge,
.carousel-item.active .text-title,
.carousel-item.active .text-description,
.carousel-item.active .text-features,
.carousel-item.active .text-cta {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    padding: 15px 40px;
    background: #14b8a6;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline {
    padding: 15px 40px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

.btn-outline:hover {
    background: #ffffff;
    color: #1f2937;
    transform: translateY(-2px);
}

/* Product Showcase */
.product-showcase {
    grid-column: 8 / 12;
    position: relative;
}




.showcase-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation */
.slider-nav {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-progress {
    flex: 1;
    margin: 0 60px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #14b8a6;
    width: 33.333%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 6s linear;
}

.carousel-item.active .progress-bar {
    transform: scaleX(1);
}

.nav-numbers {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.2rem;
}

.number-current {
    color: #14b8a6;
}

.nav-arrows {
    display: flex;
    gap: 20px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-arrow:hover {
    background: #14b8a6;
    border-color: #14b8a6;
}

/* Responsive Design */
@media (max-width: 1399px) {
    .text-title {
        font-size: 4rem;
    }
}

@media (max-width: 1199px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .content-text,
    .product-showcase {
        grid-column: 1 / -1;
    }
    .text-features {
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .parallax-content {
        padding: 40px;
    }
    .text-title {
        font-size: 3.5rem;
    }
    .slider-nav {
        left: 40px;
        right: 40px;
        bottom: 40px;
    }
    .nav-progress {
        margin: 0 30px;
    }
}

@media (max-width: 767px) {
    .text-title {
        font-size: 3rem;
    }
    .text-features {
        grid-template-columns: 1fr;
    }
    .text-cta {
        flex-direction: column;
    }
    .nav-progress {
        display: none;
    }
}

@media (max-width: 576px) {
    .parallax-content {
        padding: 30px;
    }
    .text-title {
        font-size: 2.5rem;
    }
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
}