/* Showcase Section - AutoAff Style */
.showcase-section {
    padding: 80px 20px 20px;
    background-color: rgba(63, 177, 198, 0.5);
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Showcase Card */
.showcase-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #edf2f7;
    position: relative;
    group: hover;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e0;
}

/* Image Container */
.showcase-image-wrapper {
    position: relative;
    padding-top: 60%; /* Aspect Ratio */
    overflow: hidden;
    background-color: #f7fafc;
}

.showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image {
    transform: scale(1.05);
}

/* Overlay & Button */
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-btn {
    background: white;
    color: #1a202c;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.showcase-card:hover .showcase-btn {
    transform: translateY(0);
}

.showcase-btn:hover {
    background: #f7fafc;
    color: #3182ce;
}

/* Card Content */
.showcase-content {
    padding: 20px;
}

.showcase-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.showcase-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-blue { background: #ebf8ff; color: #3182ce; }
.tag-green { background: #f0fff4; color: #38a169; }
.tag-purple { background: #faf5ff; color: #805ad5; }

.showcase-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.showcase-card-desc {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-section {
        padding: 60px 20px;
    }
}
