/* SPK Our Process Section Styles */
.spk-process-section {
    padding: 100px 0;
    font-family: 'Libre Franklin', sans-serif;
    position: relative;
    /* Use a warm, light background to match the reference feel */
    background-color: #fff9f0;
    overflow: hidden;
}

.spk-process-bg-curve {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    /* Simulate the orange winding path with a large SVG or border-radius trick */
}

/* Container */
.spk-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.spk-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.spk-process-subtitle {
    display: inline-block;
    color: #71b100;
    /* Use a warm secondary orange like reference */
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.spk-process-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 3rem;
    color: #222;
    margin: 0;
}

.spk-process-main-title-block {
    text-align: center;
    margin-bottom: 60px;
}

.spk-process-big-number {
    font-size: 8rem;
    line-height: 0.8;
    color: #71b100;
    font-weight: 800;
    display: block;
}

.spk-process-big-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #71b100;
    text-transform: uppercase;
    line-height: 1;
}

.spk-process-big-subtext {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Process Loop Design */
.spk-process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 40px 0;
}

/* Connecting Line (Simulated winding) */
.spk-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 100%;
    background: #71b100;
    transform: translateX(-50%);
    border-radius: 6px;
    z-index: -1;
    opacity: 0.3;
}

/* Individual Step */
.spk-process-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

/* Alternating logic */
.spk-process-step:nth-child(odd) {
    flex-direction: row;
}

.spk-process-step:nth-child(even) {
    flex-direction: row-reverse;
}

/* Step Content Box */
.spk-process-card {
    width: 45%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 5px solid #71b100;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.spk-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Step Number Badge */
.spk-process-number {
    position: absolute;
    top: -25px;
    left: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: #71b100;
    background: #fff;
    padding: 0 10px;
    border-radius: 8px;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Icon (Center) */
.spk-process-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 4px solid #71b100;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 10px #fff9f0;
    /* Match background aimed at spacing */
}

.spk-process-icon {
    font-size: 1.8rem;
    color: #222;
}

/* Text Styling */
.spk-process-step-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.5rem;
    color: #222;
    margin: 15px 0 15px 0;
    line-height: 1.3;
}

.spk-process-step-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .spk-process-timeline::before {
        left: 30px;
        transform: none;
    }

    .spk-process-timeline {
        gap: 60px;
    }

    .spk-process-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
        /* Space for the line and icon */
        position: relative;
    }

    .spk-process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }

    .spk-process-card {
        width: 100%;
        margin-top: 20px;
    }

    .spk-process-icon-wrapper {
        left: 30px;
        transform: translateX(-50%);
        top: 0;
    }
}