/* ==================== SHOWCASE SLIDER SECTION ==================== */
.showcase-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        var(--primary-white) 0%,
        var(--light-gray) 50%,
        var(--primary-white) 100%
    );
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-magenta);
}

.showcase-header {
    /* text-align and margin-bottom now handled by Bootstrap classes */
}

.showcase-badge {
    /* display, align-items, gap, padding, margin-bottom now handled by Bootstrap classes */
    background: rgba(255, 0, 162, 0.1);
    border: 1px solid rgba(255, 0, 162, 0.2);
    color: var(--magenta);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.showcase-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showcase-title .text-gradient {
    background: var(--gradient-magenta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== SWIPER COVERFLOW SLIDER ==================== */
.showcase-slider-wrapper {
    position: relative;
    padding: 2rem 0 4rem;
}

.showcase-swiper {
    width: 100%;
    padding: 3rem 0 5rem;
    overflow: visible;
}

/* Individual Slide */
.showcase-slide {
    width: 400px;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: var(--charcoal);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.showcase-slide:active {
    cursor: grabbing;
}

.showcase-slide:hover {
    box-shadow: 
        0 30px 60px rgba(255, 0, 162, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 2px var(--magenta);
}

/* Slide Image */
.showcase-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-slide:hover .showcase-slide-image {
    transform: scale(1.08);
}

/* Slide Overlay */
.showcase-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.9) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-slide:hover .showcase-slide-overlay {
    opacity: 1;
}

/* Slide Content */
.showcase-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.showcase-slide:hover .showcase-slide-content {
    transform: translateY(0);
}

.showcase-slide-category {
    display: inline-block;
    background: var(--gradient-magenta);
    color: var(--primary-white);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.showcase-slide-title {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.showcase-slide-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ==================== SWIPER NAVIGATION ==================== */
.showcase-swiper .swiper-button-prev,
.showcase-swiper .swiper-button-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.showcase-swiper .swiper-button-prev::after,
.showcase-swiper .swiper-button-next::after {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.showcase-swiper .swiper-button-prev:hover,
.showcase-swiper .swiper-button-next:hover {
    background: var(--gradient-magenta);
    border-color: var(--magenta);
    transform: scale(1.1);
    box-shadow: 
        0 12px 40px rgba(255, 0, 162, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.1);
}

.showcase-swiper .swiper-button-prev:hover::after,
.showcase-swiper .swiper-button-next:hover::after {
    color: var(--primary-white);
}

.showcase-swiper .swiper-button-prev {
    left: 2rem;
}

.showcase-swiper .swiper-button-next {
    right: 2rem;
}

/* ==================== SWIPER PAGINATION ==================== */
.showcase-swiper .swiper-pagination {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.showcase-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border-light);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.showcase-swiper .swiper-pagination-bullet:hover {
    background: var(--magenta);
    transform: scale(1.2);
}

.showcase-swiper .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 20px;
    background: var(--gradient-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 162, 0.5);
}

/* ==================== PROGRESS BAR ==================== */
.showcase-progress {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    display: none; /* Activated by JS if autoplay */
}

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

/* ==================== FEATURED WORKS SECTION ==================== */
.featured-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.featured-header {
    /* text-align and margin-bottom now handled by Bootstrap classes */
    position: relative;
    z-index: 1;
}

.featured-badge {
    /* display, align-items, gap, padding, margin-bottom now handled by Bootstrap classes */
    background: rgba(255, 0, 162, 0.15);
    border: 1px solid rgba(255, 0, 162, 0.3);
    color: var(--magenta-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.featured-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.featured-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Featured Swiper */
.featured-swiper {
    padding: 2rem 0 4rem;
}

.featured-slide {
    width: 320px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.featured-slide:hover {
    border-color: var(--magenta);
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(255, 0, 162, 0.25),
        0 0 0 1px var(--magenta);
}

.featured-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-slide:hover .featured-slide-image {
    transform: scale(1.05);
}

.featured-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.featured-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.featured-slide-title {
    color: var(--primary-white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.featured-slide-category {
    color: var(--magenta-light);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Featured Navigation */
.featured-swiper .swiper-button-prev,
.featured-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.featured-swiper .swiper-button-prev::after,
.featured-swiper .swiper-button-next::after {
    font-size: 1rem;
    color: var(--primary-white);
}

.featured-swiper .swiper-button-prev:hover,
.featured-swiper .swiper-button-next:hover {
    background: var(--gradient-magenta);
    border-color: var(--magenta);
}

.featured-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.featured-swiper .swiper-pagination-bullet-active {
    background: var(--magenta);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .showcase-slide {
        width: 350px;
        height: 450px;
    }
    
    .showcase-swiper .swiper-button-prev,
    .showcase-swiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 992px) {
    .showcase-section,
    .featured-section {
        padding: 4rem 0;
    }
    
    .showcase-slide {
        width: 300px;
        height: 400px;
    }
    
    .featured-slide {
        width: 280px;
        height: 380px;
    }
    
    .showcase-swiper .swiper-button-prev,
    .showcase-swiper .swiper-button-next {
        display: none;
    }
}

@media (max-width: 768px) {
    /* margin-bottom now handled by Bootstrap classes */
    
    .showcase-slide {
        width: 280px;
        height: 380px;
    }
    
    .showcase-slide-content {
        padding: 1.5rem;
    }
    
    .showcase-slide-title {
        font-size: 1.2rem;
    }
    
    .featured-slide {
        width: 260px;
        height: 350px;
    }
    
    /* Always show content on mobile */
    .showcase-slide-overlay {
        opacity: 1;
    }
    
    .showcase-slide-content {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .showcase-section,
    .featured-section {
        padding: 3rem 0;
    }
    
    .showcase-slide {
        width: 260px;
        height: 340px;
    }
    
    .showcase-slide-content {
        padding: 1.25rem;
    }
    
    .showcase-slide-title {
        font-size: 1.1rem;
    }
    
    .showcase-slide-desc {
        font-size: 0.85rem;
    }
    
    .featured-slide {
        width: 240px;
        height: 320px;
    }
    
    /* Hide excessive pagination dots on mobile */
    .featured-swiper .swiper-pagination {
        display: none;
    }
    
    /* Make featured section title smaller */
    .featured-title {
        font-size: 1.5rem;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    .showcase-section,
    .featured-section {
        padding: 2rem 0;
    }
    
    .featured-slide {
        width: 220px;
        height: 300px;
    }
    
    .featured-slide-title {
        font-size: 1rem;
    }
    
    .featured-slide-category {
        font-size: 0.75rem;
    }
    
    .featured-title {
        font-size: 1.35rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 162, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 162, 0.6);
    }
}

.showcase-swiper .swiper-slide-active {
    animation: pulse-glow 3s ease-in-out infinite;
}
