/* ===== SIMPLIFIED CAROUSEL ===== */
.page-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--color-black);
}

.simple-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Base slide styling - all slides are absolute positioned */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Active slide is visible */
.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide content */
.slide-content {
    width: 100%;
    text-align: center;
    padding: 0 var(--spacing-md);
}

/* Main title slide */
.page-title {
    font-size: 3rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--color-gray-lighter);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Client slide - full image background */
.client-slide .slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding-bottom: 60px;
}

.client-tag {
    background: rgba(42, 111, 255, 0.9);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin-top: -75px; /* Moves it up by 50px */
    transform: translateY(-75px); /* Another way to move it up */
}

/* Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

.carousel-dot:hover:not(.active) {
    background: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        height: 400px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .client-tag {
        font-size: 1.2rem;
        padding: 0.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 300px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .client-tag {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }
    
    .client-slide .slide-content {
        padding-bottom: 40px;
    }
}

