/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-teal);
    border-radius: 2px;
}

.section-header .section-description {
    font-size: 16px;
    color: var(--dark-grey);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* SEO Services Section */
.seo-services {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-grey);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent-teal);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-color));
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-teal);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.service-features li {
    color: var(--dark-grey);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "→";
    color: var(--accent-teal);
    position: absolute;
    left: 0;
}

/* SEO Process Section */
.seo-process {
    padding: 100px 0;
    background: var(--light-neutral);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    border: 1px solid var(--light-grey);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent-teal);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-color));
}

.process-icon i {
    font-size: 32px;
    color: #ffffff;
}

.process-content {
    flex: 1;
}

.process-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.process-card:hover h3 {
    color: var(--accent-teal);
}

.process-content p {
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.process-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.process-features li {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.process-features li:hover {
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-color));
}

/* SEO Tools Section */
.seo-tools {
    padding: 100px 0;
    background: #ffffff;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tool-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--light-grey);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent-teal);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-color));
}

.tool-icon i {
    font-size: 24px;
    color: #ffffff;
}

.tool-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tool-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-list li {
    color: var(--dark-grey);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.tool-list li:before {
    content: "•";
    color: var(--accent-teal);
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* SEO Benefits Section */
.seo-benefits {
    padding: 100px 0;
    background: var(--light-neutral);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid var(--light-grey);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent-teal);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-color));
}

.benefit-icon i {
    font-size: 28px;
    color: #ffffff;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--dark-grey);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid,
    .tools-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .process-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .seo-services,
    .seo-process,
    .seo-tools,
    .seo-benefits {
        padding: 60px 0;
    }

    .services-grid,
    .tools-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .process-features {
        justify-content: center;
    }

    .section-header .section-title {
        font-size: 32px;
    }

    .section-header .section-description {
        font-size: 16px;
    }
}