/* Workflow Section
#workflow-section {
    background: #0a0a0a;
    padding: 100px 20px;
    color: #fff;
    overflow: hidden;
}

.workflow-section-container {
    max-width: 1400px;
    margin: auto;
}

.workflow-section-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 60px;
}

.workflow-section-carousel {
    display: flex;
    gap: 20px;
    height: 600px;
    position: relative;
}

.workflow-section-card {
    flex: 0 0 180px;
    border-radius: 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
    display: flex;
    align-items: flex-end;
}

.workflow-section-card.active {
    flex: 1;
}

/* Card Themes *
.workflow-section-card.designers {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}
.workflow-section-card.marketers {
    background: linear-gradient(135deg, #a78bfa, #ec4899);
}

.workflow-section-vertical-title {
    writing-mode: vertical-rl;
    font-size: 28px;
    font-weight: 700;
    padding: 30px;
}

.workflow-section-content {
    position: absolute;
    inset: 0;
    padding: 60px;
    display: flex;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
}

.workflow-section-card.active .workflow-section-content {
    opacity: 1;
    pointer-events: all;
}

.workflow-section-card-title {
    font-size: 42px;
    font-weight: 800;
}

.workflow-section-subtitle {
    font-size: 22px;
    margin: 10px 0;
}

.workflow-section-description {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.workflow-section-btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.workflow-section-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.workflow-section-image {
    max-height: 420px;
    border-radius: 20px;
}

/* Arrows *
.workflow-section-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.workflow-section-nav.prev {
    left: -60px;
}
.workflow-section-nav.next {
    right: -60px;
}

.workflow-section-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* Responsive *
@media (max-width: 768px) {
    .workflow-section-carousel {
        flex-direction: column;
        height: auto;
    }

    .workflow-section-card {
        flex: 0 0 120px;
    }

    .workflow-section-card.active {
        flex: 0 0 480px;
    }

    .workflow-section-title {
        font-size: 32px;
    }
} */

/* Base styles */
#workflow-section {
    font-family: "Inter", sans-serif;
    background: #0a0a0a;
    color: #fff;
    padding: 100px 20px;
    min-height: 100vh;
}

.workflow-section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.workflow-section-header {
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.workflow-section-title {
    font-family: "Sora", sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
}

/* Carousel Container */
.workflow-section-carousel {
    display: flex;
    gap: 20px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

/* Cards */
.workflow-section-card {
    flex: 0 0 180px;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: all 0.6s ease;
}

.workflow-section-card.active {
    flex: 1;
    cursor: default;
}

/* Card Backgrounds */
.workflow-section-card.designers {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}
.workflow-section-card.marketers {
    background: linear-gradient(135deg, #a78bfa, #ec4899);
}
.workflow-section-card.filmmakers {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.workflow-section-card.creators {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}
.workflow-section-card.photographers {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Vertical Titles */
.workflow-section-vertical-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 28px;
    padding: 30px;
    color: white;
    transition: opacity 0.3s ease;
}
.workflow-section-card.active .workflow-section-vertical-title {
    opacity: 0;
    pointer-events: none;
}

/* Expanded content */
.workflow-section-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease 0.2s;
}
.workflow-section-card.active .workflow-section-content {
    opacity: 1;
    pointer-events: all;
}

.workflow-section-text {
    flex: 1;
    max-width: 500px;
}
.workflow-section-card-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.workflow-section-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}
.workflow-section-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}
.workflow-section-btn {
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.workflow-section-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.workflow-section-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.workflow-section-image {
    max-width: 100%;
    max-height: 450px;
    border-radius: 20px;
    object-fit: cover;
    animation: floatImage 3s ease-in-out infinite;
}

.workflow-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

/* Navigation */
.workflow-section-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.workflow-section-nav.prev {
    left: -60px;
}
.workflow-section-nav.next {
    right: -60px;
}
.workflow-section-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}
.workflow-section-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes floatImage {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .workflow-section-title {
        font-size: 42px;
    }
    .workflow-section-carousel {
        height: 500px;
    }
    .workflow-section-content {
        padding: 40px;
        flex-direction: column;
        gap: 30px;
    }
    .workflow-section-card-title {
        font-size: 32px;
    }
    .workflow-section-subtitle {
        font-size: 20px;
    }
    .workflow-section-image {
        max-height: 250px;
    }
}
@media (max-width: 768px) {
    .workflow-section-carousel {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    .workflow-section-card {
        flex: 0 0 100px;
        width: 100%;
    }
    .workflow-section-card.active {
        flex: 0 0 500px;
    }
    .workflow-section-vertical-title {
        writing-mode: horizontal-tb;
        font-size: 24px;
        padding: 20px;
    }
    .workflow-section-content {
        padding: 30px;
    }
    .workflow-section-title {
        font-size: 32px;
    }
    .workflow-section-nav {
        display: none;
    }
}
