/* ═══════════════════════════════════════════════════
   Service Pages — Design System
   Roofers Pasadena CA · Forest Green + Warm Amber
   ═══════════════════════════════════════════════════ */

/* ── CSS Variables — Mapped to Pasadena Color Scheme ── */
:root {
    /* Colors — Forest Green + Warm Amber (Identical to Homepage) */
    --primary: #1B6B4A;
    --primary-dark: #145238;
    --primary-light: #2A9D6F;
    --secondary: #1C2333;
    --dark: #0F1724;
    --dark-card: #151E2E;
    --dark-card-hover: #1B2740;
    --accent: #D4973B;
    --accent-dark: #B87E28;
    --accent-light: #E8C547;
    --accent-soft: rgba(212, 151, 59, 0.1);
    --cta: #1B6B4A;
    --cta-dark: #145238;
    --cta-light: #2A9D6F;
    --cta-soft: rgba(27, 107, 74, 0.08);
    --text: #2D3436;
    --text-muted: #636E72;
    --text-light: #8B9DAF;
    --card: #ffffff;
    --card-border: #DCE4E0;
    --bg: #ffffff;
    --bg-alt: #F7F9F8;
    --bg-subtle: #F7F9F8;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);

    /* Matching Homepage CSS Tokens */
    --color-primary: #1B6B4A;
    --color-primary-dark: #145238;
    --color-primary-light: #2A9D6F;
    --color-secondary: #1C2333;
    --color-text: #2D3436;
    --color-text-light: #636E72;
    --color-text-muted: #8B9DAF;
    --color-white: #FFFFFF;
    --color-off-white: #F7F9F8;
    --color-light-gray: #ECF0EE;
    --color-border: #DCE4E0;
    --color-dark: #0F1724;
    --font-heading: 'Outfit', sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TOP BAR (Identical to Homepage)
   ============================================ */
.top-bar {
    background: var(--color-secondary);
    padding: 10px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
}

.top-bar-item:hover {
    color: var(--color-white);
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    fill: var(--color-primary-light);
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.top-bar-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.top-bar-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ============================================
   HEADER / NAVIGATION (Identical to Homepage)
   ============================================ */
.site-header {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.site-logo:hover .logo-img {
    transform: scale(1.02);
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--color-white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-company {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.logo-tagline {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a,
.dropdown-trigger {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    letter-spacing: 0.2px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active,
.dropdown-trigger:hover,
.nav-dropdown:hover .dropdown-trigger,
.nav-dropdown.active .dropdown-trigger,
.dropdown-trigger.active {
    color: var(--color-primary);
    background: rgba(27, 107, 74, 0.06);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    margin-top: 1px;
}

.nav-dropdown:hover .dropdown-icon,
.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--color-border);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-secondary);
    border-radius: 0;
    white-space: nowrap;
    transition: all var(--transition-fast);
    background: transparent;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: rgba(27, 107, 74, 0.07);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 22px;
}

/* Mobile-only elements hidden on Desktop */
.mobile-nav-header,
.mobile-nav-footer,
.mobile-sticky-cta {
    display: none;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary);
    text-decoration: none;
}

.header-phone svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    border-radius: 10px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(27, 107, 74, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: #24A16F;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(36, 161, 111, 0.65);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-primary svg {
    fill: #fff;
}

.btn-cta {
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(27, 107, 74, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cta svg {
    stroke: #ffffff;
    fill: none;
}

.btn-cta:hover {
    background: #24A16F;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(36, 161, 111, 0.65);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 151, 59, 0.3);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 151, 59, 0.45);
}

.btn-secondary {
    background: #ffffff;
    color: var(--secondary);
    border: 2px solid var(--card-border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: all var(--transition-base);
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #0F1724;
    border-color: #ffffff;
    box-shadow: 0 6px 22px rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

.btn-outline-white:hover svg {
    stroke: #0F1724;
}

/* ============================================
   RESPONSIVE HEADER & MOBILE NAVIGATION
   ============================================ */
@media (max-width: 1024px) {
    .header-inner { height: 70px; }
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: #ffffff;
        z-index: 99999;
        padding: 20px 20px 30px;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
        animation: mobileNavFadeIn 0.22s ease-out;
    }

    @keyframes mobileNavFadeIn {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 16px;
        margin-bottom: 8px;
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-nav-close {
        width: 38px; height: 38px;
        border-radius: 50%;
        background: var(--color-light-gray);
        border: none;
        font-size: 1.6rem; line-height: 1;
        display: flex; align-items: center; justify-content: center;
        color: var(--color-secondary);
        cursor: pointer;
        transition: all var(--transition-fast);
    }

    .mobile-nav-close:hover { background: var(--color-primary); color: #ffffff; }

    .main-nav.open>a,
    .main-nav.open .dropdown-trigger {
        font-size: 1.12rem; font-weight: 700;
        padding: 15px 12px;
        width: 100%;
        border-bottom: 1px solid var(--color-light-gray);
        justify-content: flex-start;
        border-radius: 0;
        color: var(--color-secondary);
    }

    .main-nav.open>a:hover,
    .main-nav.open>a.active {
        color: var(--color-primary);
        background: rgba(27, 107, 74, 0.05);
        padding-left: 18px;
    }

    .nav-dropdown { width: 100%; display: flex; flex-direction: column; align-items: stretch; }
    .nav-dropdown .dropdown-trigger { justify-content: space-between; }

    .nav-dropdown .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; background: #F7F9F8;
        width: 100%; padding: 4px 0 6px 12px;
        border-radius: var(--radius-sm); margin: 4px 0 8px;
        border-left: 3px solid var(--color-primary);
        display: none;
    }

    .nav-dropdown .dropdown-menu::before { display: none; }
    .nav-dropdown.active .dropdown-menu { display: flex; flex-direction: column; }

    .nav-dropdown .dropdown-menu a {
        font-size: 0.98rem; font-weight: 600; padding: 12px 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        border-left: none; color: var(--color-text);
    }

    .nav-dropdown .dropdown-menu a:last-child { border-bottom: none; }
    .nav-dropdown .dropdown-menu a:hover { color: var(--color-primary); padding-left: 18px; background: transparent; }

    .mobile-nav-footer {
        display: flex; flex-direction: column; gap: 10px;
        width: 100%; margin-top: 24px; padding-top: 20px;
        border-top: 1px solid var(--color-border);
    }

    .mobile-nav-footer a.btn {
        width: 100%; justify-content: center; padding: 13px 20px;
        font-size: 0.95rem; font-weight: 700;
        border-radius: var(--radius-md);
        display: flex; align-items: center; gap: 8px; text-decoration: none;
    }

    .mobile-nav-call { background: var(--color-secondary) !important; color: #ffffff !important; }
    .mobile-nav-call svg { width: 16px; height: 16px; fill: var(--color-primary-light); }

    .mobile-nav-estimate {
        background: var(--color-primary) !important; color: #ffffff !important;
        border: none !important; box-shadow: 0 4px 14px rgba(27, 107, 74, 0.35);
    }

    body.nav-open .mobile-sticky-cta { display: none !important; }
}

@media (max-width: 768px) {
    .header-cta { display: none !important; }
    .header-inner { height: 64px; padding: 0 16px; }
    .mobile-toggle { margin-left: auto; }
    body { padding-bottom: 74px; }

    .mobile-sticky-cta {
        display: flex !important;
        position: fixed; bottom: 0; left: 0; right: 0;
        z-index: 9998;
        background: linear-gradient(180deg, rgba(15, 23, 36, 0.98) 0%, rgba(28, 35, 51, 0.99) 100%);
        backdrop-filter: blur(12px);
        padding: 10px 14px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
        box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.35);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        gap: 10px; align-items: center;
    }

    .mobile-cta-btn {
        flex: 1; display: inline-flex; align-items: center; justify-content: center;
        gap: 8px; height: 48px; border-radius: var(--radius-md);
        font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700;
        text-decoration: none; letter-spacing: 0.2px; transition: all var(--transition-fast);
    }

    .mobile-cta-btn svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

    .mobile-cta-call {
        background: rgba(255, 255, 255, 0.12); color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.22);
    }
    .mobile-cta-call svg { fill: var(--color-primary-light); }
    .mobile-cta-call:hover { background: rgba(255, 255, 255, 0.22); }

    .mobile-cta-estimate {
        background: var(--color-primary); color: #ffffff;
        box-shadow: 0 4px 14px rgba(27, 107, 74, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .mobile-cta-estimate svg { fill: #ffffff; }
    .mobile-cta-estimate:hover { background: var(--color-primary-dark); }

    .top-bar-left { gap: 14px; }
    .top-bar-right { display: none; }
}

@media (max-width: 480px) {
    .top-bar { font-size: 0.76rem; }
    .top-bar-left { flex-direction: column; gap: 4px; align-items: flex-start; }
    .logo-company { font-size: 1rem; }
}

/* ══════════════════════════════════════
   HERO — Service Pages
   ══════════════════════════════════════ */
.sp-hero {
    position: relative;
    background: var(--dark);
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(15, 23, 36, 0.92) 0%,
            rgba(27, 107, 74, 0.18) 40%,
            rgba(15, 23, 36, 0.88) 70%,
            rgba(15, 23, 36, 0.96) 100%);
    z-index: 1;
}

@media (max-width: 767px) {
    .sp-hero {
        padding: 4rem 0 2.5rem;
    }
}

.sp-hero-pattern {
    content: '';
    position: absolute;
    top: 40%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(27, 107, 74, 0.16) 0%, rgba(212, 151, 59, 0.06) 40%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.sp-hero-accent {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.sp-hero-accent-1 {
    top: -15%;
    right: 10%;
    background: radial-gradient(circle, rgba(212, 151, 59, 0.12), transparent 70%);
}

.sp-hero-accent-2 {
    bottom: -10%;
    left: 5%;
    background: radial-gradient(circle, rgba(27, 107, 74, 0.16), transparent 70%);
}

.sp-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .sp-hero-inner {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

/* Breadcrumb */
.sp-crumbs {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.sp-crumbs a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.sp-crumbs a:hover {
    color: #fff;
}

.sp-crumbs svg {
    width: 12px;
    height: 12px;
    opacity: 0.4;
}

/* Hero Tag */
.sp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.15rem;
    background: rgba(27, 107, 74, 0.28);
    border: 1px solid rgba(42, 157, 111, 0.55);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.sp-hero-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 10px var(--primary-light);
}

/* Hero H1 */
.sp-hero h1 {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.sp-hero h1 em {
    font-style: normal;
    color: var(--primary-light);
}

/* Hero Description */
.sp-hero-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 580px;
}

/* Hero Buttons */
.sp-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

@media (max-width: 767px) {
    .sp-hero-btns {
        flex-direction: column;
    }

    .sp-hero-btns .btn {
        justify-content: center;
    }
}

/* Hero Image */
.sp-hero-media {
    position: relative;
}

.sp-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.sp-hero-image {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .sp-hero-image {
        min-height: 240px;
    }
}

/* Hero Stat Pills */
.sp-hero-stats {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.sp-stat-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-weight: 600;
}

.sp-stat-pill svg {
    width: 16px;
    height: 16px;
    color: var(--primary-light);
}

/* ══════════════════════════════════════
   SECTION SYSTEM
   ══════════════════════════════════════ */
.sp-section {
    padding: 5rem 0;
}

.sp-section-warm {
    padding: 5rem 0;
    background: var(--bg-alt);
}

@media (max-width: 767px) {

    .sp-section,
    .sp-section-warm {
        padding: 3.25rem 0;
    }
}

/* Section Header */
.sp-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
}

.sp-heading-left {
    text-align: left;
    max-width: 780px;
    margin: 0 0 2.5rem;
}

.sp-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.38rem 0.95rem;
    background: rgba(27, 107, 74, 0.08);
    border: 1px solid rgba(27, 107, 74, 0.2);
    border-radius: 6px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.875rem;
}

.sp-label svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    stroke: var(--primary);
}

.sp-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.2vw, 2.25rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 0.875rem;
}

.sp-title .text-accent {
    color: var(--primary);
}

.sp-subtitle {
    color: var(--text-muted);
    font-size: clamp(0.88rem, 1.4vw, 1rem);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

.sp-heading-left .sp-subtitle {
    margin: 0;
}

/* ══════════════════════════════════════
   SCOPE GRID — Services We Provide
   ══════════════════════════════════════ */
.sp-scope-section {
    padding: 4.5rem 0 3.75rem;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--card-border);
}

.sp-scope-header {
    margin-bottom: 2.25rem;
}

.sp-scope-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.sp-scope-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0;
}

.sp-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 960px) {
    .sp-scope-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .sp-scope-section {
        padding: 3rem 0 2.5rem;
    }

    .sp-scope-title {
        font-size: 1.75rem;
    }

    .sp-scope-desc {
        font-size: 0.95rem;
    }

    .sp-scope-grid {
        grid-template-columns: 1fr;
    }
}

.sp-scope-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    background: #ffffff;
    border-radius: 10px;
    padding: 1.25rem 1.5rem 1.25rem 1.65rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 2px 8px rgba(44, 36, 22, 0.04);
    transition: all 0.25s var(--transition);
    text-decoration: none;
    cursor: default;
    overflow: hidden;
}

.sp-scope-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4.5px;
    background: var(--primary);
    border-radius: 0 3px 3px 0;
    transition: all 0.25s var(--transition);
}

.sp-scope-card:hover {
    transform: translateY(-3px);
    border-color: rgba(27, 107, 74, 0.25);
    box-shadow: 0 10px 25px rgba(27, 107, 74, 0.10);
}

.sp-scope-card:hover::before {
    background: var(--accent);
    top: 10px;
    bottom: 10px;
}

.sp-scope-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    background: rgba(27, 107, 74, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.sp-scope-card:hover .sp-scope-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.06);
}

.sp-scope-icon svg {
    width: 22px;
    height: 22px;
}

.sp-scope-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    transition: color 0.2s ease;
}

.sp-scope-card:hover .sp-scope-name {
    color: var(--primary);
}

/* ══════════════════════════════════════
   WARNING/DAMAGE GRID — Roof Repair
   ══════════════════════════════════════ */
.sp-warn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.125rem;
}

