/* ═══════════════════════════════════════════════════════════════════════
   STYLES-SERVICES.CSS  —  Services Page Styles
   SP Service Point – LED TV Repair Service Center, Delhi
   Extends:  css/styles.css  (base tokens & components)
   Author:   SP Service Point Web Team
   Version:  1.0.0
   ═══════════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────────────
   1. SERVICES PAGE HERO / BREADCRUMB BANNER
────────────────────────────────────────────────────────────────────── */
.services-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, var(--clr-primary-dark) 0%, var(--clr-primary) 55%, var(--clr-primary-light) 100%);
    padding: 4.5rem 0 5rem;
    text-align: center;
}

/* Animated dot-grid texture */
.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    animation: heroGridPulse 6s ease-in-out infinite;
}

@keyframes heroGridPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* Wave cutout at bottom */
.services-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 72px;
    background: var(--clr-white);
    clip-path: ellipse(58% 100% at 50% 100%);
}

.services-hero-inner {
    position: relative;
    z-index: 2;
}

/* Breadcrumb nav */
.svc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.25rem;
    padding: 0.32rem 1.05rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.18);
    list-style: none;
}

.svc-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.svc-breadcrumb a:hover { color: var(--clr-accent-light); }
.svc-breadcrumb .sep    { color: rgba(255, 255, 255, 0.35); }
.svc-breadcrumb .cur    { color: var(--clr-white); }

/* Page title */
.services-hero-title {
    font-family: var(--font-display);
    font-weight: var(--fw-extrabold);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--clr-white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.services-hero-title .text-accent { color: var(--clr-secondary-light); }

.services-hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 2.25rem;
    line-height: 1.78;
}

/* Hero quick-info strip */
.hero-info-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-info-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--clr-white);
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.hero-info-chip i { color: var(--clr-accent-light); }

/* ──────────────────────────────────────────────────────────────────────
   2. FILTER TABS
────────────────────────────────────────────────────────────────────── */
.filter-bar-section {
    background: var(--clr-white);
    padding: 2rem 0 0;
    position: sticky;
    top: 78px; /* clear sticky header */
    z-index: 900;
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.06);
    border-bottom: 1px solid var(--clr-border);
}

.filter-tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-bottom: 0;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
    color: var(--clr-text-muted);
    background: var(--clr-off-white);
    border: 1.5px solid var(--clr-border);
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full) var(--radius-full) 0 0;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    border-bottom: none;
    position: relative;
    bottom: -1px;
    white-space: nowrap;
}

.filter-tab i { font-size: 0.9rem; }

.filter-tab:hover {
    color: var(--clr-primary);
    background: var(--clr-surface);
    border-color: var(--clr-primary);
}

.filter-tab.active {
    color: var(--clr-primary);
    background: var(--clr-white);
    border-color: var(--clr-primary);
    border-bottom-color: var(--clr-white);
    box-shadow: 0 -4px 12px rgba(13, 71, 161, 0.08);
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--clr-white);
}

/* ──────────────────────────────────────────────────────────────────────
   3. SERVICES CATALOG SECTION
────────────────────────────────────────────────────────────────────── */
.services-catalog-section {
    background: var(--clr-off-white);
    padding: 3.5rem 0 4rem;
}

/* Category anchor labels */
.svc-category-anchor {
    scroll-margin-top: 140px;
}

.svc-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--clr-border);
}

.svc-category-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--clr-white);
    box-shadow: 0 4px 14px rgba(13, 71, 161, 0.22);
}

.svc-category-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: var(--fw-extrabold);
    color: var(--clr-text);
    margin: 0;
    line-height: 1.2;
}

.svc-category-desc {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ── Expanded Service Card ── */
.svc-detail-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--clr-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
    position: relative;
}

.svc-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 71, 161, 0.18);
}

.svc-detail-card.featured-card {
    border-color: var(--clr-secondary);
    box-shadow: 0 0 0 2px rgba(230, 81, 0, 0.12), var(--shadow-sm);
}

.svc-detail-card.featured-card:hover {
    box-shadow: 0 0 0 2px rgba(230, 81, 0, 0.22), var(--shadow-lg);
}

/* Popular badge ribbon */
.svc-ribbon {
    position: absolute;
    top: 1rem;
    right: -0.2rem;
    background: var(--clr-secondary);
    color: var(--clr-white);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.22rem 0.85rem 0.22rem 0.65rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
    box-shadow: -2px 2px 8px rgba(230, 81, 0, 0.3);
}

/* Image */
.svc-detail-img-wrap {
    height: 200px;
    overflow: hidden;
    background: var(--clr-surface);
    position: relative;
    flex-shrink: 0;
}

.svc-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
    display: block;
}

.svc-detail-card:hover .svc-detail-img { transform: scale(1.08); }

/* Color overlay on image */
.svc-detail-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 47, 107, 0.65) 0%, transparent 55%);
}

