
/* 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;
    }
}

/* ==========================================================================
   SERVICE AREA PAGES — Unique Design System
   Color Scheme: #EE3C42 (Terracotta Red) + #111827 (Dark Slate)
   Typography: Poppins (headings) + Roboto (body)
   ========================================================================== */

/* ============================================
   HEADER STYLING
   ============================================ */
.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;
}

/* --- HERO BANNER --- */
.sa-hero {
    position: relative;
    background: linear-gradient(135deg, #111827 0%, #1a2332 50%, #111827 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}
.sa-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(238,60,66,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.sa-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #EE3C42, #ff6b6f, #EE3C42);
}
.sa-hero .container {
    position: relative;
    z-index: 2;
}
.sa-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.sa-breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.sa-breadcrumb a:hover { color: #EE3C42; }
.sa-breadcrumb .sep { color: rgba(255,255,255,0.3); }

.sa-hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}
.sa-hero-tag {
    display: inline-block;
    background: rgba(238,60,66,0.15);
    border: 1px solid rgba(238,60,66,0.3);
    color: #ff8a8d;
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.sa-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 20px;
}
.sa-hero h1 span {
    color: #EE3C42;
}
.sa-hero-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin: 0 0 28px;
}
.sa-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Image Placeholder */
.sa-hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.sa-hero-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.sa-hero-image .sa-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(17,24,39,0.9));
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
}

/* --- BUTTONS --- */
.sa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.sa-btn-primary {
    background: #EE3C42;
    color: #ffffff;
    border-color: #EE3C42;
}
.sa-btn-primary:hover {
    background: #d32f35;
    border-color: #d32f35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238,60,66,0.35);
}
.sa-btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.3);
}
.sa-btn-outline:hover {
    border-color: #EE3C42;
    color: #EE3C42;
    transform: translateY(-2px);
}
.sa-btn-dark {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}
.sa-btn-dark:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

/* --- SECTION BASE --- */
.sa-section {
    padding: 80px 0;
}
.sa-section-alt {
    background: #f8f9fb;
}
.sa-section-dark {
    background: #111827;
}

.sa-section-label {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #EE3C42;
    margin-bottom: 12px;
}
.sa-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.25;
    color: #111827;
    margin: 0 0 16px;
}
.sa-section-dark .sa-section-title {
    color: #ffffff;
}
.sa-section-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 780px;
    margin: 0 0 40px;
}
.sa-section-dark .sa-section-intro {
    color: rgba(255,255,255,0.7);
}

/* --- INTRO SPLIT --- */
.sa-intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.sa-intro-split .sa-text-block p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin: 0 0 18px;
}
.sa-intro-split .sa-text-block p:last-child {
    margin-bottom: 0;
}
.sa-intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.sa-intro-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.sa-intro-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #EE3C42;
}

/* --- SERVICES RIBBON --- */
.sa-services-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.sa-ribbon-card {
    padding: 40px 30px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: background 0.3s;
}
.sa-ribbon-card:last-child { border-right: none; }
.sa-ribbon-card:hover {
    background: rgba(238,60,66,0.08);
}
.sa-ribbon-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(238, 60, 66, 0.15);
    border: 1.5px solid rgba(238, 60, 66, 0.35);
    color: #EE3C42;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(238, 60, 66, 0.15);
}
.sa-ribbon-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sa-ribbon-card:hover .sa-ribbon-icon {
    background: #EE3C42;
    color: #ffffff;
    border-color: #EE3C42;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(238, 60, 66, 0.45);
}
.sa-ribbon-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
    margin: 0 0 10px;
}
.sa-ribbon-card h3 a {
    color: inherit;
    text-decoration: none;
}
.sa-ribbon-card h3 a:hover,
.sa-ribbon-card h3 a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.sa-ribbon-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* --- CITY SERVICE-AREA MAP --- */
.sa-city-map {
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
}
.sa-city-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* --- RELATED ROOFING SERVICE CARDS --- */
.sa-related-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.sa-related-service-card {
    display: block;
    min-height: 100%;
    padding: 28px 24px;
    color: #111827;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(17, 24, 39, 0.07);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.sa-related-service-card:hover,
.sa-related-service-card:focus-visible {
    color: #111827;
    border-color: #EE3C42;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.14);
    transform: translateY(-4px);
}
.sa-related-service-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
}
.sa-related-service-card p {
    margin: 0;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.65;
}
.sa-related-service-card .sa-related-link {
    display: inline-block;
    margin-top: 16px;
    color: #C92F35;
    font-weight: 700;
    font-size: 0.88rem;
}

