
/* MOBILE MENU BASE & DESKTOP OVERRIDE */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #111827;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    transition: right 0.4s ease;
    overflow-y: auto;
}

@media (min-width: 993px) {
    .mobile-menu, #mobile-menu, .mobile-toggle, #mobile-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* ============================================
   Roofers El Cajon – Service Page Stylesheet
   Unique "Architectural Authority" Design
   ============================================ */

/* --- Inherit Design Tokens from Homepage --- */
:root {
    --sp-primary: #ee3c42;
    --sp-dark: #111827;
    --sp-body: #374151;
    --sp-white: #FFFFFF;
    --sp-off-white: #f9fafb;
    --sp-light-gray: #eceff3;
    --sp-accent: #ee3c42;
    --sp-dark-alt: #1e293b;

    --sp-font-heading: 'Poppins', sans-serif;
    --sp-font-body: 'Roboto', sans-serif;

    --sp-container: 1200px;
    --sp-radius: 12px;
    --sp-radius-lg: 20px;
    --sp-transition: 0.3s ease;
    --sp-shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.07);
    --sp-shadow-md: 0 8px 28px rgba(17, 24, 39, 0.1);
    --sp-shadow-lg: 0 16px 48px rgba(17, 24, 39, 0.14);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--sp-font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--sp-body);
    background-color: var(--sp-white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sp-primary); text-decoration: none; transition: color var(--sp-transition); }
a:hover { color: #d42f34; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sp-font-heading);
    font-weight: 700;
    color: var(--sp-dark);
    line-height: 1.3;
}

h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.05rem, 2.2vw, 1.25rem); margin-bottom: 0.75rem; }
h4 { font-size: clamp(0.95rem, 1.8vw, 1.1rem); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; font-size: 1rem; }
p:last-child { margin-bottom: 0; }

.container,
.sp-container {
    max-width: var(--sp-container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================
   HEADER (shared from homepage)
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

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

.site-logo img {
    max-height: 65px;
    height: auto;
    width: auto;
    transition: all 0.3s ease;
}

.header-nav ul.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav .nav-item {
    position: relative;
}

.header-nav .nav-link {
    color: #ee3c42;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.header-nav .nav-link:hover {
    color: #d42f34;
}

/* Our Services Trigger Link - White navbar background by default, turns red on hover */
.header-nav .btn-nav-services {
    color: #ee3c42 !important;
    background: transparent !important;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.header-nav .nav-item.has-dropdown:hover > .btn-nav-services,
.header-nav .btn-nav-services:hover {
    background: #ee3c42 !important;
    color: #ffffff !important;
}

.header-nav .arrow {
    font-size: 0.75rem;
    margin-left: 2px;
}

/* Dropdown Base */
.header-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #ee3c42;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1050;
    padding: 0;
    overflow: hidden;
}

.header-nav .nav-item.has-dropdown:hover > .dropdown-menu,
.header-nav .nav-item.has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Dropdown (Our Services - Flyout Style) */
.header-nav .mega-dropdown {
    width: 230px;
    overflow: visible;
}

.header-nav .services-menu-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-nav .has-sub-dropdown {
    position: relative;
}

.header-nav .services-menu-list > li {
    border-bottom: 1px solid #f3f4f6;
}

.header-nav .services-menu-list > li:last-child {
    border-bottom: none;
}

/* Sub-dropdown Flyout for Residential Roofing */
.header-nav .sub-dropdown-menu {
    position: absolute;
    top: -1px;
    left: 100%;
    width: 220px;
    background: #ffffff;
    border: 1px solid #ee3c42;
    border-radius: 0 6px 6px 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: all 0.25s ease;
    z-index: 1060;
    overflow: hidden;
}

.header-nav .sub-dropdown-menu ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-nav .has-sub-dropdown:hover > .sub-dropdown-menu,
.header-nav .has-sub-dropdown:focus-within > .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.header-nav .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    color: #ee3c42;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-nav .sub-dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

.header-nav .dropdown-item:hover {
    background: rgba(238, 60, 66, 0.08);
    color: #d42f34;
}

/* Active highlight item in left column */
.header-nav .dropdown-item.active-highlight {
    background: #ee3c42;
    color: #ffffff !important;
}

.header-nav .dropdown-item.active-highlight:hover {
    background: #d42f34;
}

/* Simple Dropdown (Service Area) */
.header-nav .simple-dropdown {
    min-width: 200px;
    padding: 6px 0;
}

.header-nav .simple-dropdown ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-nav .simple-dropdown .dropdown-item {
    border-bottom: none;
    padding: 10px 18px;
}

/* Header CTA Phone Pill */
.header-cta .header-phone-pill {
    background: #ee3c42;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(238, 60, 66, 0.3);
    transition: all 0.3s ease;
}

.header-cta .header-phone-pill:hover {
    background: #d42f34;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 60, 66, 0.45);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: background 0.2s ease;
    z-index: 1010;
}

.mobile-toggle:hover,
.mobile-toggle:focus {
    background: rgba(238, 60, 66, 0.1);
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: #111827;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Backdrop Overlay */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2400;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Menu Side Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #111827;
    z-index: 2500;
    display: flex;
    flex-direction: column;
    padding: 70px 24px 32px;
    gap: 6px;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: #ee3c42;
    color: #ffffff;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
    background: rgba(238, 60, 66, 0.15);
    color: #ffffff;
    padding-left: 16px;
}

.mobile-menu-section {
    margin: 8px 0;
    padding: 6px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-heading {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ee3c42;
    margin-bottom: 6px;
    padding-left: 4px;
}

.mobile-menu-section a {
    padding-left: 12px;
    font-size: 0.9rem;
}

/* ============================================
   SERVICE HERO BANNER
   ============================================ */
.service-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(160deg, var(--sp-dark) 0%, var(--sp-dark-alt) 50%, #0f172a 100%);
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--sp-primary), var(--sp-dark-alt), var(--sp-primary));
}

.service-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(238, 60, 66, 0.06) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.service-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}

