/* Services templates (shared between services index & details) */
.service-template {
    width: 100%;
}

.service-template section.section {
    padding: 40px 0;
    margin: 0;
}

.service-template > .service-section:first-child .section {
    padding-top: 60px;
}

.service-template > .service-section:last-child .section {
    padding-bottom: 60px;
}

.service-template section.bg-soft {
    background-color: #f8f9fa;
}

.service-template .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #212529;
}

.service-template .hero-lite {
    padding: 4rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.service-template .hero-lite h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.service-template .hero-desc-sm {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 720px;
    margin: 0 auto;
}

.service-template .soft-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-template .soft-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-template .check-list,
.service-template .icon-list,
.service-template .deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-template .check-list li,
.service-template .icon-list li,
.service-template .deliverables li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.service-template .check-list li:last-child,
.service-template .icon-list li:last-child,
.service-template .deliverables li:last-child {
    border-bottom: none;
}

.service-template .check-list li::before,
.service-template .deliverables li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: 700;
}

.service-template .icon-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: 700;
}

.service-template .icon-list.blue li::before {
    color: #0d6efd;
}

.service-template .icon-list.orange li::before {
    color: #fd7e14;
}

.service-template .icon-list.green li::before {
    color: #198754;
}

.service-template .process-steps .step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.service-template .bg-orange {
    background: #fd7e14;
}

.service-template .bg-primary {
    background: #0d6efd;
}

.service-template .bg-success {
    background: #198754;
}

.service-template .bg-purple {
    background: #6f42c1;
}

.service-template .highlight-box {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    max-width: 720px;
}

.service-template .btn-orange {
    background: #fd7e14;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

.service-template .btn-orange:hover {
    background: #e67e0a;
    color: #ffffff;
    text-decoration: none;
}

.service-template .service-type-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-template .service-type-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-template .service-type-card h3 {
    margin: 0;
    font-weight: 700;
}

.service-template .service-type-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.service-template .service-type-chip {
    background: #fff3cd;
    color: #664d03;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-weight: 600;
}

.service-template .services-index .featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-template .services-index .featured-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-template .services-index .featured-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-template .services-index .featured-card .content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .service-template .hero-lite h1 {
        font-size: 2rem;
    }

    .service-template section.section {
        padding: 30px 0;
    }
}