/* --- PROBLEMS GRID --- */
.sa-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sa-problem-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.sa-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s;
}
.sa-problem-card:hover {
    border-color: rgba(238,60,66,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.sa-problem-card:hover::before {
    background: #EE3C42;
}
.sa-problem-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #111827;
    margin: 0 0 10px;
}
.sa-problem-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
}

/* --- WEATHER SECTION (split with icon list) --- */
.sa-weather-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.sa-weather-grid .sa-text-block h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #111827;
    margin: 0 0 14px;
}
.sa-weather-grid .sa-text-block p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    color: #374151;
    margin: 0 0 16px;
}
.sa-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sa-checklist li {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid #f3f4f6;
}
.sa-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #EE3C42;
    font-weight: 700;
    font-size: 1rem;
}
.sa-checklist li:last-child {
    border-bottom: none;
}

/* --- REPAIR VS REPLACE --- */
.sa-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.sa-compare-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 36px 32px;
    border: 1px solid #e5e7eb;
    position: relative;
}
.sa-compare-card.highlight {
    border-color: #EE3C42;
    box-shadow: 0 4px 20px rgba(238,60,66,0.12);
}
.sa-compare-card .sa-compare-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: #EE3C42;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
}
.sa-compare-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #111827;
    margin: 0 0 14px;
}
.sa-compare-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 16px;
}
.sa-compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sa-compare-card ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #374151;
    padding: 8px 0 8px 24px;
    position: relative;
}
.sa-compare-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #EE3C42;
    font-weight: 700;
}

/* --- PROPERTIES SECTION --- */
.sa-properties-flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.sa-prop-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s;
}
.sa-prop-tag:hover {
    border-color: #EE3C42;
    color: #EE3C42;
    box-shadow: 0 4px 12px rgba(238,60,66,0.1);
}
.sa-prop-tag .tag-icon {
    font-size: 1.1rem;
}

/* --- STEPS SECTION --- */
.sa-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
.sa-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #EE3C42, rgba(238,60,66,0.2));
    z-index: 0;
}
.sa-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}
.sa-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #111827;
    color: #EE3C42;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid #EE3C42;
    transition: all 0.3s;
}
.sa-step:hover .sa-step-num {
    background: #EE3C42;
    color: #ffffff;
}
.sa-step h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: #ffffff;
    margin: 0 0 8px;
}
.sa-step p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* --- WHY LOCAL SECTION --- */
.sa-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sa-why-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    border-left: 4px solid #EE3C42;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}
.sa-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.sa-why-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #111827;
    margin: 0 0 10px;
}
.sa-why-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
}

/* --- SERVICE AREAS LINKS --- */
.sa-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.sa-area-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(238,60,66,0.06);
    border: 1px solid rgba(238,60,66,0.12);
    border-radius: 10px;
    padding: 16px 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: #111827;
    transition: all 0.3s;
}
.sa-area-link:hover {
    background: #EE3C42;
    color: #ffffff;
    border-color: #EE3C42;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238,60,66,0.25);
}
.sa-area-link .arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s;
}
.sa-area-link:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}
.sa-area-link.current {
    background: #EE3C42;
    color: #ffffff;
    border-color: #EE3C42;
    pointer-events: none;
}