/* Breadcrumbs */
.sp-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.82rem;
}

.sp-breadcrumbs a {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    transition: color var(--sp-transition);
}

.sp-breadcrumbs a:hover { color: var(--sp-accent); }
.sp-breadcrumbs .sep { color: rgba(255, 255, 255, 0.3); }
.sp-breadcrumbs .current { color: var(--sp-accent); font-weight: 600; }

.service-hero h1 {
    color: var(--sp-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero h1 .highlight {
    color: var(--sp-accent);
}

.service-hero-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 580px;
}

.service-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-sp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sp-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--sp-transition);
    text-align: center;
    line-height: 1;
}

.btn-sp-primary {
    background: var(--sp-primary);
    color: var(--sp-white);
    border-color: var(--sp-primary);
}

.btn-sp-primary:hover {
    background: #d42f34;
    color: var(--sp-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 60, 66, 0.35);
}

.btn-sp-outline {
    background: transparent;
    color: var(--sp-white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-sp-outline:hover {
    background: var(--sp-white);
    color: var(--sp-dark);
    transform: translateY(-2px);
}

/* Hero Sidebar Card */
.hero-sidebar-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: var(--sp-radius-lg);
    padding: 32px 28px;
}

.hero-sidebar-card h3 {
    color: var(--sp-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-sidebar-list li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.hero-sidebar-list li::before {
    content: '✓';
    color: var(--sp-accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.sp-section {
    padding: 80px 0;
}

.sp-section-alt {
    background: var(--sp-off-white);
}

.sp-section-dark {
    background: linear-gradient(145deg, var(--sp-dark) 0%, var(--sp-dark-alt) 100%);
}

.sp-section-dark h2 { color: var(--sp-white); }
.sp-section-dark p { color: rgba(255, 255, 255, 0.78); }
.sp-section-dark .sp-eyebrow { color: var(--sp-accent); }
.sp-section-dark .sp-eyebrow::before { background: var(--sp-accent); }

/* Section Eyebrow */
.sp-eyebrow {
    display: inline-block;
    font-family: var(--sp-font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sp-accent);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.sp-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 3px;
    background: var(--sp-accent);
    border-radius: 2px;
}

.sp-section-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.sp-section-intro {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-top: 8px;
}

/* Two-Column Content */
.sp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.sp-two-col.reverse {
    direction: rtl;
}

.sp-two-col.reverse > * {
    direction: ltr;
}

.sp-img-block {
    position: relative;
    border-radius: var(--sp-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--sp-light-gray);
}

.sp-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Uncropped Image Display */
.sp-img-block.no-crop {
    aspect-ratio: auto;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.sp-img-block.no-crop img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--sp-radius-lg);
}

.sp-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--sp-primary);
    color: var(--sp-white);
    font-family: var(--sp-font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 8px;
}

.sp-content-block h2 {
    margin-bottom: 18px;
}

.sp-content-block p {
    line-height: 1.75;
}

/* ============================================
   REPAIR TYPES CARDS GRID
   ============================================ */
.sp-repair-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sp-repair-card {
    background: var(--sp-white);
    border-radius: var(--sp-radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: var(--sp-shadow-sm);
    transition: all var(--sp-transition);
    position: relative;
    overflow: hidden;
}

.sp-repair-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sp-primary);
    opacity: 0.85;
    transition: opacity var(--sp-transition);
}

.sp-repair-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sp-shadow-md);
    border-color: rgba(238, 60, 66, 0.25);
}

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

