/* =========================================================
   SEO SERVICES – PREMIUM SERVICE PAGE (DEVMIXA)
   ========================================================= */

.seo-services {
    --primary: #16a34a;      /* Green – SEO trust & growth */
    --dark: #022c22;
    --text: #334155;
    --muted: #64748b;
    --bg-light: #f0fdf4;
    --border: #dcfce7;
}

/* ---------- GLOBAL ---------- */
.seo-services section {
    padding: 75px 0;
}

.seo-services h1,
.seo-services h2,
.seo-services h3 {
    color: var(--dark);
    letter-spacing: -0.4px;
}

.seo-services h1 {
    font-size: 38px;
}

.seo-services h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.seo-services h3 {
    font-size: 18px;
}

.seo-services p,
.seo-services li {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
}

.seo-services .bg-light {
    background: var(--bg-light);
}

.seo-services .container.narrow {
    max-width: 900px;
}

/* ---------- HERO ---------- */
.seo-services .hero-inner {
    background: linear-gradient(135deg, #022c22, #14532d);
    color: #fff;
    padding: 95px 0;
}

.seo-services .hero-inner h1 {
    color: #fff;
}

.seo-services .hero-subtitle {
    color: #bbf7d0;
    font-size: 18px;
    max-width: 650px;
}

.seo-services .page-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #dcfce7;
    margin-bottom: 16px;
}

/* ---------- BUTTON ---------- */
.seo-services .btn-primary {
    display: inline-block;
    margin-top: 28px;
    background: var(--primary);
    color: #fff;
    padding: 14px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
}

.seo-services .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(22,163,74,.35);
}

/* ---------- FEATURE LIST ---------- */
.seo-services .feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
}

.seo-services .feature-list li {
    padding-left: 30px;
    margin-bottom: 14px;
    position: relative;
}

.seo-services .feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary);
    font-weight: bold;
}

/* ---------- GRID & CARDS ---------- */
.seo-services .grid {
    display: grid;
    gap: 28px;
}

.seo-services .grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.seo-services .card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all .3s ease;
}

.seo-services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(2,44,34,0.08);
}

.seo-services .card h3 {
    margin-bottom: 10px;
}

/* ---------- PROCESS ---------- */
.seo-services .process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.seo-services .process-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    text-align: center;
}

.seo-services .process-step span {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    margin-bottom: 14px;
}

/* ---------- FAQ ---------- */
.seo-services .faq h3 {
    margin-top: 30px;
    font-size: 17px;
}

.seo-services .faq p {
    margin-top: 8px;
    color: var(--muted);
}

/* ---------- CTA ---------- */
.seo-services .cta {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    padding: 85px 30px;
    border-radius: 26px;
    text-align: center;
}

.seo-services .cta h2 {
    color: #fff;
}

.seo-services .cta p {
    color: #dcfce7;
    max-width: 680px;
    margin: 16px auto 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .seo-services .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .seo-services .process {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .seo-services section {
        padding: 55px 0;
    }

    .seo-services .grid-3,
    .seo-services .process {
        grid-template-columns: 1fr;
    }

    .seo-services h1 {
        font-size: 30px;
    }
}