@media (min-width: 640px) {
    .sp-warn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sp-warn-card {
    display: flex;
    gap: 1rem;
    padding: 1.375rem;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    transition: all 0.3s var(--transition);
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}

.sp-warn-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.sp-warn-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 151, 59, 0.3);
}

.sp-warn-card:hover::before {
    opacity: 1;
}

.sp-warn-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 10px;
    flex-shrink: 0;
}

.sp-warn-icon svg {
    width: 20px;
    height: 20px;
}

.sp-warn-card h3 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.sp-warn-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

/* ══════════════════════════════════════
   VERTICAL PROCESS STEPS — Roof Repair
   ══════════════════════════════════════ */
.sp-process {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 3.5rem;
}

.sp-process::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light), var(--accent));
    border-radius: 2px;
}

.sp-process-step {
    position: relative;
    margin-bottom: 2.25rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    transition: all 0.3s;
}

.sp-process-step:last-child {
    margin-bottom: 0;
}

.sp-process-step:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 107, 74, 0.3);
}

.sp-step-num {
    position: absolute;
    left: -3.5rem;
    top: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(27, 107, 74, 0.3);
}

.sp-process-step h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.sp-process-step p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════
   MATERIAL CARDS — Roof Installation
   ══════════════════════════════════════ */
.sp-material-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .sp-material-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sp-material-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sp-material-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: all 0.35s;
    box-shadow: var(--shadow-xs);
    position: relative;
    display: flex;
    flex-direction: column;
}

