/* Activity Vision - Premium Agency Design System V2 */

:root {
    --primary-purple: #d800c3;
    --secondary-purple: #a200ff;
    --deep-dark: #0b0c10;
    --text-gray: #aeb4c6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Common Typography */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-v2 {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Sections */
.premium-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-title-wrapper {
    margin-bottom: 60px;
}

.section-title-wrapper h2 {
    font-size: clamp(32px, 5vw, 45px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Glass Cards */
.design-card-glass {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.design-card-glass:hover {
    border-color: rgba(216, 0, 195, 0.4);
    transform: translateY(-5px);
}

/* Process Cards */
.process-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.process-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(162, 0, 255, 0.12);
    border-color: rgba(162, 0, 255, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-purple), #4a00e0);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(162, 0, 255, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.process-card:hover .step-number {
    transform: rotate(0deg) scale(1.1);
}

/* Buttons */
.premium-btn-v2 {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    cursor: pointer;
}

.premium-btn-v2::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.premium-btn-v2:hover::before {
    left: 100%;
}

/* Floating Animations */
.floating-img {
    animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* GSAP Helper Classes */
.gsap-reveal {
    opacity: 0;
    transform: translateY(40px);
}

.gsap-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.gsap-reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

/* Background Patterns */
.tech-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(216, 0, 195, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
    .premium-section {
        padding: 80px 0;
    }
    .design-card-glass {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .design-card-glass div:first-child {
        padding-right: 0 !important;
        margin-bottom: 30px;
    }
}
