/* SEO Services Page Redesign - Career Theme Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

.seo-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* ── Hero ─────────────────────────────────────── */
.seo-hero {
    background: linear-gradient(135deg, #0a1e38 0%, #0f3460 50%, #1a5fa8 100%);
    padding: 45px 0 90px;
    position: relative;
    overflow: hidden;
}

.seo-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -6%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(74, 144, 226, .16) 0%, transparent 68%);
    border-radius: 50%;
}

.seo-hero::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(74, 144, 226, .10) 0%, transparent 68%);
    border-radius: 50%;
}

.seo-hero .hero-eyebrow {
    display: inline-block;
    background: rgba(74, 144, 226, .22);
    border: 1px solid rgba(74, 144, 226, .45);
    color: #7db8f7;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.seo-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 4vw, 44px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}

.seo-hero h1 span {
    color: #7db8f7;
}

.seo-hero p.hero-lead {
    color: rgba(255, 255, 255, .78);
    font-size: 16.5px;
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 32px;
}

.seo-hero .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0f2a4a;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    transition: background .25s, transform .25s;
    margin-right: 15px;
    margin-bottom: 15px;
}

.seo-hero .hero-cta:hover {
    background: #e8f1fc;
    transform: translateY(-2px);
}

.seo-hero .hero-cta svg {
    width: 18px;
    height: 18px;
    fill: #1a5fa8;
}

.seo-hero .hero-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #7db8f7;
}

.seo-hero .hero-cta-outline:hover {
    background: #7db8f7;
    color: #0f2a4a;
}

/* Floating stat pills on hero */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 30px;
    padding: 8px 18px;
    color: rgba(255, 255, 255, .9);
    font-size: 13.5px;
    font-weight: 600;
}

.hero-pill strong {
    color: #7db8f7;
    font-size: 16px;
}

/* ── Content Sections ─────────────────────────── */
.seo-section-light {
    padding: 80px 0;
    background: #f8fafd;
}

.seo-section-white {
    padding: 80px 0;
    background: #ffffff;
}

.section-eyebrow {
    display: inline-block;
    background: #e8f1fc;
    color: #1a5fa8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-title {
    color: #0f2a4a !important; /* Override theme */
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-sub {
    color: #5a6e85 !important;
    font-size: 15.5px;
    line-height: 1.75;
}

/* Service Cards (Adapted from Perk Cards) */
.service-card {
    background: #fff;
    border: 1px solid #e4ecf7;
    border-radius: 18px;
    padding: 30px 26px;
    height: 100%;
    transition: box-shadow .3s, transform .3s;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(15, 42, 74, .1);
    transform: translateY(-5px);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #deeeff, #c2dcf8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .service-icon i {
    font-size: 26px;
    color: #1a5fa8;
}

.service-card h4 {
    color: #0f2a4a !important;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: #6a7f96 !important;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

/* Process Steps / Content Highlight */
.seo-highlight-box {
    background: linear-gradient(135deg, #f0f7ff, #e4f0ff);
    border-left: 4px solid #1a5fa8;
    border-radius: 0 12px 12px 0;
    padding: 24px;
    margin-bottom: 24px;
}

.seo-highlight-box h4 {
    color: #1a4a7a !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.seo-highlight-box p {
    color: #4a5a6e !important;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/* Text Content blocks */
.text-content-box p {
    color: #4a5a6e !important;
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 18px;
}

/* --- FAQ Accordion adapt to Career Theme --- */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    background: #fff;
    border: 1px solid #e4ecf7;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #0f2a4a;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #1a5fa8;
    background: #f8fafd;
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px;
    color: #5a6e85;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .seo-hero h1 {
        font-size: 32px;
    }
    .section-title {
        font-size: 28px;
    }
    .seo-hero {
        padding: 100px 0 60px;
    }
}