.sp-repair-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(238, 60, 66, 0.08);
    color: var(--sp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--sp-transition);
}

.sp-repair-card:hover .sp-repair-card-icon {
    background: var(--sp-primary);
    color: var(--sp-white);
}

.sp-repair-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--sp-dark);
}

.sp-repair-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--sp-body);
    margin-bottom: 0;
}

/* ============================================
   CHECKLIST / BENEFITS SECTION
   ============================================ */
.sp-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sp-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background: var(--sp-white);
    border-radius: var(--sp-radius);
    border: 1px solid rgba(17, 24, 39, 0.06);
    transition: all var(--sp-transition);
}

.sp-section-alt .sp-check-item {
    background: var(--sp-white);
}

.sp-check-item:hover {
    box-shadow: var(--sp-shadow-sm);
    transform: translateY(-2px);
}

.sp-check-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(238, 60, 66, 0.1), rgba(17, 24, 39, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sp-primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.sp-check-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.sp-check-item p {
    font-size: 0.87rem;
    line-height: 1.55;
}

/* ============================================
   VERTICAL TIMELINE / PROCESS
   ============================================ */
.sp-timeline {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    padding-left: 48px;
}

.sp-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--sp-primary), var(--sp-dark-alt), var(--sp-primary));
    border-radius: 2px;
}

.sp-timeline-step {
    position: relative;
    padding: 0 0 40px 32px;
}

.sp-timeline-step:last-child {
    padding-bottom: 0;
}

.sp-timeline-dot {
    position: absolute;
    left: -39px;
    top: 2px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sp-white);
    border: 3px solid var(--sp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sp-font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--sp-primary);
    transition: all var(--sp-transition);
    z-index: 1;
}

.sp-timeline-step:hover .sp-timeline-dot {
    background: var(--sp-primary);
    color: var(--sp-white);
}

.sp-timeline-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.sp-timeline-step p {
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ============================================
   SERVICE CARDS ROW
   ============================================ */
.sp-services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sp-service-link-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--sp-radius);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--sp-transition);
    text-decoration: none;
    display: block;
}

.sp-service-link-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(238, 60, 66, 0.4);
}

.sp-service-link-card h3 {
    color: var(--sp-white);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.sp-service-link-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.5;
}

.sp-service-link-card .sp-link-arrow {
    display: inline-block;
    margin-top: 12px;
    color: var(--sp-accent);
    font-family: var(--sp-font-heading);
    font-weight: 600;
    font-size: 0.82rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.sp-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-faq-item {
    background: var(--sp-white);
    border-radius: var(--sp-radius);
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.06);
    transition: box-shadow var(--sp-transition);
}

.sp-section-alt .sp-faq-item {
    background: var(--sp-white);
}

.sp-faq-item:hover {
    box-shadow: var(--sp-shadow-sm);
}

.sp-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    border-left: 4px solid transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--sp-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--sp-dark);
    gap: 14px;
    line-height: 1.4;
    transition: all var(--sp-transition);
}

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

.sp-faq-item.active .sp-faq-btn {
    border-left-color: var(--sp-primary);
    color: var(--sp-primary);
}

.sp-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sp-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--sp-primary);
    transition: all var(--sp-transition);
    font-style: normal;
}

.sp-faq-item.active .sp-faq-icon {
    background: var(--sp-primary);
    color: var(--sp-white);
    transform: rotate(45deg);
}

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

.sp-faq-answer-inner {
    padding: 0 24px 20px 28px;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--sp-body);
}

.sp-faq-item.active .sp-faq-answer {
    max-height: 500px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.sp-cta-banner {
    padding: 80px 0;
    background: linear-gradient(145deg, var(--sp-dark) 0%, var(--sp-dark-alt) 50%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sp-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--sp-primary), transparent, var(--sp-primary));
}

.sp-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.sp-cta-banner h2 {
    color: var(--sp-white);
    margin-bottom: 16px;
}

