/* =========================================================
   SERVICES PAGE STYLES
========================================================= */

.services-page-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
    color: white;
}

.services-page-hero .section-label {
    margin-bottom: 18px;
    color: #bfdbfe;
}

.services-page-hero h1 {
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 900;
}

.services-page-hero h1 span {
    display: block;
}

.services-page-hero p {
    max-width: 700px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.87);
    font-size: 17px;
}

.services-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.services-hero-buttons .btn-outline-light {
    color: white;
    border-color: rgba(255,255,255,0.75);
}

.services-hero-buttons .btn-outline-light:hover,
.services-hero-buttons .btn-outline-light:focus {
    background: white;
    color: #1d4ed8;
}

.services-intro,
.technology-expertise,
.service-process,
.services-cta {
    padding: 90px 0;
}

.technology-expertise .technology-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.technology-expertise .technology-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 18px;
    background: #f8fafc;
    border-radius: 18px;
    color: #334155;
    font-weight: 700;
}

.technology-expertise .technology-item i {
    font-size: 20px;
    color: #2563eb;
}

.technology-visual {
    position: relative;
    min-height: 420px;
    border-radius: 30px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.14), transparent 28%),
                radial-gradient(circle at bottom right, rgba(124,58,237,0.12), transparent 32%);
    overflow: hidden;
}

.tech-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.18);
}

.orbit-one {
    width: 260px;
    height: 260px;
    top: 30px;
    left: 20px;
}

.orbit-two {
    width: 210px;
    height: 210px;
    bottom: 40px;
    right: 40px;
}

.orbit-three {
    width: 180px;
    height: 180px;
    top: 90px;
    right: -20px;
}

.technology-center {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 240px;
    height: 240px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background: rgba(255,255,255,0.96);
    text-align: center;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.technology-center i {
    font-size: 42px;
    color: #2563eb;
}

.technology-center strong {
    font-size: 28px;
    margin-top: 14px;
    display: block;
    color: #0f172a;
}

.technology-center span {
    display: block;
    color: #475569;
    margin-top: 4px;
    font-weight: 600;
}

.tech-floating {
    position: absolute;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(255,255,255,0.95);
    color: #2563eb;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.tech-one { top: 20px; right: 120px; }
.tech-two { top: 160px; left: 40px; }
.tech-three { bottom: 80px; left: 100px; }
.tech-four { bottom: 30px; right: 80px; }

.process-card,
.services-cta-box {
    padding: 30px;
    background: white;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.08);
}

.process-card {
    min-height: 320px;
    text-align: center;
}

.process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 24px;
    font-weight: 900;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: #eef2ff;
    color: #2563eb;
    font-size: 26px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.process-card p {
    color: #475569;
    line-height: 1.8;
}

.services-cta {
    background: #f8fafc;
}

.services-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services-cta-box h2 {
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 900;
}

.services-cta-box p {
    margin-top: 20px;
    color: #475569;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .services-hero-buttons,
    .services-cta-box {
        flex-direction: column;
        align-items: stretch;
    }

    .technology-expertise .technology-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .services-page-hero {
        padding: 80px 0;
    }

    .services-intro,
    .technology-expertise,
    .service-process,
    .services-cta {
        padding: 60px 0;
    }

    .technology-visual {
        min-height: 320px;
    }

    .services-cta-box {
        padding: 24px;
    }
}