.sp-material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 107, 74, 0.3);
}

.sp-material-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 12px;
    margin-bottom: 1.125rem;
}

.sp-material-icon svg {
    width: 24px;
    height: 24px;
}

.sp-material-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.sp-material-card p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

/* ══════════════════════════════════════
   HORIZONTAL TIMELINE — Installation
   ══════════════════════════════════════ */
.sp-h-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .sp-h-timeline {
        grid-template-columns: repeat(4, 1fr);
    }

    .sp-h-timeline::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 40px;
        right: 40px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        z-index: 0;
    }
}

.sp-h-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sp-h-step-dot {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 3px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.sp-h-step:hover .sp-h-step-dot {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-xl);
}

.sp-h-step h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.sp-h-step p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ══════════════════════════════════════
   COMPARE PANEL — Repair vs Replace
   ══════════════════════════════════════ */
.sp-compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .sp-compare {
        grid-template-columns: 1fr 1fr;
    }
}

.sp-compare-col {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
}

.sp-compare-repair {
    background: linear-gradient(135deg, rgba(27, 107, 74, 0.07), rgba(27, 107, 74, 0.02));
    border-color: rgba(27, 107, 74, 0.22);
}

.sp-compare-replace {
    background: linear-gradient(135deg, rgba(28, 35, 51, 0.06), rgba(212, 151, 59, 0.04));
    border-color: rgba(28, 35, 51, 0.18);
}

