/* Service detail page */
.svc-breadcrumb-wrap {
    background: #ffffff;
    padding: .85rem 0;
    border-bottom: 1px solid #C3C3C3;
}
.svc-breadcrumb a { color: #0570AE; text-decoration: none; }
.svc-breadcrumb .active { color: #767B79; }

.svc-detail-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #023B5E 0%, #023B5E 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
    overflow: hidden;
}
.svc-detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .4;
}
.svc-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,33,62,.3) 0%, rgba(6,33,62,.92) 100%);
}
.svc-detail-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.svc-badge-group, .svc-badge-cat {
    font-size: .75rem;
    font-weight: 600;
    padding: .35rem .85rem;
    border-radius: 50px;
}
.svc-badge-group { background: #C3C3C3; color: #023B5E; }
.svc-badge-cat { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.3); }

.svc-detail-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #ffffff;
}
.svc-detail-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}
.svc-detail-excerpt {
    font-size: 1.15rem;
    color: rgba(255,255,255,.9);
    max-width: 640px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.svc-detail-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.btn-svc-primary {
    background: #0570AE;
    color: #ffffff;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all .25s;
    border: none;
}
.btn-svc-primary:hover {
    background: #ffffff;
    color: #023B5E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.btn-svc-outline {
    background: transparent;
    color: #fff;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.6);
    transition: all .25s;
}
.btn-svc-outline:hover {
    background: #fff;
    color: #023B5E;
    border-color: #fff;
}

.svc-trust-bar {
    background: #fff;
    border-bottom: 1px solid #C3C3C3;
    padding: 1.25rem 0;
    margin-top: -1px;
}
.trust-item strong {
    display: block;
    font-size: 1.35rem;
    color: #023B5E;
    font-weight: 800;
}
.trust-item span { font-size: .8rem; color: #767B79; }

.svc-section-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #023B5E;
    margin-bottom: 1.25rem;
    padding-bottom: .5rem;
    border-bottom: 3px solid #C3C3C3;
    display: inline-block;
}

.svc-content-card, .svc-benefits-grid, .svc-process-card, .svc-faq-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    border: 1px solid #C3C3C3;
    margin-bottom: 1.5rem;
}
.svc-content-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #767B79;
}
.svc-content-body h3 { color: #023B5E; font-weight: 700; margin-top: 1.5rem; }
.svc-content-body ul, .svc-content-body ol { padding-left: 1.25rem; }

.svc-benefit-card {
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    height: 100%;
    background: #f2f4f6;
    border: 1px solid #e6e9ec;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(2,59,94,.1);
    border-color: #0570AE;
}
.svc-benefit-card i {
    font-size: 1.4rem; margin-bottom: .85rem; display: grid; place-items: center;
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #023B5E, #0570AE); color: #fff;
}
.svc-benefit-card h4 { font-size: 1rem; font-weight: 700; color: #023B5E; margin-bottom: .5rem; }
.svc-benefit-card p { font-size: .9rem; color: #767B79; margin: 0; }

.svc-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}
.svc-step {
    text-align: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #C3C3C3;
}
.svc-step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #023B5E, #0570AE);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto .5rem;
}
.svc-step-text { font-size: .88rem; font-weight: 600; color: #767B79; }

.svc-sidebar-cta {
    background: linear-gradient(160deg, #023B5E, #0570AE);
    color: #fff !important;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.svc-sidebar-cta h4,
.svc-sidebar-cta p,
.svc-sidebar-cta strong,
.svc-sidebar-cta > span,
.svc-sidebar-cta label {
    color: #fff !important;
}
.svc-sidebar-cta h4 { font-weight: 700; margin-bottom: .55rem; font-size: 1.2rem; }
.svc-sidebar-cta p { font-size: .9rem; opacity: .95; margin-bottom: 1rem; line-height: 1.5; }

.svc-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.svc-sidebar-form input,
.svc-sidebar-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.12);
    color: #fff !important;
    border-radius: 8px;
    padding: .65rem .8rem;
    font-size: .88rem;
    outline: none;
}
.svc-sidebar-form input::placeholder,
.svc-sidebar-form textarea::placeholder {
    color: rgba(255,255,255,.7) !important;
}
.svc-sidebar-form input:focus,
.svc-sidebar-form textarea:focus {
    border-color: #fff;
    background: rgba(255,255,255,.18);
}
.svc-sidebar-form .btn-svc-primary,
.svc-sidebar-form .btn-svc-primary span,
.svc-sidebar-form .btn-svc-primary i {
    background: #fff !important;
    color: #023B5E !important;
    border: none;
    font-weight: 700;
}
.svc-sidebar-form .btn-svc-primary {
    margin-top: .25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    width: 100%;
    padding: .75rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
}
.svc-sidebar-form .btn-svc-primary:hover,
.svc-sidebar-form .btn-svc-primary:hover span,
.svc-sidebar-form .btn-svc-primary:hover i {
    background: #C3C3C3 !important;
    color: #023B5E !important;
}
.svc-sidebar-form .btn-svc-primary:disabled {
    opacity: .7;
    cursor: wait;
}
.svc-sidebar-form-success {
    text-align: center;
    padding: 1rem .5rem;
    color: #fff !important;
}
.svc-sidebar-form-success i {
    display: block;
    font-size: 1.8rem;
    margin-bottom: .4rem;
    color: #fff !important;
}
.svc-sidebar-form-success strong,
.svc-sidebar-form-success span {
    display: block;
    color: #fff !important;
}
.svc-sidebar-form-success strong { margin-bottom: .2rem; }
.svc-sidebar-form-success span { font-size: .85rem; opacity: .9; }
.svc-sidebar-mail {
    display: block;
    margin-top: .85rem;
    text-align: center;
    color: #fff !important;
    font-size: .82rem;
    text-decoration: underline;
    opacity: .9;
}
.svc-sidebar-mail:hover {
    color: #C3C3C3 !important;
    opacity: 1;
}

.svc-sidebar-box {
    background: #fff;
    border: 1px solid #C3C3C3;
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.svc-sidebar-box h5 { font-size: .95rem; font-weight: 700; color: #023B5E; margin-bottom: .75rem; }
.svc-sidebar-box ul { margin: 0; padding-left: 1.1rem; font-size: .88rem; color: #767B79; }
.svc-sidebar-box li { margin-bottom: .35rem; }
.svc-sidebar-link {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    padding: .5rem 0;
    font-size: .85rem;
    color: #767B79;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
}
.svc-sidebar-link:hover { color: #0570AE; }
.svc-sidebar-link i { color: #0570AE; margin-top: 2px; }

.svc-related {
    background: #f4f7fa;
    padding: 4rem 0;
    border-top: 1px solid #C3C3C3;
}
.svc-related-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.25rem;
}
.svc-related-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0570AE;
    margin-bottom: .5rem;
}
.svc-related-head h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 800;
    color: #023B5E;
    margin-bottom: .5rem;
}
.svc-related-head p {
    margin: 0;
    color: #767B79;
    font-size: .95rem;
}

.svc-related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #C3C3C3;
    border-radius: 16px;
    padding: 1.6rem 1.4rem 1.4rem;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(2, 59, 94, .1);
    border-color: #0570AE;
}
.svc-related-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #023B5E, #0570AE);
    color: #fff;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.svc-related-icon i {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    width: auto;
    height: auto;
    background: none;
    display: inline;
}
.svc-related-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #023B5E;
    margin: 0 0 .55rem;
    line-height: 1.35;
}
.svc-related-card p {
    font-size: .88rem;
    color: #767B79;
    line-height: 1.55;
    margin: 0 0 1.15rem;
    flex-grow: 1;
}
.svc-related-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    align-self: flex-start;
    background: #0570AE;
    color: #fff !important;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none !important;
    padding: .65rem 1.15rem;
    border-radius: 50px;
    border: 2px solid #0570AE;
    transition: background .2s, color .2s, border-color .2s;
}
.svc-related-btn i { color: #fff !important; font-size: .8rem; }
.svc-related-btn:hover {
    background: #023B5E;
    border-color: #023B5E;
    color: #fff !important;
}

.svc-bottom-cta {
    background: linear-gradient(135deg, #0570AE, #023B5E);
    color: #fff !important;
    padding: 4rem 0;
}
.svc-bottom-cta h2,
.svc-bottom-cta p,
.svc-bottom-cta strong {
    color: #fff !important;
}
.svc-bottom-cta h2 { font-weight: 700; margin-bottom: .75rem; }
.svc-bottom-cta p { opacity: .95; margin-bottom: 1.5rem; }
.btn-svc-cta-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff !important;
    color: #023B5E !important;
    font-weight: 700;
    text-decoration: none !important;
    padding: .85rem 1.6rem;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: background .2s, color .2s;
}
.btn-svc-cta-white i { color: #023B5E !important; }
.btn-svc-cta-white:hover {
    background: #C3C3C3 !important;
    color: #023B5E !important;
}

/* Related card tones — kept uniform white for a clean, consistent grid */
.svc-related-card.svc-tone-1,
.svc-related-card.svc-tone-2,
.svc-related-card.svc-tone-3,
.svc-related-card.svc-tone-4,
.svc-related-card.svc-tone-5,
.svc-related-card.svc-tone-6 { background: #ffffff; }

/* Tech-stack chips inside service content */
.svc-content-body .svc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
}

.svc-content-body .svc-chip {
    display: inline-block;
    background: rgba(5, 112, 174, 0.1);
    color: #023B5E;
    border: 1px solid rgba(5, 112, 174, 0.2);
    border-radius: 50px;
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .svc-detail-title { flex-direction: column; }
    .svc-detail-hero { min-height: auto; padding: 2.5rem 0 2rem; }
}
