/* ========================================
   Client Transformation Stories Section
   ======================================== */

.transformations-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111827 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.transformations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.transformations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin: 80px 0;
}

.transformation-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.5) 0%, rgba(17, 24, 39, 0.8) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.transformation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.transformation-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.transformation-card:hover::before {
    opacity: 1;
}

.transformation-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.transformation-card:nth-child(even) .transformation-video {
    order: 2;
}

.transformation-card:nth-child(even) .transformation-content {
    order: 1;
}

.transformation-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
    transition: all 0.3s ease;
}

.video-placeholder p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.transformation-card:hover .video-placeholder i {
    transform: scale(1.1);
    color: var(--primary-light);
}

.transformation-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.transformation-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-badge {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.5px;
}

.transformation-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin: 0;
}

.transformation-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-300);
    margin: 0;
}

.transformation-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    margin-top: auto;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-info strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.client-info span {
    font-size: 14px;
    color: var(--gray-400);
}

.service-badge {
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
}

.transformations-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
}

.transformations-cta h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 30px 0;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-note {
    margin-top: 20px;
    font-size: 15px;
    color: var(--gray-400);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .transformation-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .transformation-card:nth-child(even) .transformation-video {
        order: 1;
    }
    
    .transformation-card:nth-child(even) .transformation-content {
        order: 2;
    }
    
    .transformation-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .transformations-section {
        padding: 80px 0;
    }
    
    .transformations-grid {
        gap: 40px;
        margin: 60px 0;
    }
    
    .transformation-card {
        padding: 30px;
    }
    
    .transformation-title {
        font-size: 24px;
    }
    
    .transformation-description {
        font-size: 16px;
    }
    
    .transformations-cta {
        padding: 40px 30px;
    }
    
    .transformations-cta h3 {
        font-size: 28px;
    }
    
    .transformation-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