.sp-compare-col h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sp-compare-repair h3 {
    color: var(--primary);
}

.sp-compare-replace h3 {
    color: var(--secondary);
}

.sp-compare-col ul {
    list-style: none;
    padding: 0;
}

.sp-compare-col li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.sp-compare-col li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 0.875rem;
}

.sp-compare-repair li::before {
    color: var(--primary);
}

.sp-compare-replace li::before {
    color: var(--accent-dark);
}

/* ══════════════════════════════════════
   MILESTONE STEPS — Replacement
   ══════════════════════════════════════ */
.sp-milestones {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .sp-milestones {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-milestone:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 0.625rem);
        margin-inline: auto;
        width: 100%;
    }
}

.sp-milestone {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.sp-milestone::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.sp-milestone:hover {
    box-shadow: var(--shadow-md);
}

.sp-milestone:hover::after {
    opacity: 1;
}

.sp-milestone-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.sp-milestone h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.sp-milestone p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

/* ══════════════════════════════════════
   CHECKLIST GRID — Inspection
   ══════════════════════════════════════ */
.sp-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sp-checklist {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sp-checklist {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sp-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.125rem;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    transition: all 0.3s;
}

.sp-check-item:hover {
    border-color: rgba(27, 107, 74, 0.25);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.sp-check-mark {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 6px;
    flex-shrink: 0;
}

.sp-check-mark svg {
    width: 14px;
    height: 14px;
}

.sp-check-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.sp-check-item p {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

/* ══════════════════════════════════════
   NUMBERED INFO CARDS
   ══════════════════════════════════════ */
.sp-num-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.125rem;
}

@media (min-width: 768px) {
    .sp-num-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sp-num-card {
    display: flex;
    gap: 1.125rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    transition: all 0.3s;
}

.sp-num-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 107, 74, 0.3);
}

.sp-num-badge {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 107, 74, 0.08);
    border: 2px solid rgba(27, 107, 74, 0.2);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 10px;
    flex-shrink: 0;
}

.sp-num-card h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.sp-num-card p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

/* ══════════════════════════════════════
   FEATURE HIGHLIGHT BOXES
   ══════════════════════════════════════ */
.sp-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .sp-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sp-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sp-feature-box {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.35s;
    box-shadow: var(--shadow-xs);
}

.sp-feature-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 107, 74, 0.3);
}

