/* Modern Showcase Section Styles with Teal-Purple Theme */
:root {
    --primary-teal: #3fb0ac;
    --secondary-purple: #6a4c93;
    --accent-light: #8be9fd;
    --text-light: #f8f9fa;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Showcase Section */
.showcase {
    position: relative;
    padding: 100px 5%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-teal));
    min-height: 80vh;
}

/* Particles Container */
#showcase-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Showcase Container */
.showcase-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Glass Pill Effect */
.glass-pill {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--glass-shadow);
}

/* Section Title */
.showcase .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.showcase .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.showcase .section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--accent-light);
    left: 25%;
    bottom: -10px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 233, 253, 0.5);
}

.showcase .section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    gap: 25px;
    padding: 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Showcase Item */
.showcase-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Showcase Content */
.showcase-content {
    padding: 25px;
}

/* Service Header */
.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.showcase-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(139, 233, 253, 0.25);
}

.showcase-icon i {
    font-size: 24px;
    color: var(--text-dark);
}

.service-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.service-tag {
    display: inline-block;
    font-size: 13px;
    color: var(--accent-light);
    font-weight: 500;
}

/* Service Features */
.service-features {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--accent-light);
    font-size: 16px;
}

.feature-item span {
    color: var(--text-light);
    font-size: 14px;
}

/* Showcase Button */
.showcase-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--accent-light);
    color: var(--text-dark);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 233, 253, 0.2);
}

.showcase-btn:hover {
    background: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 233, 253, 0.3);
}

.showcase-btn i {
    transition: transform 0.3s ease;
}

.showcase-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase {
        padding: 80px 5% 60px;
    }
    
    .showcase .section-title h2 {
        font-size: 2.2rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .showcase .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-title h3 {
        font-size: 1.3rem;
    }
}
