/* services-index.css — nav/footer rules stripped (61 blocks).
   The shared Layout supplies the nav and footer, styled by
   home.css. This file's originals collided with them. */

/* services-index.css — from pages/services.php */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
        --dark:        #0A0A0A;
        --dark-2:      #0D0D0D;
        --dark-3:      #111111;
        --light:       #FFFFFF;
        --amber:       #D97706;
        --amber-hover: #B45309;
        --muted:       #666666;
        --border:      rgba(255,255,255,0.08);
        --max-w:       1200px;
        --gutter:      2.5rem;
    }

    html { scroll-behavior: smooth; }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--dark);
        color: #fff;
        line-height: 1.75;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    .wrap {
        width: 100%;
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--gutter);
    }

    h1, h2, h3, h4 {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.08;
    }

    p { line-height: 1.75; }

    .eyebrow {
        display: block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 1.25rem;
    }
    .eyebrow-amber { color: var(--amber); }

    .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── HERO ── */
    #services-hero {
        padding: 10rem var(--gutter) 5rem;
        max-width: var(--max-w);
        margin: 0 auto;
        border-bottom: 1px solid var(--border);
    }
    #services-hero h1 {
        font-size: clamp(3.5rem, 8vw, 7rem);
        margin-bottom: 1.5rem;
        max-width: 800px;
    }
    #services-hero .hero-sub {
        font-size: 1.15rem;
        color: rgba(255,255,255,0.5);
        max-width: 520px;
        line-height: 1.7;
    }

    /* ── CATEGORY SECTIONS ── */
    .cat-section {
        padding: 5rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .cat-section-dark {
        background: var(--dark);
        border-bottom-color: rgba(255,255,255,0.06);
    }
    .cat-section-dark-alt { background: #111111; border-bottom-color: rgba(255,255,255,0.06); }
    .cat-section-light { background: #ffffff; }
    .cat-section:last-of-type { border-bottom: none; }

    .cat-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--gutter);
    }

    .cat-header {
        display: grid;
        grid-template-columns: 1fr 2.5fr;
        gap: 4rem;
        align-items: start;
        margin-bottom: 3rem;
    }
    .cat-label {
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--amber);
        display: block;
        margin-bottom: 0.75rem;
    }
    .cat-title {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        line-height: 1.15;
    }
    .cat-section-dark .cat-title,
    .cat-section-dark-alt .cat-title { color: white; }
    .cat-section-light .cat-title { color: #0A0A0A; }

    .cat-desc {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 540px;
        padding-top: 0.25rem;
    }
    .cat-section-dark .cat-desc,
    .cat-section-dark-alt .cat-desc { color: rgba(255,255,255,0.5); }
    .cat-section-light .cat-desc { color: #444444; }

    /* ── SERVICE CARDS ── */
    .services-cards {
        display: grid;
        gap: 1rem;
    }
    .services-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .services-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }

    /* Dark section cards */
    .cat-section-dark .svc-card,
    .cat-section-dark-alt .svc-card {
        padding: 2rem;
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 12px;
        background: rgba(255,255,255,0.02);
        transition: background 0.2s, border-color 0.2s;
    }
    .cat-section-dark .svc-card:hover,
    .cat-section-dark-alt .svc-card:hover {
        background: rgba(255,255,255,0.04);
        border-color: rgba(255,255,255,0.12);
    }
    .cat-section-dark .svc-card h3,
    .cat-section-dark-alt .svc-card h3 { color: white; }
    .cat-section-dark .svc-card p,
    .cat-section-dark-alt .svc-card p { color: rgba(255,255,255,0.45); }
    .cat-section-dark .svc-card a.svc-link,
    .cat-section-dark-alt .svc-card a.svc-link { color: rgba(255,255,255,0.4); }
    .cat-section-dark .svc-card a.svc-link:hover,
    .cat-section-dark-alt .svc-card a.svc-link:hover { color: white; }

    /* Light section cards */
    .cat-section-light .svc-card {
        padding: 2rem;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 12px;
        background: rgba(0,0,0,0.02);
        transition: background 0.2s, border-color 0.2s;
    }
    .cat-section-light .svc-card:hover {
        background: rgba(0,0,0,0.04);
        border-color: rgba(0,0,0,0.15);
    }
    .cat-section-light .svc-card h3 { color: #0A0A0A; }
    .cat-section-light .svc-card p { color: #444444; }
    .cat-section-light .svc-card a.svc-link { color: #888888; }
    .cat-section-light .svc-card a.svc-link:hover { color: #0A0A0A; }
    .svc-card-badge {
        display: inline-block;
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        background: var(--amber);
        color: white;
        padding: 0.1rem 0.4rem;
        border-radius: 3px;
        margin-bottom: 0.75rem;
    }
    .svc-card h3 {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: -0.015em;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }
    .svc-card p {
        font-size: 0.875rem;
        line-height: 1.65;
    }
    .svc-card a.svc-link {
        display: inline-block;
        margin-top: 1rem;
        font-size: 0.8rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s;
    }

    /* ── CTA SECTION ── */
    #services-cta {
        background: #0D0D0D;
        border-top: 1px solid rgba(255,255,255,0.06);
        padding: 6rem var(--gutter);
        text-align: center;
    }
    .services-cta-inner { max-width: 600px; margin: 0 auto; }
    #services-cta h2 {
        font-size: clamp(2rem, 4vw, 3.5rem);
        margin-bottom: 1rem;
    }
    #services-cta p {
        font-size: 1rem;
        color: rgba(255,255,255,0.45);
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        border: none;
        transition: all 0.22s ease;
        white-space: nowrap;
    }
    .btn-primary {
        background: white;
        color: #0A0A0A;
        padding: 0.75rem 2rem;
        border-radius: 100px;
    }
    .btn-primary:hover { background: #f0f0f0; transform: translateY(-1px); }
    .btn-ghost {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.25);
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 100px;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }@media (max-width: 900px) {
        .cat-header { grid-template-columns: 1fr; gap: 1.5rem; }
        .services-cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
    }@media (max-width: 768px) {
        :root { --gutter: 1.25rem; }
        /* Section spacing */
        section, .section { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
        /* Hero */
        .hero h1, .page-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
        .hero p, .page-hero p { font-size: .95rem !important; }
    }@media (max-width: 640px) {
        :root { --gutter: 1rem; }
        .services-cards.cols-2,
        .services-cards.cols-3 { grid-template-columns: 1fr; }
    }
        .chevron-icon { width: 12px; height: 12px; opacity: 0.5; }@keyframes ddSlideDown {
            from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
            to   { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
    