/* --- FAQ ACCORDION --- */
.sa-faq-list {
    max-width: 840px;
    margin: 0 auto;
}
.sa-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.sa-faq-item.active {
    border-color: rgba(238,60,66,0.4);
}
.sa-faq-q {
    width: 100%;
    background: #ffffff;
    border: none;
    text-align: left;
    padding: 20px 56px 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    color: #111827;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}
.sa-faq-q:hover {
    background: #fafafa;
}
.sa-faq-q .sa-faq-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(238,60,66,0.1);
    color: #EE3C42;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
}
.sa-faq-item.active .sa-faq-q .sa-faq-icon {
    background: #EE3C42;
    color: #ffffff;
    transform: translateY(-50%) rotate(45deg);
}
.sa-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.sa-faq-a-inner {
    padding: 0 24px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.94rem;
    line-height: 1.7;
    color: #4b5563;
}

/* --- CTA BANNER --- */
.sa-cta-banner {
    background: linear-gradient(135deg, #EE3C42 0%, #d32f35 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sa-cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.sa-cta-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}
.sa-cta-banner p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    max-width: 640px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}
.sa-cta-banner .sa-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Prominent Request an Assessment CTA Button */
.sa-cta-banner .sa-btn-outline {
    background: #ffffff !important;
    color: #EE3C42 !important;
    border: 2px solid #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sa-cta-banner .sa-btn-outline:hover {
    background: #111827 !important;
    color: #ffffff !important;
    border-color: #111827 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- INTERNAL LINKS HIGHLIGHT --- */
.sa-content-link {
    color: #EE3C42;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(238,60,66,0.3);
    transition: border-color 0.2s;
}
.sa-content-link:hover {
    border-color: #EE3C42;
}

/* --- ANIMATE ON SCROLL --- */
.sa-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.sa-animate.sa-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .sa-related-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sa-hero h1 { font-size: 2.1rem; }
    .sa-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .sa-hero-image { max-width: 480px; }
    .sa-intro-split { grid-template-columns: 1fr; gap: 36px; }
    .sa-services-ribbon { grid-template-columns: repeat(2, 1fr); }
    .sa-ribbon-card { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .sa-ribbon-card:nth-child(2n) { border-right: none; }
    .sa-problems-grid { grid-template-columns: repeat(2, 1fr); }
    .sa-weather-grid { grid-template-columns: 1fr; }
    .sa-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .sa-steps::before { display: none; }
    .sa-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sa-areas-grid { grid-template-columns: repeat(3, 1fr); }
    .sa-section-title { font-size: 1.7rem; }
}

@media (max-width: 768px) {
    .sa-hero { padding: 80px 0 60px; }
    .sa-hero h1 { font-size: 1.75rem; }
    .sa-hero-btns { flex-direction: column; }
    .sa-hero-btns .sa-btn { text-align: center; justify-content: center; }
    .sa-section { padding: 60px 0; }
    .sa-section-title { font-size: 1.5rem; }
    .sa-services-ribbon { grid-template-columns: 1fr; }
    .sa-ribbon-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .sa-problems-grid { grid-template-columns: 1fr; }
    .sa-compare-grid { grid-template-columns: 1fr; }
    .sa-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sa-why-grid { grid-template-columns: 1fr; }
    .sa-areas-grid { grid-template-columns: repeat(2, 1fr); }
    .sa-properties-flex { gap: 12px; }
    .sa-prop-tag { padding: 10px 18px; font-size: 0.82rem; }
    .sa-cta-banner h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .sa-related-services-grid { grid-template-columns: 1fr; }
    .sa-hero h1 { font-size: 1.5rem; }
    .sa-container { padding: 0 16px; }
    .sa-areas-grid { grid-template-columns: 1fr; }
    .sa-steps { grid-template-columns: 1fr; }
    .sa-hero-image img { height: 240px; }
    .sa-cta-banner { padding: 50px 0; }
}

/* 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;
    }
}
