/* =========================================
   12. How It Works - Timeline Design
   ========================================= */
.timeline-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Vertical Line */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #f1f5f9;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-step {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

/* Left/Right Positioning */
.timeline-step.left {
    left: 0;
    text-align: right;
}

.timeline-step.right {
    left: 50%;
    text-align: left;
}

/* Icons (The Dots) */
.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    background-color: white;
    border: 4px solid #8c00ff;
    top: 15px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #8c00ff;
    box-shadow: 0 0 0 4px rgba(140, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-step.right .timeline-icon {
    left: -25px;
}

.timeline-step:hover .timeline-icon {
    background-color: #8c00ff;
    color: white;
    transform: scale(1.1);
}

/* Content Box */
.timeline-content {
    padding: 24px;
    background-color: white;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #8c00ff;
}

.timeline-step h3 {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-size: 1.25rem;
}

.timeline-step p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-step.left {
        text-align: left;
    }

    .timeline-icon {
        left: 6px;
    }

    .timeline-step.right {
        left: 0%;
    }

    .timeline-step.right .timeline-icon {
        left: 6px;
    }
}

/* =========================================
   13. Split CTA Section (Help & Order)
   ========================================= */
.cta-split-container {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(to bottom, white 0%, #f8f9fa 100%);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Primary Card (Order) */
.cta-card.primary {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 25px -5px rgba(30, 41, 59, 0.3);
}

.cta-card.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(30, 41, 59, 0.4);
}

.cta-card.primary h3 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    color: white;
}

.cta-card.primary p {
    color: #cbd5e1;
    margin-bottom: 25px;
}

/* Secondary Card (Help) */
.cta-card.secondary {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.cta-card.secondary:hover {
    border-color: #8c00ff;
    transform: translateY(-3px);
}

.cta-card.secondary h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: #1e293b;
}

.cta-card.secondary p {
    color: #64748b;
    margin-bottom: 25px;
}

.cta-video-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #fee2e2;
    color: #ef4444;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 12px;
}

.cta-video-btn:hover {
    background: #fecaca;
    transform: scale(1.05);
}

.cta-contact-link {
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.cta-contact-link:hover {
    color: #8c00ff;
}

.cta-big-btn {
    padding: 16px 40px;
    background: #8c00ff;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(140, 0, 255, 0.3);
}

.cta-big-btn:hover {
    background: #da0a72;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(218, 10, 114, 0.4);
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}