/* =====================================================
   DIY Yard Disposal – Process + CTA Section
   Scoped to avoid theme / Elementor conflicts
===================================================== */

.process-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #ffffff, #f1f5f9);
    position: relative;
}

.process-section .process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------------- Header ---------------- */

.process-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-section .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}

.process-section .section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------------- Grid ---------------- */

.process-section .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* ---------------- Step Cards ---------------- */

.process-section .process-step {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-section .process-step:hover {
    transform: translateY(-12px);
    border-color: #2e7d32;
    box-shadow: 0 30px 60px -12px rgba(46, 125, 50, 0.15);
}

/* Icon */

.process-section .step-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: #f8fafc;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    transition: 0.3s ease;
}

.process-section .process-step:hover .step-icon {
    background: #e8f5e9;
    transform: scale(1.1) rotate(5deg);
}

/* Text */

.process-section .step-title {
    font-size: 1.75rem;
    font-weight: 850;
    color: #1e293b;
    margin-bottom: 15px;
}

.process-section .step-description {
    color: #475569;
    line-height: 1.8;
    font-size: 1.1rem;
}

.process-section .step-description a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.process-section .step-description a:hover {
    border-bottom-color: #2e7d32;
}

/* ---------------- CTA Section ---------------- */

.process-section .cta-section {
    grid-column: 1 / -1;
    margin-top: 50px;
    background: #1e293b;
    padding: 60px 40px;
    border-radius: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Decorative glow */
.process-section .cta-section::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

/* CTA Text */

.process-section .cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}

.process-section .cta-description {
    font-size: 1.3rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 35px;
    position: relative;
}

/* CTA Button */

.process-section .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4ade80;
    color: #064e3b;
    padding: 20px 45px;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-section .cta-button:hover {
    background: #ffffff;
    color: #1b5e20;
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
}

/* ---------------- Mobile Optimization ---------------- */

@media (max-width: 640px) {
    .process-section {
        padding: 70px 0;
    }

    .process-section .section-header {
        margin-bottom: 50px;
    }

    .process-section .cta-section {
        padding: 45px 25px;
        border-radius: 25px;
    }

    .process-section .cta-title {
        font-size: 2rem;
    }

    .process-section .cta-button {
        width: 100%;
    }
}