.sp-feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 107, 74, 0.08);
    border: 1px solid rgba(27, 107, 74, 0.18);
    color: var(--primary);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.sp-feature-icon svg {
    width: 22px;
    height: 22px;
}

.sp-feature-box h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.sp-feature-box p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

/* ══════════════════════════════════════
   CONTENT SPLIT — Image + Text
   ══════════════════════════════════════ */
.sp-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .sp-split {
        grid-template-columns: 1fr 1fr;
    }

    .sp-split.flip {
        direction: rtl;
    }

    .sp-split.flip>* {
        direction: ltr;
    }
}

.sp-split-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
}

.sp-split-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.sp-split-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
}

.sp-split-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.78;
    margin-bottom: 0.875rem;
}

.sp-split-text p:last-child {
    margin-bottom: 0;
}

.sp-split-text a,
.sp-scope-desc a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(27, 107, 74, 0.25);
    transition: all 0.2s;
}

.sp-split-text a:hover,
.sp-scope-desc a:hover {
    color: var(--accent-dark);
    border-bottom-color: var(--accent-dark);
}

/* ══════════════════════════════════════
   BENEFIT PILLS
   ══════════════════════════════════════ */
.sp-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.sp-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.125rem;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-xs);
    transition: all 0.3s;
}

.sp-benefit:hover {
    border-color: rgba(27, 107, 74, 0.3);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.sp-benefit svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* ══════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════ */
.sp-faq {
    max-width: 780px;
    margin: 0 auto;
}

.sp-faq-item {
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    margin-bottom: 0.625rem;
    background: var(--card);
    overflow: hidden;
    transition: all 0.3s;
}

.sp-faq-item:hover {
    border-color: rgba(27, 107, 74, 0.3);
}

.sp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.125rem 1.375rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    gap: 1rem;
    transition: color 0.2s;
}

