/* ============================================
   Get Started Page Styles
   ============================================ */

/* Hero Section */
.get-started-hero {
    background-image: url('/images/Getting-Started.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #5B21B6;
    color: white;
    padding: var(--spacing-80) 0;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-started-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.6) 0%, rgba(124, 58, 237, 0.6) 100%);
    z-index: 1;
}

.get-started-hero .container {
    position: relative;
    z-index: 2;
}

.get-started-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--spacing-30);
}

.get-started-hero p {
    font-size: var(--font-size-large);
    opacity: 0;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* Animated Title */
.animated-title {
    display: block;
    overflow: hidden;
}

.animated-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.6s ease forwards;
    margin-right: 0.3em;
}

.animated-title span:last-child {
    margin-right: 0;
}

.animated-title span:nth-child(1) { animation-delay: 0.1s; }
.animated-title span:nth-child(2) { animation-delay: 0.2s; }
.animated-title span:nth-child(3) { animation-delay: 0.3s; }
.animated-title span:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 0.9;
    }
}

/* Steps Section */
.steps-section {
    padding: var(--spacing-80) 0;
    background: #f9fafb;
}

/* Timeline Container */
.steps-timeline {
    position: relative;
    padding-left: 80px;
}

/* Timeline - Background Track */
.steps-timeline::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 40px;
    bottom: 40px;
    width: 4px;
    background: #e5e7eb;
    border-radius: 4px;
}

/* Timeline - Animated Progress */
.timeline-progress {
    position: absolute;
    left: 39px;
    top: 40px;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--color-vivid-purple) 0%, var(--color-cyan-blue) 100%);
    border-radius: 4px;
    z-index: 1;
    transition: height 0.1s ease-out;
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: var(--radius-large);
    padding: var(--spacing-60);
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: var(--spacing-50);
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Step Number Circle */
.step-number {
    background: linear-gradient(135deg, var(--color-vivid-purple) 0%, #7c3aed 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.4);
}

/* Timeline Connector */
.step-connector {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100px;
    position: relative;
    margin-left: -80px;
    padding-left: 80px;
}

/* Connector Outer Ring */
.step-connector::before {
    content: '';
    position: absolute;
    left: 26px;
    width: 30px;
    height: 30px;
    background: white;
    border: 4px solid var(--color-vivid-purple);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(91, 33, 182, 0.3);
}

/* Connector Inner Pulsing Dot */
.step-connector::after {
    content: '';
    position: absolute;
    left: 33px;
    width: 16px;
    height: 16px;
    background: var(--color-vivid-purple);
    border-radius: 50%;
    z-index: 3;
    animation: pulseCore 1.5s ease-in-out infinite;
}

/* Pulse Rings */
.pulse-ring {
    position: absolute;
    left: 21px;
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-vivid-purple);
    border-radius: 50%;
    animation: pulseRing 1.5s ease-out infinite;
    z-index: 1;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes pulseCore {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(91, 33, 182, 0.7);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px 5px rgba(91, 33, 182, 0.4);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Stagger Pulse Animations */
.step-connector:nth-child(3)::after { animation-delay: 0s; }
.step-connector:nth-child(5)::after { animation-delay: 0.5s; }
.step-connector:nth-child(7)::after { animation-delay: 1s; }
.step-connector:nth-child(9)::after { animation-delay: 1.5s; }

/* Step Content */
.step-emoji {
    font-size: 64px;
    margin-bottom: var(--spacing-30);
    display: block;
}

.step-content {
    flex: 1;
}

.step-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-gray);
    margin-bottom: var(--spacing-20);
}

.step-content p {
    font-size: var(--font-size-medium);
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: var(--spacing-20);
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-30) 0;
}

.step-content ul li {
    padding: var(--spacing-20) 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: var(--font-size-medium);
    color: #374151;
    display: flex;
    align-items: center;
    gap: var(--spacing-20);
}

.step-content ul li:last-child {
    border-bottom: none;
}

.step-content ul li .emoji {
    font-size: 24px;
}

/* Highlight Box (Yellow) */
.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: var(--spacing-30);
    border-radius: var(--radius-medium);
    margin-top: var(--spacing-30);
}

.highlight-box p {
    color: #92400e !important;
    margin: 0 !important;
    font-weight: 600;
}

/* Success Box (Green) */
.success-box {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-left: 4px solid #22c55e;
    padding: var(--spacing-30);
    border-radius: var(--radius-medium);
    margin-top: var(--spacing-30);
}

.success-box p {
    color: #166534 !important;
    margin: 0 !important;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-cyan-blue) 0%, #0284c7 100%);
    color: white;
    padding: var(--spacing-80) 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--spacing-30);
}

.cta-section p {
    font-size: var(--font-size-large);
    opacity: 0.9;
    margin-bottom: var(--spacing-40);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-30);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: var(--spacing-40) var(--spacing-60);
    font-size: var(--font-size-large);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.btn-white {
    background: white;
    color: var(--color-cyan-blue);
    border: none;
}

.btn-white:hover {
    background: #f0f9ff;
    transform: scale(1.05);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .get-started-hero h1 {
        font-size: 32px;
    }

    .steps-timeline {
        padding-left: 0;
    }

    .steps-timeline::before,
    .timeline-progress {
        display: none;
    }

    .step-card {
        flex-direction: column;
        padding: var(--spacing-40);
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-emoji {
        font-size: 48px;
    }

    .step-content h2 {
        font-size: 22px;
    }

    .step-connector {
        height: 70px;
        margin-left: 0;
        padding-left: 0;
        justify-content: center;
    }

    .step-connector::before {
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 24px;
    }

    .step-connector::after {
        left: 50%;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
    }

    .pulse-ring {
        display: none;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
