/*
=====================
    SERVICES HERO
=====================
*/
.services-hero {
    text-align: center;
    padding: 100px 40px 60px;
    max-width: 800px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(0, 110, 255, 0.08);
}

.services-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #006EFF;
    margin-bottom: 14px;
}

.services-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/*
====================
    SERVICE ROWS
====================
*/
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-row-reverse {
    direction: rtl;
}

.service-row-reverse > * {
    direction: ltr;
}

/*
=======================
    SERVICE CONTENT
=======================
*/
.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 110, 255, 0.08);
    border: 1px solid rgba(0, 110, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006EFF;
    margin-bottom: 20px;
}

.service-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #006EFF;
    margin-bottom: 10px;
}

.service-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 18px;
    line-height: 1.2;
}

.service-content p {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #333;
    font-weight: 500;
}

.service-points li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #006EFF;
    color: #FFF;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #006EFF;
    color: #FFF;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.service-btn-primary:hover {
    background: #0051CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 110, 255, 0.3);
}

.service-btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(0, 110, 255, 0.3);
    color: #006EFF;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.service-btn-outline:hover {
    border-color: #006EFF;
    background: rgba(0, 110, 255, 0.06);
    transform: translateY(-2px);
}

/*
======================
    SERVICE VISUAL
======================
*/
.service-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-inner {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 110, 255, 0.12);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/*
==================
    DEMO LINKS
==================
*/
.service-demo-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    display: block;
}

.service-demo-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-demo-links a {
    display: block;
    padding: 14px 18px;
    background: rgba(0, 110, 255, 0.05);
    border: 1px solid rgba(0, 110, 255, 0.12);
    border-radius: 8px;
    color: #006EFF;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-demo-links a:hover {
    background: rgba(0, 110, 255, 0.1);
    border-color: #006EFF;
    transform: translateX(4px);
}

/*
==================
    CODE BLOCK
==================
*/
.service-visual-code {
    background: #0D1117;
    border-color: rgba(255, 255, 255, 0.08);
}

.service-visual-code pre {
    margin: 0;
    overflow-x: auto;
}

.service-visual-code code {
    font-family: "Consolas", "Monaco", monospace;
    font-size: 0.88rem;
    line-height: 1.8;
    white-space: pre;
}

.code-comment {
    color: #6A9955;
}

.code-keyword {
    color: #569CD6;
}

.code-fn {
    color: #DCDCAA;
}

.code-param {
    color: #9CDCFE;
}

.code-bool {
    color: #CE9178;
}

/*
====================
    CHECKLIST
====================
*/
.service-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.service-check-item .check {
    width: 28px;
    height: 28px;
    background: #006EFF;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/*
=====================
    COMPARE TABLE
=====================
*/
.service-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.compare-col {
    border-radius: 10px;
    padding: 20px;
}

.compare-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compare-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.compare-no {
    background: rgba(198, 40, 40, 0.05);
    border: 1px solid rgba(198, 40, 40, 0.15);
}

.compare-no h4 {
    color: #C62828;
}

.compare-no ul {
    color: #888;
}

.compare-yes {
    background: rgba(0, 110, 255, 0.05);
    border: 1px solid rgba(0, 110, 255, 0.15);
}

.compare-yes h4 {
    color: #006EFF;
}

.compare-yes ul {
    color: #333;
    font-weight: 500;
}

.compare-note {
    margin-top: 18px;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 110, 255, 0.1);
}

.compare-note strong {
    color: #006EFF;
}

/*
======================
    IN DEVELOPMENT
======================
*/
.services-indev {
    background: rgba(0, 110, 255, 0.03);
    border-top: 1px solid rgba(0, 110, 255, 0.08);
    border-bottom: 1px solid rgba(0, 110, 255, 0.08);
    padding: 90px 40px;
}

.services-indev-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-indev-inner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 10px;
}

.services-indev-inner > p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 48px;
}

.indev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.indev-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 110, 255, 0.12);
    border-radius: 14px;
    padding: 32px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.indev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 110, 255, 0.1);
    border-color: rgba(0, 110, 255, 0.25);
}

.indev-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 110, 255, 0.1);
    color: #006EFF;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 20px;
}

.indev-icon {
    color: #006EFF;
    margin-bottom: 14px;
}

.indev-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 10px;
}

.indev-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/*
=================
    CTA STRIP
=================
*/
.services-cta {
    padding: 90px 40px;
    text-align: center;
}

.services-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.services-cta-inner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 12px;
}

.services-cta-inner p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.services-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-btn-outline-dark {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.service-btn-outline-dark:hover {
    border-color: #006EFF;
    color: #006EFF;
    transform: translateY(-2px);
}

/*
======================================
    RESPONSIVE CODE (SMALL MOBILE)
======================================
*/
@media (max-width: 480px) {
    .services-hero {
        padding: 70px 20px 40px;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
        direction: ltr;
    }

    .service-row-reverse {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-visual-inner {
        padding: 24px;
    }

    .service-compare {
        grid-template-columns: 1fr;
    }

    .services-indev {
        padding: 60px 20px;
    }

    .indev-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        padding: 60px 20px;
    }

    .services-cta-inner h2 {
        font-size: 1.7rem;
    }

    .services-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/*
================================
    RESPONSIVE CODE (MOBILE)
================================
*/
@media (max-width: 768px) {
    .services-hero {
        padding: 80px 24px 48px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 70px 24px;
        direction: ltr;
    }

    .service-row-reverse {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 1.7rem;
    }

    .services-indev {
        padding: 70px 24px;
    }

    .indev-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .services-cta {
        padding: 70px 24px;
    }
}

/*
================================
    RESPONSIVE CODE (TABLET)
================================
*/
@media (min-width: 769px) and (max-width: 1024px) {
    .service-row {
        gap: 50px;
        padding: 70px 30px;
    }

    .service-content h2 {
        font-size: 1.7rem;
    }

    .services-indev {
        padding: 70px 30px;
    }

    .services-cta {
        padding: 70px 30px;
    }
}