

/* ============================================================
   1. HERO — split 55% / 45% layout
   ============================================================ */
.svc-hero-split {
    background: var(--bg);
    padding: 4rem 0 3.5rem;
}

@media (min-width: 992px) {
    .svc-hero-split { padding: 5rem 0 4rem; }
}

.svc-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .svc-hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 3.5rem;
    }
}

/* Text side */
.svc-hero-text {
    width: 100%;
    text-align: center;
}

@media (min-width: 992px) {
    .svc-hero-text {
        width: 55%;
        text-align: left;
    }
}

.svc-hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.svc-hero-h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.svc-hero-gradient {
    background: linear-gradient(90deg, #007BFF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-hero-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 560px;
    margin-inline: auto;
}

@media (min-width: 992px) {
    .svc-hero-lead { margin-inline: 0; }
}

.svc-hero-card {
    background: var(--card);
    border: 1px solid rgba(0,123,255,0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    max-width: 560px;
    margin-inline: auto;
    text-align: left;
}

@media (min-width: 992px) {
    .svc-hero-card { margin-inline: 0; }
}

/* Image side */
.svc-hero-img {
    width: 100%;
}

@media (min-width: 992px) {
    .svc-hero-img { width: 45%; }
}

.svc-hero-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,123,255,0.4), 0 0 60px rgba(0,212,255,0.2);
    display: block;
}

/* Hero CTA buttons */
.btn-svc-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    background: var(--primary);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,123,255,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-svc-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,123,255,0.55);
    color: #fff;
}

.btn-svc-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #121212;
    background: var(--yellow);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255,170,0,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-svc-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255,170,0,0.5);
    color: #121212;
}

@media (max-width: 575px) {
    .btn-svc-call,
    .btn-svc-quote {
        font-size: 0.82rem;
        padding: 0.65rem 1.1rem;
    }
}


/* ============================================================
   2. TRUST BAR
   ============================================================ */
.svc-trust-bar {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trust-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary);
    filter: drop-shadow(0 0 6px rgba(0,123,255,0.6));
}

.fs-13 { font-size: 0.8125rem; }


/* ============================================================
   3. SHARED SECTION SPACING
   ============================================================ */
.svc-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.svc-seo-section {
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
}

.fs-16  { font-size: 1rem; }
.fs-22  { font-size: 1.375rem; }
.fs-18  { font-size: 1.125rem; }
.mw-900 { max-width: 900px; }


/* ============================================================
   4. ROUND IMAGE BLOCKS
   ============================================================ */
.svc-img-round {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.svc-img-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    transition: transform 0.35s;
}

.svc-img-round:hover img {
    transform: scale(1.03);
}

/* Tall portrait image (near-me section) */
.svc-img-round.portrait img {
    aspect-ratio: 3/4;
}


/* ============================================================
   5. CAPABILITIES PANEL — dark bg, image left + checklist right
   ============================================================ */
.svc-capabilities-section {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.svc-capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 12px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .svc-capabilities-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.svc-cap-img {
    min-height: 280px;
    max-height: 480px;
}

.svc-cap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
}

.svc-cap-body {
    background: var(--bg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .svc-cap-body { padding: 3rem; }
}

.svc-cap-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
}

@media (max-width: 575px) {
    .svc-cap-list { grid-template-columns: 1fr; }
}

.svc-cap-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-cap-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
    filter: drop-shadow(0 0 5px rgba(0,123,255,0.5));
}

.svc-cap-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--fg);
}


/* ============================================================
   6. ACCREDITATIONS
   ============================================================ */
.svc-accred-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.svc-accred-logos img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s;
    filter: brightness(0.9);
}

.svc-accred-logos img:hover {
    transform: scale(1.08);
    filter: brightness(1);
}

@media (min-width: 768px) {
    .svc-accred-logos img { height: 64px; }
}


/* ============================================================
   7. SEO SECTION (alternate bg)
   ============================================================ */
/* .svc-seo-section defined above in section 3 */


/* ============================================================
   8. TESTIMONIALS
   ============================================================ */
.testi-card {
    background: var(--card);
    border-top: 3px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 15px rgba(0,123,255,0.18);
}

.testi-card .star {
    width: 20px;
    height: 20px;
    fill: var(--yellow);
    stroke: var(--yellow);
    stroke-width: 0;
    flex-shrink: 0;
}


/* ============================================================
   FAQ (desktop side-tab + mobile accordion)
   — matches index.html / home.css pattern
   ============================================================ */
.svc-faq-wrap { max-width: 900px; }

/* Desktop side-tab */
.faq-desktop-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
    align-items: stretch;
}

.faq-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background .15s, color .15s;
    line-height: 1.4;
}

.faq-btn.active  { background: var(--primary); color: #fff; }
.faq-btn.inactive { background: var(--secondary); color: var(--fg); }
.faq-btn.inactive:hover { background: var(--muted); }

/* Answer panel — always visible, JS swaps content inside */
.faq-answer {
    background: var(--primary);
    border-radius: 12px;
    padding: 32px;
    min-height: 180px;
    height: 100%;
    box-sizing: border-box;
}

/* Mobile accordion */
.faq-acc-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-acc-btn {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s;
    background: #1a1a1a;
    color: #fff;
}

.faq-acc-btn.open { background: var(--primary); color: #fff; }

.faq-acc-btn svg {
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-acc-btn.open svg { transform: rotate(180deg); }

.faq-acc-body {
    background: var(--primary);
    padding: 16px 20px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    line-height: 1.7;
    display: none;
}

.faq-acc-body.open { display: block; }


/* ============================================================
   10. UTILITY HELPERS
   ============================================================ */
.lh-175 { line-height: 1.75; }
