/**
 * SEO New Design
 * Redesign for Stages section and CTA fix
 */

/* --- Stages Section (2 Columns) --- */
.seo-stages .swlb__works__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* Adjust gap as needed */
}

@media (max-width: 992px) {
    .seo-stages .swlb__works__cards {
        grid-template-columns: 1fr; /* Stack on smaller screens */
    }
}

.seo-stages .swlb__works__card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft premium shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%; /* Make cards equal height */
    display: flex;
    flex-direction: column;
}

.seo-stages .swlb__works__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.seo-stages .swlb__works__number {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe); /* Example premium gradient */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.seo-stages .swlb__works__card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3436;
}

.seo-stages .swlb__works__subtitle {
    font-weight: 600;
    margin-bottom: 10px;
    color: #636e72;
}

.seo-stages .swlb__works__card ul {
    padding-left: 20px;
    margin-bottom: 20px;
    flex-grow: 1; /* Push result to bottom */
}

.seo-stages .swlb__works__card ul li {
    margin-bottom: 8px;
    color: #4b5563;
}

.seo-stages .swlb__works__result {
    font-style: italic;
    color: #6c5ce7;
    font-weight: 500;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* --- CTA Section Fix --- */
.seo-cta {
    position: relative;
    z-index: 10; /* Ensure it stays above other elements if needed */
    background-color: #f9f9f9; /* Ensure it has a background so it doesn't show through */
    padding: 60px 0;
    overflow: hidden; /* Contain any overflowing children */
    margin-bottom: 0; /* Removing negative margins if any caused overlap */
}

/* Fix for potential negative margin on swlb__calendar causing overlap */
.swlb__calendar {
    position: relative;
    z-index: 5;
    background: #fff; /* Ensure distinct background */
    padding-top: 60px; 
}
