:root {
    --bg: #0f1114;
    --bg-soft: rgba(255,255,255,0.02);
    --surface: rgba(255,255,255,0.03);
    --surface-strong: rgba(255,255,255,0.05);
    --ink: #ffffff;
    --muted: rgba(255,255,255,0.72);
    --line: rgba(255,255,255,0.06);
    --brand: #d97706;
    --brand-deep: #9a3412;
    --accent: #1f6f5f;
    --accent-soft: rgba(255,255,255,0.03);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    --radius-xl: 32px;
}

/* body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top left, rgba(217, 119, 6, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(31, 111, 95, 0.12), transparent 26%),
        #111117;
    min-height: 100vh;
    padding-top: 76px;
} */

h1, h2, h3, h4, h5, h6 {
    font-family: "Sora", sans-serif;
}

.services-page {
    padding: 1.5rem 0 3rem;
}

.hero-panel,
.directory-panel,
.service-card,
.hero-stat,
.empty-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.hero-panel,
.directory-panel,
.empty-card {
    border-radius: 34px;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-panel::before {
    width: 260px;
    height: 260px;
    top: -100px;
    right: -60px;
    background: rgba(217, 119, 6, 0.16);
}

.hero-panel::after {
    width: 220px;
    height: 220px;
    bottom: -110px;
    left: -70px;
    background: rgba(31, 111, 95, 0.12);
}

.eyebrow,
.section-badge,
.meta-chip,
.category-pill,
.count-pill,
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: 999px;
    font-weight: 800;
}

.eyebrow {
    padding: .6rem .9rem;
    background: rgba(255, 255, 255, 0.12);
    color: var(--brand);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 4.2rem);
    line-height: 1.04;
    margin: 1rem 0;
    max-width: 11ch;
}

.hero-copy,
.section-copy,
.service-body p,
.empty-card p {
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.5rem;
}



.btn-soft {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-soft:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-soft {
    color: var(--accent);
    background: rgba(31, 111, 95, 0.1);
    border: 1px solid rgba(31, 111, 95, 0.18);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.6rem;
}

.hero-stat {
    min-width: 160px;
    padding: 1rem 1.1rem;
    border-radius: 22px;
}

.hero-stat strong {
    display: block;
    font-size: 1.45rem;
    font-family: "Sora", sans-serif;
}

.hero-visual {
    position: relative;
    min-height: 360px;
}

.hero-image {
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-image-main {
    width: 100%;
    height: 360px;
}

.hero-image-float {
    position: absolute;
    width: 210px;
    height: 210px;
    right: -10px;
    bottom: -14px;
    border: 8px solid rgba(255, 250, 244, 0.9);
}

.directory-panel {
    padding: 1.45rem;
    margin-bottom: 1.5rem;
}

.directory-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

.section-badge {
    padding: .38rem .72rem;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-size: .8rem;
}

.section-title {
    margin: .9rem 0 .35rem;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.filter-shell {
    display: grid;
    gap: 1rem;
    margin-top: 1.3rem;
}

.filter-group {
    display: grid;
    gap: .7rem;
}

.filter-label {
    font-weight: 800;
    color: var(--ink);
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.filter-pill {
    padding: .58rem .92rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-pill-accent {
    background: rgba(31, 111, 95, 0.12);
    color: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.2rem;
}

.service-card {
    grid-column: span 4;
    border-radius: 30px;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.service-media {
    position: relative;
    height: 240px;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.service-overlay {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    z-index: 2;
}

.meta-chip {
    padding: .5rem .75rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255,255,255,0.95);
    font-size: .78rem;
}

.service-body {
    padding: 1.3rem;
    background: rgba(255, 255, 255, 0.06);
}

.service-topline,
.service-meta,
.service-footer {
    display: flex;
    justify-content: space-between;
    gap: .8rem;
    flex-wrap: wrap;
}

.service-topline {
    margin-bottom: .85rem;
}

.category-pill {
    padding: .42rem .78rem;
    background: rgba(31, 111, 95, 0.12);
    color: var(--accent);
    font-size: .78rem;
}

.count-pill {
    padding: .42rem .78rem;
    background: rgba(217, 119, 6, 0.12);
    color: var(--brand-deep);
    font-size: .78rem;
}

.service-body h3 {
    font-size: 1.3rem;
    margin-bottom: .7rem;
    color: #ffffff;
}

.service-meta {
    margin-top: 1rem;
    color: var(--muted);
    font-size: .92rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1rem;
}

.service-tags span {
    padding: .5rem .72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    font-size: .82rem;
}

.service-footer {
    align-items: center;
    margin-top: 1.2rem;
}

.service-link {
    padding-inline: 1.15rem;
}

.service-date {
    color: var(--muted);
    font-size: .86rem;
}

.empty-state {
    grid-column: 1 / -1;
}

.empty-card {
    padding: 2rem;
    text-align: center;
}

.search {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    color: var(--ink);
}

.search i {
    color: rgba(255,255,255,0.72);
}

.search input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--ink);
    padding: .65rem .8rem;
    border-radius: 999px;
}

.search input::placeholder {
    color: rgba(255,255,255,0.55);
}

.ad-banner {
    position: relative;
    border-radius: 24px;
    padding: 1.8rem;
    color: #ffffff;
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.ad-banner.orange {
    background: linear-gradient(135deg, #d97706 0%, #9a3412 100%);
}

.ad-banner::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
    filter: blur(40px);
    top: -80px;
    right: -80px;
    border-radius: 50%;
    z-index: 0;
}

.ad-banner h3,
.ad-banner p,
.ad-banner .eyebrow {
    position: relative;
    z-index: 1;
}

@media (max-width: 1199.98px) {
    .service-card {
        grid-column: span 6;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        max-width: none;
    }

    .hero-image-float {
        width: 170px;
        height: 170px;
        right: 10px;
        bottom: -8px;
    }

    .directory-head {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 767.98px) {
    .services-page {
        padding-top: 1rem;
    }

    .hero-panel,
    .directory-panel {
        padding: 1.35rem;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-image-main {
        height: 280px;
    }

    .hero-image-float {
        display: none;
    }

    .service-card {
        grid-column: span 12;
    }

    .service-media {
        height: 220px;
    }
}