.sp-cta-banner p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.sp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER (shared from homepage)
   ============================================ */
.site-footer {
    background: #0d0f14;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
    font-family: var(--sp-font-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.3fr;
    gap: 32px;
    padding-bottom: 50px;
    align-items: start;
}

.footer-col h4 {
    color: var(--sp-primary);
    font-family: var(--sp-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: none;
    letter-spacing: 0;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--sp-transition);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--sp-primary);
}

/* Map Box in Column 3 */
.footer-map-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map-box iframe {
    display: block;
    width: 100%;
    height: 220px;
}

/* Info Card in Column 4 */
/* Info Card in Column 4 */
.footer-info-card {
    background: #ffffff !important;
    color: #111827 !important;
    padding: 24px 20px !important;
    border-radius: 14px !important;
    text-align: center !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

.footer-info-card h4.card-company-name {
    color: #ee3c42 !important;
    font-family: var(--sp-font-heading);
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
}

.footer-info-card p.card-address {
    font-size: 0.88rem !important;
    color: #4b5563 !important;
    line-height: 1.4 !important;
    margin-bottom: 14px !important;
    font-weight: 500 !important;
}

.footer-info-card h5.card-subtitle {
    color: #ee3c42 !important;
    font-family: var(--sp-font-heading);
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    margin-top: 12px !important;
    margin-bottom: 3px !important;
}

.footer-info-card p.card-phone {
    margin-bottom: 8px !important;
}

.footer-info-card p.card-phone a {
    color: #111827 !important;
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: color var(--sp-transition);
}

.footer-info-card p.card-phone a:hover {
    color: #ee3c42 !important;
}

.footer-info-card p.card-hours {
    font-size: 0.85rem !important;
    color: #4b5563 !important;
    font-weight: 500 !important;
    margin-bottom: 16px !important;
}

.card-social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
}

.social-icon-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #ee3c42 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: transform var(--sp-transition), background var(--sp-transition);
}

.social-icon-btn svg {
    fill: #ffffff !important;
    width: 16px !important;
    height: 16px !important;
}

.social-icon-btn:hover {
    background: #d42f34 !important;
    transform: translateY(-2px);
}

/* Bottom Legal Bar */
.footer-bottom-bar {
    background: #06080c !important;
    padding: 18px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-bottom-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
}

.footer-legal-nav {
    display: flex !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}

.footer-legal-nav a {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color var(--sp-transition);
}

.footer-legal-nav a:hover {
    color: #ee3c42 !important;
    text-decoration: underline !important;
}

.footer-copyright-text {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sp-primary), var(--sp-dark));
    width: 0%;
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes spFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.sp-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sp-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .mobile-toggle { display: flex; }

    .service-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-sidebar-card {
        max-width: 480px;
    }

    .sp-two-col,
    .sp-two-col.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 36px;
    }

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

    .sp-services-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Small */
@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .sp-section {
        padding: 60px 0;
    }

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

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

    .sp-repair-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sp-cta-banner {
        padding: 60px 0;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .service-hero {
        padding: 110px 0 48px;
    }

    .service-hero h1 { font-size: 1.6rem; }
    .service-hero-text { font-size: 0.95rem; }

    .service-hero-actions {
        flex-direction: column;
    }

    .service-hero-actions .btn-sp {
        width: 100%;
        justify-content: center;
    }

    .sp-section {
        padding: 48px 0;
    }

    .sp-section-header {
        margin-bottom: 32px;
    }

    .sp-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .sp-cta-actions .btn-sp {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .sp-timeline {
        padding-left: 40px;
    }

    .sp-timeline-dot {
        left: -31px;
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .sp-timeline::before {
        left: 14px;
    }
}

/* Mobile Menu Styles */
@media (min-width: 993px) {
    .mobile-menu, .mobile-toggle {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-toggle span {
        width: 24px;
        height: 2px;
        background: #111827;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #111827;
        z-index: 2000;
        display: flex;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 8px;
        transition: right 0.4s ease;
        overflow-y: auto;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 2rem;
        cursor: pointer;
        line-height: 1;
    }

    .mobile-menu a {
        color: rgba(255, 255, 255, 0.85);
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-decoration: none;
    }

    .mobile-menu-section {
        margin: 10px 0;
        padding: 6px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-menu-heading {
        display: block;
        font-family: 'Poppins', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #ee3c42;
        margin-bottom: 6px;
    }

    .mobile-menu-section a {
        padding-left: 12px;
        font-size: 0.92rem;
    }
}