/* Icon over image bottom-left */
.svc-detail-img-icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 46px;
    height: 46px;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.svc-detail-card:hover .svc-detail-img-icon { transform: scale(1.1) rotate(-5deg); }

/* Tag over image top-left */
.svc-detail-tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-white);
    background: rgba(13, 71, 161, 0.75);
    backdrop-filter: blur(4px);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
}

.svc-detail-tag.tag-accent {
    background: rgba(230, 81, 0, 0.8);
}

/* Card body */
.svc-detail-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-detail-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: var(--fw-extrabold);
    color: var(--clr-text);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.svc-detail-desc {
    font-size: 0.87rem;
    color: var(--clr-text-muted);
    line-height: 1.72;
    margin-bottom: 1.1rem;
    flex: 1;
}

/* What's included list */
.svc-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
}

.svc-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--clr-text);
    line-height: 1.45;
}

.svc-includes li i {
    color: var(--clr-success);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* Price badge */
.svc-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.svc-price-label {
    font-size: 0.73rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.svc-price-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: var(--fw-extrabold);
    color: var(--clr-secondary);
}

.svc-price-note {
    font-size: 0.72rem;
    color: var(--clr-text-light);
}

/* CTA buttons */
.svc-detail-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
}

.svc-cta-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: var(--fw-bold);
    padding: 0.65rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    white-space: nowrap;
}

.svc-cta-primary:hover {
    background: var(--clr-secondary);
    color: var(--clr-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(230, 81, 0, 0.32);
}

.svc-cta-primary.accent-bg { background: var(--clr-secondary); }
.svc-cta-primary.accent-bg:hover { background: var(--clr-secondary-light); }

.svc-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: transparent;
    border: 1.5px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: var(--fw-bold);
    padding: 0.65rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.svc-cta-outline:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    background: rgba(13, 71, 161, 0.05);
}

/* ──────────────────────────────────────────────────────────────────────
   4. EMERGENCY / FEATURED WIDE CARD
────────────────────────────────────────────────────────────────────── */
.svc-wide-card {
    background: linear-gradient(115deg, var(--clr-primary-dark) 0%, var(--clr-primary) 55%, var(--clr-primary-light) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 280px;
    border: none;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.svc-wide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(13, 71, 161, 0.28);
}

/* Dot texture */
.svc-wide-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.svc-wide-text {
    padding: 2.5rem 2rem 2.5rem 2.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
}

.svc-wide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-accent-light);
    background: rgba(41, 182, 246, 0.15);
    border: 1px solid rgba(41, 182, 246, 0.3);
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-full);
    width: fit-content;
}

.svc-wide-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: var(--fw-extrabold);
    color: var(--clr-white);
    line-height: 1.2;
    margin: 0;
}

.svc-wide-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.72;
    margin: 0;
    max-width: 440px;
}

.svc-wide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.svc-wide-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.78rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.28rem 0.75rem;
    border-radius: var(--radius-full);
}

.svc-wide-feature i { color: var(--clr-accent-light); }

.svc-wide-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-wide-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-light));
    color: var(--clr-white);
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(230, 81, 0, 0.4);
    transition: all var(--transition-base);
}

.btn-wide-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(230, 81, 0, 0.52);
    color: var(--clr-white);
}

.btn-wide-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--clr-white);
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: 0.9rem;
    padding: 0.73rem 1.75rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all var(--transition-base);
}

.btn-wide-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--clr-white);
}

/* Right image panel of wide card */
.svc-wide-img {
    position: relative;
    overflow: hidden;
}

.svc-wide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms ease;
}

.svc-wide-card:hover .svc-wide-img img { transform: scale(1.06); }

.svc-wide-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 47, 107, 0.5), transparent 60%);
}

/* Floating stat chips on wide card */
.svc-wide-stat {
    position: absolute;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 0.65rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    text-align: center;
}

.svc-wide-stat:first-of-type { top: 1.5rem; right: 1.25rem; }
.svc-wide-stat:last-of-type  { bottom: 1.5rem; right: 1.25rem; }

.svc-wide-stat .stat-n {
    font-family: var(--font-display);
    font-weight: var(--fw-extrabold);
    font-size: 1.3rem;
    color: var(--clr-secondary);
    line-height: 1;
}

.svc-wide-stat .stat-l {
    font-size: 0.65rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ──────────────────────────────────────────────────────────────────────
   5. PRICING TRANSPARENCY BANNER
────────────────────────────────────────────────────────────────────── */
.pricing-banner {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--clr-border);
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
    margin: 3rem 0;
}

.pricing-banner-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--clr-success), #43A047);
    color: var(--clr-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.28);
}

.pricing-banner-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: var(--fw-extrabold);
    color: var(--clr-text);
    margin-bottom: 0.4rem;
}

.pricing-banner-text {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin: 0 0 1rem;
}

