/* static/style/our_process.css */

/* Hero Section (Reusing structure from other pages) */
.process-hero {
    background-color: var(--color-primary-light);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: var(--header-height); /* Push content down past fixed header */
}

.process-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.process-hero h1 {
    font-family: var(--font-heading-primary);
    color: var(--color-sapphire-blue);
    font-size: 3em;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.process-hero .subtitle {
    font-family: var(--font-body);
    font-size: 1.2em;
    color: var(--color-text-fade-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* Process Intro Section */
.process-intro {
    padding: var(--spacing-lg) 0;
    max-width: 900px;
    margin: var(--spacing-lg) auto;
    text-align: center;
}

.process-intro p {
    font-family: var(--font-body);
    font-size: 1.1em;
    color: var(--color-text-dark);
    line-height: 1.7;
}

/* Process Steps Section */
.process-steps {
    padding: var(--spacing-xl) 0;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl); /* Space between steps */
    background-color: var(--color-secondary-light);
    padding: var(--spacing-lg);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.process-step:last-child {
    margin-bottom: 0;
}

.process-step .step-icon {
    flex-shrink: 0; /* Prevent icon from shrinking */
    width: 100px; /* Fixed width for icon container */
    height: 100px; /* Fixed height for icon container */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-sapphire-blue); /* Icon background */
    border-radius: 50%; /* Circular icon background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.process-step .step-icon img {
    width: 60px; /* Size of the actual icon image */
    height: 60px;
    filter: invert(100%) brightness(1.5); /* Make icons white/bright */
}

.process-step .step-content {
    flex-grow: 1; /* Allow content to take up remaining space */
}

.process-step h2 {
    font-family: var(--font-heading-secondary);
    color: var(--color-sapphire-blue);
    font-size: 1.8em;
    margin-bottom: var(--spacing-sm);
    text-shadow: none;
    line-height: 1.3;
}

.process-step p {
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--color-text-dark);
    line-height: 1.7;
}

/* Inverse layout for alternating steps */
.process-step.inverse-layout {
    flex-direction: row-reverse; /* Swap order of icon and content */
}

/* Call to Action Section (reusing styles) */
.call-to-action {
    padding: var(--spacing-xl) var(--spacing-md);
    background-color: var(--color-primary-light);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: var(--spacing-xl);
}

.call-to-action h2 {
    font-family: var(--font-heading-primary);
    color: var(--color-text-dark);
    font-size: 2.2em;
    margin-bottom: var(--spacing-md);
    text-shadow: none;
}

.call-to-action p {
    font-family: var(--font-body);
    font-size: 1.1em;
    color: var(--color-text-fade-dark);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.call-to-action .btn {
    margin: 0 var(--spacing-sm);
}

/* Responsive Adjustments for Our Process Page */
@media (max-width: 1024px) {
    .process-hero h1 {
        font-size: 2.6em;
    }
    .process-hero .subtitle {
        font-size: 1.1em;
    }
    .process-intro {
        padding: var(--spacing-md) var(--spacing-md);
    }
    .process-intro p {
        font-size: 1em;
    }
    .process-step {
        flex-direction: column; /* Stack icon and content vertically */
        text-align: center;
        margin-bottom: var(--spacing-lg);
        padding: var(--spacing-md);
    }
    .process-step.inverse-layout {
        flex-direction: column; /* Consistent stacking for inverse layout */
    }
    .process-step .step-icon {
        margin-bottom: var(--spacing-md); /* Space between icon and content when stacked */
        width: 80px; /* Slightly smaller icons on tablet */
        height: 80px;
    }
    .process-step .step-icon img {
        width: 50px;
        height: 50px;
    }
    .process-step h2 {
        font-size: 1.6em;
        margin-bottom: var(--spacing-sm);
    }
    .process-step p {
        font-size: 0.95em;
    }
    .call-to-action h2 {
        font-size: 2em;
    }
    .call-to-action p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .process-hero {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    .process-hero h1 {
        font-size: 2.2em;
    }
    .process-hero .subtitle {
        font-size: 1em;
    }
    .process-steps {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    .process-step {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    .process-step .step-icon {
        width: 70px; /* Smaller icons on mobile */
        height: 70px;
    }
    .process-step .step-icon img {
        width: 45px;
        height: 45px;
    }
    .process-step h2 {
        font-size: 1.4em;
    }
    .process-step p {
        font-size: 0.9em;
    }
    .call-to-action .btn {
        display: block; /* Stack buttons vertically */
        width: calc(100% - var(--spacing-md) * 2);
        margin: var(--spacing-sm) auto;
    }
}

@media (max-width: 480px) {
    .process-hero h1 {
        font-size: 1.8em;
    }
    .process-intro p {
        font-size: 0.9em;
    }
    .process-step h2 {
        font-size: 1.2em;
    }
    .process-step p {
        font-size: 0.85em;
    }
    .process-step .step-icon {
        width: 60px;
        height: 60px;
    }
    .process-step .step-icon img {
        width: 40px;
        height: 40px;
    }
    .call-to-action h2 {
        font-size: 1.6em;
    }
}