/* Hero */
.hero-wrap {
    display: flex;
    justify-content: center;
    padding: 1.25rem;
}

.hero {
    width: 100%;
    max-width: var(--container);
    border-radius: 0;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0 1rem 2.5rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .4)),
        url("../assets/images/services/hero.jpeg");
}

.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.033em;
    line-height: 1.1;
}

.hero p {
    color: #fff;
    font-size: clamp(.95rem, 1.6vw, 1.125rem);
    font-weight: 300;
    max-width: 70ch;
}

/* Breadcrumbs */
.crumbs {
    display: flex;
    gap: .5rem;
    align-items: center;
    color: var(--muted);
    font-size: .95rem;
    margin: .5rem 0 1.25rem
}

.crumbs a {
    color: var(--text)
}

/* Section toning */
.section {
    padding: 4rem;
}

.section--gray {
    background: var(--bg-gray)
}

/* Services overview grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem
}

@media (min-width:768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.card {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius)
}

.card__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--text)
}

.card__content {
    display: flex;
    flex-direction: column
}

.card__title {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0
}

.card__desc {
    font-size: .95rem;
    color: var(--muted);
    margin: .25rem 0 0;
    line-height: 1.5
}

/* Service details list */
.svc {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 1rem
}

.svc+.svc {
    margin-top: 1rem
}

.svc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.svc__title {
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0
}

.pill {
    font-size: .8rem;
    color: #fff;
    background: var(--brand);
    padding: .25rem .5rem;
    border-radius: 999px
}

.svc__body {
    margin-top: .5rem;
    color: var(--muted)
}

.svc__list {
    margin: .5rem 0 0 1.1rem
}

/* CTA */
.services-cta {
    background: linear-gradient(135deg, #1980e6 0%, #0D2A55 100%);
    color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
}

.services-cta .cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-cta .cta-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.services-cta .cta-btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0D2A55;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}

.services-cta .cta-btn:hover {
    background: #facc15;
    color: #0D2A55;
}


/* FAQ */
.faq {
    display: grid;
    gap: .75rem;
}

details {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff
}

summary {
    list-style: none;
    cursor: pointer;
    padding: .9rem 1rem;
    font-weight: 700
}

summary::-webkit-details-marker {
    display: none
}

details p {
    padding: 0 1rem 1rem;
    color: var(--muted);
    margin: 0
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--soft);
    text-align: center;
    color: var(--muted)
}

/*Responsive */
@media (min-width: 480px) {

    .hero {
        border-radius: var(--radius-lg);
        padding: 0 2.5rem 2.5rem;
        gap: 2rem;
    }


}