.pricing-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pricing-point {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-success);
    background: rgba(46, 125, 50, 0.07);
    border: 1px solid rgba(46, 125, 50, 0.2);
    padding: 0.28rem 0.8rem;
    border-radius: var(--radius-full);
}

.pricing-point i { font-size: 0.78rem; }

/* ──────────────────────────────────────────────────────────────────────
   6. PROCESS STRIP (compact version for services page)
────────────────────────────────────────────────────────────────────── */
.svc-process-strip {
    background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    margin: 1.5rem 0 3rem;
}

.svc-process-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.svc-process-strip-title {
    font-family: var(--font-display);
    font-weight: var(--fw-extrabold);
    font-size: 1.1rem;
    color: var(--clr-white);
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.svc-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* Connector line between steps */
.svc-process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.svc-step {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.svc-step-num {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: var(--fw-extrabold);
    font-size: 1.1rem;
    color: var(--clr-white);
    backdrop-filter: blur(4px);
    transition: all var(--transition-base);
}

.svc-step:hover .svc-step-num {
    background: var(--clr-secondary);
    border-color: var(--clr-secondary);
    transform: scale(1.1);
}

.svc-step-label {
    font-size: 0.78rem;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.35;
}

/* ──────────────────────────────────────────────────────────────────────
   7. BRAND COMPATIBILITY SECTION
────────────────────────────────────────────────────────────────────── */
.brand-compat-section {
    background: var(--clr-white);
    padding: var(--section-pad);
}

.brand-compat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.brand-compat-card {
    background: var(--clr-off-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    cursor: default;
}

.brand-compat-card:hover {
    border-color: var(--clr-primary);
    background: var(--clr-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.brand-compat-card img {
    height: 36px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(35%);
    transition: filter var(--transition-base);
}

.brand-compat-card:hover img { filter: grayscale(0%); }

.brand-compat-name {
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
    color: var(--clr-text);
}

.brand-compat-models {
    font-size: 0.68rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
}

/* ──────────────────────────────────────────────────────────────────────
   8. SERVICE FAQ (page-specific tweaks)
────────────────────────────────────────────────────────────────────── */
.svc-faq-section {
    background: var(--clr-off-white);
    padding: var(--section-pad);
}

.svc-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

/* Reuses .faq-accordion styles from styles.css */

/* ──────────────────────────────────────────────────────────────────────
   9. SERVICES PAGE CTA BANNER
────────────────────────────────────────────────────────────────────── */
.svc-cta-section {
    background: linear-gradient(125deg, var(--clr-primary-dark) 0%, var(--clr-primary) 55%, var(--clr-primary-light) 100%);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.svc-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.svc-cta-inner { position: relative; z-index: 1; }

.svc-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent-light);
    background: rgba(41, 182, 246, 0.15);
    border: 1px solid rgba(41, 182, 246, 0.28);
    padding: 0.28rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.1rem;
}

.svc-cta-title {
    font-family: var(--font-display);
    font-weight: var(--fw-extrabold);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--clr-white);
    line-height: 1.18;
    margin-bottom: 0.9rem;
}

.svc-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.74);
    max-width: 540px;
    margin: 0 auto 2.2rem;
    line-height: 1.75;
}

.svc-cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Trust chips row in CTA */
.svc-cta-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.svc-cta-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.28rem 0.85rem;
    border-radius: var(--radius-full);
}

.svc-cta-trust-chip i { color: var(--clr-accent-light); font-size: 0.8rem; }

/* ──────────────────────────────────────────────────────────────────────
   10. RESPONSIVE
────────────────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .filter-bar-section { top: 70px; }

    .svc-wide-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .svc-wide-img {
        height: 220px;
        order: -1;
    }

    .svc-wide-stat { display: none; }

    .svc-wide-text { padding: 2rem 1.75rem; }

    .svc-process-steps { grid-template-columns: repeat(2, 1fr); }

    .svc-process-steps::before { display: none; }

    .svc-faq-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .pricing-banner { grid-template-columns: 1fr; text-align: center; }

    .pricing-banner-icon { margin: 0 auto; }

    .pricing-points { justify-content: center; }

    .brand-compat-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}

@media (max-width: 575.98px) {
    .services-hero { padding: 3rem 0 3.5rem; }

    .filter-tabs { gap: 0.3rem; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0; }

    .filter-tab {
        font-size: 0.78rem;
        padding: 0.45rem 0.9rem;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .svc-process-steps { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    .svc-detail-actions { flex-direction: column; }

    .svc-cta-btns { flex-direction: column; align-items: center; }

    .btn-wide-primary, .btn-wide-outline { width: 100%; justify-content: center; }

    .brand-compat-grid { grid-template-columns: repeat(3, 1fr); }

    .pricing-banner { padding: 1.5rem; }
}

/* ──────────────────────────────────────────────────────────────────────
   11. SCROLL REVEAL
────────────────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .svc-detail-card, .svc-wide-card { transition: none !important; }
    .services-hero::before { animation: none !important; }
}