.sp-faq-q:hover {
    color: var(--primary);
}

.sp-faq-arrow {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.sp-faq-arrow svg {
    width: 13px;
    height: 13px;
    stroke: var(--text-muted);
    transition: transform 0.3s;
}

.sp-faq-item.open .sp-faq-arrow {
    background: rgba(27, 107, 74, 0.1);
}

.sp-faq-item.open .sp-faq-arrow svg {
    transform: rotate(180deg);
    stroke: var(--primary);
}

.sp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.sp-faq-item.open .sp-faq-a {
    max-height: 500px;
}

.sp-faq-a-inner {
    padding: 0 1.375rem 1.25rem;
}

.sp-faq-a-inner p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.78;
}

/* ══════════════════════════════════════
   CTA BLOCK
   ══════════════════════════════════════ */
.sp-cta {
    position: relative;
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-cta::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(27, 107, 74, 0.22), transparent 70%);
    border-radius: 50%;
    top: -25%;
    right: -8%;
    filter: blur(50px);
    pointer-events: none;
}

.sp-cta h2 {
    position: relative;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
}

.sp-cta p {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

.sp-cta-btns {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.875rem;
}

/* ══════════════════════════════════════
   LOCAL RELEVANCE CARD
   ══════════════════════════════════════ */
.sp-local-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sp-local-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -25%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 151, 59, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sp-local-card h2 {
    position: relative;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 800;
    margin-bottom: 0.875rem;
}

.sp-local-card p {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.78;
    margin-bottom: 0.875rem;
}

.sp-local-card p:last-child {
    margin-bottom: 0;
}

/* ══════════════════════════════════════
   RELATED SERVICES LINKS
   ══════════════════════════════════════ */
.sp-related {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    padding: 1.25rem;
    background: var(--bg-alt);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
}

.sp-related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-xs);
}

.sp-related-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.sp-related-link svg {
    width: 13px;
    height: 13px;
}

/* ══════════════════════════════════════
   CONTENT BLOCK
   ══════════════════════════════════════ */
.sp-content {
    max-width: 780px;
    margin: 0 auto;
}

.sp-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
}

.sp-content h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.25rem 0 0.4rem;
}

.sp-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.78;
    margin-bottom: 0.875rem;
}

.sp-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(27, 107, 74, 0.25);
    transition: all 0.2s;
}

.sp-content a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

/* ══════════════════════════════════════
   IMAGE PLACEHOLDER
   ══════════════════════════════════════ */
.img-placeholder {
    width: 100%;
    min-height: 340px;
    background: linear-gradient(135deg, #151E2E 0%, #1c2738 50%, #0F1724 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
    .img-placeholder {
        min-height: 240px;
    }
}

/* ══════════════════════════════════════
   FOOTER — Service Pages (Identical to Homepage)
   ══════════════════════════════════════ */
.site-footer,
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid,
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr 1.5fr;
    gap: 36px;
    align-items: start;
}

.footer-map-wrapper {
    position: relative;
    width: 100%;
    height: 175px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    background: #ffffff;
    padding: 5px 12px;
    border-radius: var(--radius-sm, 6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-white);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .logo-company {
    color: var(--color-white);
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.footer-logo-text .logo-tagline {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.footer-brand {
    display: block;
}

.footer-brand p,
.footer-brand-desc {
    font-size: 0.88rem;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.footer-heading,
.footer h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links,
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.footer-links a:hover,
.footer ul li a:hover {
    color: var(--color-white);
    padding-left: 4px;
    transform: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-contact-item svg,
.footer-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    fill: var(--color-primary-light);
    color: var(--color-primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #ffffff !important;
}

.footer-map-col {
    display: block;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom p,
.footer-bottom span {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .footer-grid,
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid,
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ── Print ── */
@media print {

    .sp-hero,
    .sp-cta,
    .sp-related,
    .sp-hero-stats,
    .header,
    .mobile-nav,
    .mobile-sticky-cta,
    .footer {
        display: none;
    }
}
