/* =============================================
   MERCEDES MOVING - RESPONSIVE NAVIGATION THEME
   Clean Light Color Scheme
   ============================================= */

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Per-section reveal variants */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children of a section */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}
.stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.is-visible > *:nth-child(8) { transition-delay: 560ms; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale,
    .stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

:root {
    --color-navy: #0a2540;
    --color-navy-light: #1a3a5c;
    --color-red: #ff0047;
    --color-red-dark: #cc0038;
    --color-red-light: #ff3355;
    --color-blue: #168CFF;
    --color-coral: #FF514B;
    --color-white: #ffffff;
    --color-gray-50: #f8f9fa;
    --color-gray-100: #f1f3f5;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;
    
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    
    /* Header heights */
    --header-height: 90px;
    --header-height-scrolled: 70px;
    --header-height-mobile: 85px;
    
    /* Z-index scale */
    --z-header: 1000;
    --z-dropdown: 1010;
    --z-mega-menu: 1020;
    --z-overlay: 1030;
    --z-mobile-menu: 1040;
    --z-modal: 1050;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; list-style: none; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { 
    font-family: var(--font-primary); 
    font-size: 16px; 
    line-height: 1.6; 
    color: var(--color-gray-800); 
    background: var(--color-white); 
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all var(--transition-fast); }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; color: var(--color-navy); font-weight: 600; }
p { margin-bottom: 1rem; }

/* =============================================
   TOP UTILITY BAR
   ============================================= */
.top-utility-bar { 
    background: rgb(45, 45, 72); 
    color: rgba(255,255,255,0.95); 
    font-size: 12px; 
    padding: 8px 0; 
}
.top-utility-bar .container { 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.utility-left { display: flex; align-items: center; gap: 6px; font-weight: 500; }
.utility-phone { display: flex; align-items: center; gap: 6px; color: var(--color-white); font-weight: 600; }

/* =============================================
   MAIN HEADER - DESKTOP
   ============================================= */
.site-header { 
    background: var(--color-white); 
    position: fixed; 
    top: 0; 
    left: 0;
    right: 0;
    z-index: var(--z-header); 
    box-shadow: 0 1px 0 var(--color-gray-200);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-main {
    background: var(--color-white);
}

.header-container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
    height: var(--header-height);
    gap: 20px;
}

/* Logo */
.site-branding { 
    flex-shrink: 0; 
}

.header-logo-img { 
    height: 65px; 
    width: auto; 
    max-width: 240px;
    object-fit: contain;
    transition: all var(--transition-base);
}

.site-header.scrolled .header-logo-img {
    height: 55px;
}

/* Main Navigation */
.main-navigation { 
    flex: 1; 
    display: flex; 
    justify-content: center;
}

.nav-menu { 
    display: flex; 
    align-items: center; 
    gap: 0;
}

.nav-menu > li > a { 
    display: flex; 
    align-items: center;
    padding: 10px 16px; 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--color-gray-700); 
    transition: all var(--transition-fast); 
    white-space: nowrap;
}

.nav-menu > li > a:hover { 
    color: var(--color-red); 
}

/* =============================================
   MEGA MENU - DESKTOP
   ============================================= */
.menu-item-has-children { 
    position: relative; 
}

.mega-menu { 
    position: absolute; 
    top: 100%; 
    left: 50%; 
    transform: translateX(-50%) translateY(10px);
    background: var(--color-white); 
    border-radius: var(--radius-xl); 
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); 
    padding: 28px 32px; 
    min-width: 720px; 
    opacity: 0; 
    visibility: hidden; 
    transition: all 200ms ease; 
    pointer-events: none; 
    border: 1px solid var(--color-gray-200);
    z-index: var(--z-mega-menu);
}

.menu-item-has-children:hover > .mega-menu,
.menu-item-has-children:focus-within > .mega-menu { 
    opacity: 1; 
    visibility: visible; 
    pointer-events: auto; 
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
}

.mega-menu-column h4 { 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    color: var(--color-red); 
    margin-bottom: 14px; 
}

.mega-menu-column ul li { 
    margin-bottom: 8px; 
}

.mega-menu-column ul li a { 
    font-size: 14px; 
    color: var(--color-gray-700); 
}

.mega-menu-column ul li a:hover { 
    color: var(--color-red); 
}

.mega-menu-cta {
    padding-left: 16px;
    border-left: 1px solid var(--color-gray-200);
}

/* =============================================
   HEADER CTA
   ============================================= */
.header-cta { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    flex-shrink: 0; 
}

.header-phone {
    display: flex;
    align-items: center;
    color: var(--color-navy);
    padding: 8px;
}

.header-phone svg {
    color: var(--color-red);
}

.btn-quote { 
    background: var(--color-red); 
    color: var(--color-white); 
    padding: 10px 20px; 
    font-size: 13px; 
    font-weight: 600; 
    border-radius: var(--radius-full); 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.btn-quote:hover { 
    background: var(--color-red-dark); 
    transform: translateY(-1px);
}

/* =============================================
   MOBILE MENU TOGGLE (hidden on desktop)
   ============================================= */
.menu-toggle { 
    display: none; 
}

/* =============================================
   DESKTOP STYLES (default - 1025px and up)
   ============================================= */
@media (min-width: 1025px) {
    .mobile-menu,
    .mobile-menu-overlay,
    .mobile-menu-close,
    .mobile-cta-phone,
    .mobile-cta-quote,
    .mobile-nav-menu {
        display: none !important;
    }
}

/* =============================================
   TABLET STYLES (768px - 1024px)
   ============================================= */
@media (max-width: 1024px) and (min-width: 769px) {
    .header-container {
        padding: 0 1rem;
        gap: 12px;
    }
    
    .header-logo-img {
        height: 55px;
        max-width: 180px;
    }
    
    .nav-menu > li > a {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .btn-quote {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .header-phone {
        display: none;
    }
    
    .top-utility-bar .container {
        padding: 0 1rem;
    }
    
    .utility-left span {
        display: none;
    }
}

/* =============================================
   MOBILE STYLES (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
    .top-utility-bar {
        display: none;
    }
    
    .site-header {
        height: var(--header-height-mobile);
    }
    
    .header-container {
        height: var(--header-height-mobile);
        padding: 0 16px;
        gap: 12px;
    }
    
    .site-branding {
        flex: 1;
        min-width: 0;
    }
    
    .header-logo-img {
        height: 55px;
        max-width: 150px;
        width: auto;
    }
    
    .main-navigation,
    .header-cta {
        display: none !important;
    }
    
    /* Mobile Toggle Button */
    .menu-toggle { 
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--color-red);
        border: none;
        border-radius: 10px;
        cursor: pointer;
        flex-shrink: 0;
        padding: 0;
    }
    
    .hamburger {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--color-white);
        position: relative;
    }
    
    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        left: 0;
        width: 20px;
        height: 2px;
        background: var(--color-white);
        transition: all var(--transition-fast);
    }
    
    .hamburger::before { top: -6px; }
    .hamburger::after { bottom: -6px; }
    
    /* Active hamburger to X */
    .menu-toggle.active .hamburger {
        background: transparent;
    }
    
    .menu-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }
    
    .menu-toggle.active .hamburger::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: var(--z-overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Menu Panel */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100%;
        max-height: 100dvh;
        background: var(--color-white);
        z-index: var(--z-mobile-menu);
        transform: translateX(100%);
        transition: transform 300ms ease;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
    }
    
    /* Mobile Menu Close */
    .mobile-menu-close {
        position: absolute;
        top: 16px;
        right: 16px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        color: var(--color-gray-700);
        z-index: 10;
    }
    
    /* Mobile Menu Content */
    .mobile-menu-content {
        padding: 80px 24px 40px;
        min-height: 100%;
    }
    
    /* Mobile CTA Phone */
    .mobile-cta-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        margin-bottom: 16px;
        background: var(--color-gray-50);
        border-radius: var(--radius-lg);
        font-weight: 600;
        color: var(--color-navy);
    }
    
    .mobile-cta-phone svg {
        color: var(--color-red);
    }
    
    /* Mobile CTA Quote Button */
    .mobile-cta-quote {
        display: block;
        background: var(--color-red);
        color: var(--color-white);
        text-align: center;
        padding: 16px;
        border-radius: var(--radius-lg);
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 24px;
        font-size: 14px;
    }
    
    .mobile-cta-quote:hover {
        background: var(--color-red-dark);
    }
    
    /* Mobile Nav Menu */
    .mobile-nav-menu > li {
        border-bottom: 1px solid var(--color-gray-100);
    }
    
    .mobile-nav-menu > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--color-navy);
    }
    
    .mobile-nav-menu > li > a .arrow {
        font-size: 20px;
        color: var(--color-gray-400);
        transition: transform var(--transition-fast);
    }
    
    .mobile-nav-menu > li > a.active .arrow {
        transform: rotate(90deg);
    }
    
    /* Mobile Submenu */
    .mobile-submenu {
        display: none;
        padding-left: 12px;
    }
    
    .mobile-submenu.active {
        display: block;
    }
    
    .mobile-submenu li a {
        display: block;
        padding: 12px 0;
        font-size: 14px;
        color: var(--color-gray-600);
        border-bottom: 1px solid var(--color-gray-50);
    }
    
    .mobile-submenu li:last-child a {
        border-bottom: none;
    }
    
    .mobile-submenu li a:hover {
        color: var(--color-red);
    }
}

/* =============================================
   SMALL MOBILE (max-width: 430px)
   ============================================= */
@media (max-width: 430px) {
    .header-container {
        padding: 0 12px;
        gap: 8px;
    }
    
    .header-logo-img {
        height: 40px;
        max-width: 130px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-menu-content {
        padding: 70px 20px 30px;
    }
}

/* =============================================
   BODY SCROLL LOCK (when mobile menu open)
   ============================================= */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }
}

/* =============================================
   WORDPRESS ADMIN BAR COMPATIBILITY
   ============================================= */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar .mobile-menu {
    top: 0;
    max-height: 100dvh;
    height: 100%;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

@media (max-width: 768px) {
    .admin-bar .site-header {
        top: 0;
    }
}

/* =============================================
   HERO SECTION (keep existing styles below)
   ============================================= */
.hero-section { 
    background: #ea144f;
    padding: 70px 0 60px; 
    margin-top: var(--header-height);
}

.site-header.scrolled + #page .hero-section,
.admin-bar .site-header.scrolled + #page .hero-section {
    padding-top: calc(70px + var(--header-height-scrolled));
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: var(--header-height-mobile);
        padding: 100px 0 50px;
    }
}

.hero-container { 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 60px;
    align-items: center;
}

.hero-content { color: var(--color-white); max-width: 620px; }
.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    background: rgba(255,255,255,0.15); 
    border: 1px solid rgba(255,255,255,0.25); 
    padding: 8px 18px; 
    border-radius: var(--radius-full); 
    font-size: 11px; 
    font-weight: 700; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    color: #fff; 
    margin-bottom: 24px; 
}
.hero-badge svg { opacity: 0.9; }
.hero-headline { font-size: 64px; 
    font-weight: 800; 
    line-height: 1.02; 
    margin-bottom: 22px; 
    letter-spacing: -2.5px; 
    color: var(--color-white); 
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.hero-accent { color: #061d3a; display: inline-block; font-weight: 800; }

/* Force two-line headline on mobile so the layout never collapses */
@media (max-width: 768px) {
    .hero-headline br,
    .hero-accent {
        display: block;
    }
}
.hero-subheadline { 
    font-size: 19px; 
    line-height: 1.55; 
    color: rgba(255,255,255,0.9); 
    max-width: 540px; 
    margin-bottom: 36px; 
    font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-ctas .btn-primary { 
    background: #ffffff;
    color: #ea144f;
    padding: 18px 36px; 
    font-size: 14px; 
    font-weight: 700; 
    border-radius: var(--radius-full); 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    border: none; 
    cursor: pointer; 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-base);
}
.hero-ctas .btn-primary:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 14px 30px -5px rgba(0, 0, 0, 0.3); }
.hero-ctas .btn-outline { 
    background: transparent; 
    color: var(--color-white); 
    padding: 18px 32px; 
    font-size: 14px; 
    font-weight: 700; 
    border-radius: var(--radius-full); 
    border: 2px solid rgba(255,255,255,0.4); 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-base);
}
.hero-ctas .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--color-white); transform: translateY(-2px); }
.hero-ctas .btn-outline svg { flex-shrink: 0; }
.hero-trust-row { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 4px; }
.trust-item { 
    display: flex; 
    align-items: center; 
    gap: 8px;
    font-size: 13px; 
    color: rgba(255,255,255,0.92); 
    font-weight: 500;
}
.trust-item::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.trust-item i { color: var(--color-red-light); }

/* Quote Form - Clean White */
.hero-quote { 
    background: var(--color-white); 
    border-radius: var(--radius-2xl); 
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.3); 
    padding: 32px;
    border-top: 4px solid var(--color-red);
}
.quote-form-title { font-size: 24px; font-weight: 700; color: var(--color-navy); margin-bottom: 6px; text-align: center; letter-spacing: -0.5px; }
.quote-form-subtitle { font-size: 14px; color: var(--color-gray-500); margin-bottom: 24px; text-align: center; }
.quote-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--color-gray-700); text-transform: uppercase; letter-spacing: 0.3px; }
.form-group input, .form-group select { 
    padding: 14px 16px; 
    border: 2px solid var(--color-gray-200); 
    border-radius: var(--radius-md); 
    font-size: 14px; 
    color: var(--color-gray-800); 
    transition: all var(--transition-fast); 
    width: 100%;
    background: var(--color-gray-50);
}
.form-group input:hover, .form-group select:hover { border-color: var(--color-gray-300); }
.form-group input:focus, .form-group select:focus { 
    outline: none; 
    border-color: var(--color-red); 
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(234, 20, 79, 0.1);
}
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-quote-submit { 
    background: var(--color-red); 
    color: var(--color-white); 
    padding: 18px 28px; 
    font-size: 15px; 
    font-weight: 700; 
    border-radius: var(--radius-md); 
    border: none; 
    cursor: pointer; 
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px -4px rgba(234, 20, 79, 0.4);
    transition: all var(--transition-base);
}
.btn-quote-submit:hover { background: var(--color-red-dark); transform: translateY(-2px); box-shadow: 0 12px 24px -4px rgba(234, 20, 79, 0.5); }
.quote-form-footer { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; color: var(--color-gray-500); margin-top: 14px; }

/* Autocomplete */
.autocomplete-wrapper { position: relative; }
.autocomplete-dropdown { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: var(--color-white); 
    border: 1px solid var(--color-gray-200); 
    border-radius: var(--radius-lg); 
    box-shadow: 0 20px 40px -8px rgba(0,0,0,0.15); 
    max-height: 250px; 
    overflow-y: auto; 
    z-index: 100; 
    display: none; 
}
.autocomplete-dropdown.active { display: block; }
.autocomplete-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; cursor: pointer; border-bottom: 1px solid var(--color-gray-100); }
.autocomplete-item:hover { background: var(--color-gray-50); }
.autocomplete-icon { color: var(--color-red); flex-shrink: 0; }
.autocomplete-primary { font-size: 14px; font-weight: 500; color: var(--color-gray-800); }
.autocomplete-secondary { font-size: 12px; color: var(--color-gray-500); }

/* =============================================
   TRUST BADGES - Clean
   ============================================= */
.trust-badges-section { background: var(--color-gray-50); padding: 32px 0; border-bottom: 1px solid var(--color-gray-200); }
.trust-badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.trust-badge { padding: 16px; background: var(--color-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.trust-badge-rating { font-size: 28px; font-weight: 700; color: var(--color-navy); }
.trust-badge-source { font-size: 12px; font-weight: 600; color: var(--color-gray-600); margin-top: 4px; }
.trust-badge-source i { margin-right: 4px; }
/* Brand colors for review platform icons */
.trust-badge-source .fa-google { color: #4285F4; }
.trust-badge-source .fa-yelp { color: #D32323; }
.trust-badge-source .fa-facebook { color: #1877F2; }
.trust-badge-source .fa-building { color: #003F88; }
.trust-badge-count { font-size: 11px; color: var(--color-gray-400); margin-top: 2px; }
.trust-claims { display: flex; justify-content: flex-end; gap: 16px; flex-wrap: wrap; margin-top: 24px; font-size: 13px; color: var(--color-gray-600); font-weight: 500; }

/* =============================================
   SERVICES
   ============================================= */
.services-main-section { padding: 70px 0; background: var(--color-white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; padding: 0 1.5rem; }
.section-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--color-red); margin-bottom: 12px; }
.services-main-section h2 { font-size: 44px; font-weight: 700; color: var(--color-navy); margin-bottom: 0; letter-spacing: -1px; }
.services-main-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1150px; margin: 0 auto; padding: 0 1.5rem; }
.service-main-item { padding: 28px; border: 1px solid var(--color-gray-200); border-radius: var(--radius-xl); transition: all var(--transition-base); background: var(--color-white); }
.service-main-item:hover { border-color: var(--color-red); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-main-icon { 
    width: 64px; 
    height: 64px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(209, 27, 44, 0.1); 
    border-radius: 14px; 
    color: var(--color-red); 
    margin-bottom: 18px; 
    font-size: 30px;
    line-height: 1;
    transition: all var(--transition-base);
}
.service-main-item:hover .service-main-icon {
    background: var(--color-red);
    transform: translateY(-2px) scale(1.05);
}
.service-main-item h3 { font-size: 18px; font-weight: 600; color: var(--color-navy); margin-bottom: 10px; }
.service-main-item p { font-size: 14px; color: var(--color-gray-600); line-height: 1.6; margin-bottom: 14px; }
.service-main-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--color-red); }
.service-main-link:hover { gap: 10px; }

/* =============================================
   PRICING
   ============================================= */
.pricing-section { padding: 70px 0; background: var(--color-gray-50); }
.pricing-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 1150px; margin: 0 auto; padding: 0 1.5rem; align-items: center; }
.pricing-text h2 { font-size: 40px; font-weight: 700; color: var(--color-navy); margin-bottom: 16px; letter-spacing: -1px; }
.pricing-text > p { font-size: 16px; color: var(--color-gray-600); margin-bottom: 26px; }
.pricing-includes { margin-bottom: 26px; }
.pricing-includes h4 {  font-weight: 600; color: var(--color-navy); margin-bottom: 14px; }
.pricing-includes ul { display: flex; flex-direction: column; gap: 12px; }
.pricing-includes li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--color-gray-700); }
.pricing-includes li i { color: var(--color-red); width: 18px; }
.pricing-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.pricing-image img { width: 100%; height: 360px; object-fit: cover; }

/* =============================================
   STORAGE
   ============================================= */
.storage-section { padding: 70px 0; background: var(--color-white); }
.storage-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 1150px; margin: 0 auto; padding: 0 1.5rem; align-items: center; }
.storage-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); order: 2; }
.storage-image img { width: 100%; height: 360px; object-fit: cover; }
.storage-text { order: 1; }
.storage-text h2 { font-size: 40px; font-weight: 700; color: var(--color-navy); margin-bottom: 16px; letter-spacing: -1px; }
.storage-text > p { font-size: 16px; color: var(--color-gray-600); margin-bottom: 26px; }
.storage-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.storage-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--color-gray-700); }
.storage-features li i { color: var(--color-red); width: 18px; }

/* =============================================
   PACKING
   ============================================= */
.packing-section { padding: 70px 0; background: var(--color-gray-50); }
.packing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1150px; margin: 0 auto; padding: 0 1.5rem; }
.packing-item { padding: 24px; background: var(--color-white); border-radius: var(--radius-xl); transition: all var(--transition-base); text-align: center; }
.packing-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.packing-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: rgba(209,27,44,0.1); border-radius: 50%; color: var(--color-red); margin: 0 auto 16px; font-size: 24px; transition: all var(--transition-base); }
.packing-item:hover .packing-icon { background: var(--color-red); color: var(--color-white); transform: translateY(-2px); }
.packing-item h3 {  font-weight: 600; color: var(--color-navy); margin-bottom: 8px; }
.packing-item p { font-size: 13px; color: var(--color-gray-600); line-height: 1.5; }

/* =============================================
   SPECIALTY - Dark for contrast
   ============================================= */
.specialty-section { padding: 56px 0; background: rgb(45, 45, 72); }
.specialty-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 950px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.specialty-item { padding: 28px; }
.specialty-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: rgba(209,27,44,0.2); border-radius: 50%; color: var(--color-red-light); margin: 0 auto 16px; font-size: 24px; }
.specialty-item h3 { font-size: 18px; font-weight: 600; color: var(--color-white); margin-bottom: 10px; }
.specialty-item p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* =============================================
   LOCATIONS
   ============================================= */
.locations-section { padding: 70px 0; background: var(--color-white); }
.locations-main-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1150px; margin: 0 auto; padding: 0 1.5rem; }
.location-main-card { padding: 24px; background: var(--color-gray-50); border-radius: var(--radius-xl); }
.location-main-card h3 {  font-weight: 600; color: var(--color-navy); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 3px solid var(--color-red); }
.location-main-card ul { display: flex; flex-direction: column;  }
.location-main-card ul li a { font-size: 13px; color: var(--color-gray-600); }
.location-main-card ul li a:hover { color: var(--color-red); }
.locations-cta { text-align: center; margin-top: 36px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { padding: 70px 0; background: var(--color-gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1150px; margin: 0 auto; padding: 0 1.5rem; }
.testimonial-card { background: var(--color-white); border-radius: var(--radius-xl); padding: 28px; transition: all var(--transition-base); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; color: #fbbf24; font-size: 14px; }
.testimonial-card blockquote {  line-height: 1.7; color: var(--color-gray-700); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; flex-direction: column; }
.author-name { font-size: 14px; font-weight: 600; color: var(--color-navy); }
.author-location { font-size: 12px; color: var(--color-gray-500); }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta-section { padding: 56px 0; background: #ea144f; }
.final-cta-content { text-align: center; max-width: 600px; margin: 0 auto; padding: 0 1.5rem; }
.final-cta-content h2 { font-size: 40px; font-weight: 700; color: var(--color-white); margin-bottom: 12px; letter-spacing: -1px; }
.final-cta-content p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.final-cta-buttons { display: flex; gap: 14px; justify-content: flex-end; }
.final-cta-buttons .btn-primary { background: #ffffff; color: #ea144f; padding: 18px 40px; font-size: 14px; font-weight: 600; border-radius: var(--radius-full); border: none; }
.final-cta-buttons .btn-primary:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.25); }
.final-cta-buttons .btn-outline { background: transparent; color: var(--color-white); padding: 18px 40px; font-size: 14px; font-weight: 600; border-radius: var(--radius-full); border: 2px solid rgba(255,255,255,0.4); }
.final-cta-buttons .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* =============================================
   FOOTER - Light
   ============================================= */
.footer-cta { background: var(--color-red); padding: 44px 0; }
.footer-cta-content { text-align: center; color: var(--color-white); }
.footer-cta-content h2 { font-size: 34px; font-weight: 700; margin-bottom: 10px; }
.footer-cta-content p { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.footer-cta-buttons { display: flex; gap: 14px; justify-content: flex-end; }
.footer-cta-buttons .btn-primary { background: var(--color-white); color: var(--color-red); padding: 14px 32px; font-size: 13px; font-weight: 600; border-radius: var(--radius-full); border: none; }
.site-footer { background: var(--color-gray-50); color: var(--color-gray-600); border-top: 1px solid var(--color-gray-200); }
.footer-main { padding: 50px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; max-width: 1250px; margin: 0 auto; padding: 0 1.5rem; }
.footer-about .footer-logo { margin-bottom: 14px; }
.footer-about .logo-text { font-size: 22px; font-weight: 700; color: var(--color-navy); }
.footer-about p { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.footer-phone, .footer-email { display: flex; align-items: center;  font-size: 13px; color: var(--color-gray-600); }
.footer-phone:hover, .footer-email:hover { color: var(--color-red); }
.footer-column h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-navy); margin-bottom: 16px; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { font-size: 13px; color: var(--color-gray-600); }
.footer-column ul li a:hover { color: var(--color-red); }
.footer-bottom { border-top: 1px solid var(--color-gray-200); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1250px; margin: 0 auto; padding: 0 1.5rem; flex-wrap: wrap; gap: 12px; }
.copyright { font-size: 12px; color: var(--color-gray-500); }
.footer-badges .badge { font-size: 11px; padding: 6px 12px; background: var(--color-gray-200); border-radius: var(--radius-full); color: var(--color-gray-600); }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-size: 14px; font-weight: 600; border-radius: var(--radius-md); cursor: pointer; transition: all var(--transition-fast); border: none; }
.btn-primary { background: var(--color-red); color: var(--color-white); }
.btn-primary:hover { background: var(--color-red-dark); }
.btn-outline { background: transparent; border: 2px solid var(--color-navy); color: var(--color-navy); }
.btn-outline:hover { background: rgb(45, 45, 72); color: var(--color-white); }

/* =============================================
   RESPONSIVE MEDIA QUERIES
   ============================================= */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 32px; padding: 0 1.5rem; }
    .hero-content { text-align: center; }
    .hero-subheadline { margin: 0 auto 28px; }
    .hero-ctas { justify-content: center; }
    .hero-trust-row { justify-content: center; }
    .hero-quote { max-width: 480px; margin: 0 auto; }
    
    .services-main-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-content, .storage-content { grid-template-columns: 1fr; gap: 32px; }
    .pricing-image, .storage-image { order: 1; }
    .storage-text { order: 2; }
    .packing-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-main-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-about { grid-column: span 3; }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-headline { font-size: 48px; letter-spacing: -1.5px; line-height: 1.02; font-weight: 800; }
    /* Keep the first line together so "The Best Movers" never breaks */
    .hero-headline > :not(.hero-accent) { white-space: nowrap; }
    .hero-subheadline { font-size: 17px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; }
    .hero-trust-row { flex-direction: column; align-items: center; gap: 10px; }
    .hero-quote { padding: 24px 20px; border-radius: var(--radius-xl); }
    
    .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
    .services-main-grid { grid-template-columns: 1fr; }
    .pricing-text h2, .storage-text h2 { font-size: 32px; }
    .packing-grid { grid-template-columns: 1fr; }
    .locations-main-grid { grid-template-columns: 1fr; }
    .specialty-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-about { grid-column: span 1; }
    .final-cta-content h2 { font-size: 22px; }
    .final-cta-content p { font-size: 15px; margin-bottom: 22px; }
    .final-cta-buttons { justify-content: center; gap: 10px; }
    .final-cta-buttons .btn-primary,
    .final-cta-buttons .btn-outline { padding: 12px 22px; font-size: 13px; }
}

/* Small mobile (430px) */
@media (max-width: 430px) {
    .hero-headline { font-size: 38px; line-height: 1.02; letter-spacing: -1.5px; }
    .hero-badge { font-size: 10px; padding: 6px 12px; }
    .hero-ctas .btn-primary, .hero-ctas .btn-outline { padding: 14px 24px; font-size: 13px; }
    .quote-form-title { font-size: 18px; }
    .trust-badges-grid { grid-template-columns: 1fr; }
    .section-eyebrow { font-size: 11px; }
    .services-main-section h2, .pricing-text h2, .storage-text h2 { font-size: 26px; }
}

/* Form fixes */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 500px) {
    .form-row-2col {
        grid-template-columns: 1fr;
    }
}

input[type="date"] {
    width: 100%;
    min-height: 48px;
    padding: 14px 16px;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    color: var(--color-gray-800);
    background: var(--color-gray-50);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

input[type="date"]:hover {
    border-color: var(--color-gray-300);
}

input[type="date"]:focus {
    outline: none;
    border-color: var(--color-red);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(234, 20, 79, 0.1);
}

/* =============================================
   HERO INTEGRATED NAVIGATION
   Logo + main menu + CTA inside the red hero band.
   Replaces the global header on the front page only.
   ============================================= */
.hero-nav {
    background: transparent;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.hero-nav-container {
    transition: min-height 200ms ease, padding 200ms ease;
}
.hero-logo-img {
    transition: height 200ms ease, max-width 200ms ease, filter 200ms ease;
}
.hero-nav-menu > li > a {
    transition: padding 200ms ease, font-size 200ms ease, all var(--transition-fast);
}

/* When scrolled past the hero — invert colors (white bg, dark text) */
.hero-nav.scrolled {
    background: #ffffff;
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.hero-nav.scrolled .hero-nav-menu > li > a {
    color: var(--color-gray-700);
}
.hero-nav.scrolled .hero-nav-menu > li > a:hover,
.hero-nav.scrolled .hero-nav-menu > li:hover > a {
    background: var(--color-gray-50);
    border-bottom-color: var(--color-red);
    color: var(--color-red);
}
.hero-nav.scrolled .hero-logo-img {
    filter: none;
    -webkit-filter: none;
}
.hero-nav.scrolled .hero-nav-phone {
    color: var(--color-gray-700);
}
.hero-nav.scrolled .hero-nav-phone svg {
    color: #ea144f;
}
.hero-nav.scrolled .hero-nav-phone:hover {
    background: var(--color-gray-50);
    opacity: 1;
}
.hero-nav.scrolled .hero-nav-cta .btn-quote {
    background: #0a2540;
    color: var(--color-white);
}
.hero-nav.scrolled .hero-nav-cta .btn-quote:hover {
    background: #061a30;
}
/* Hamburger lines must stay visible when nav turns white */
.hero-nav.scrolled .hero-menu-toggle .hamburger,
.hero-nav.scrolled .hero-menu-toggle .hamburger::before,
.hero-nav.scrolled .hero-menu-toggle .hamburger::after {
    background: #ea144f;
}

/* Shrink the nav when scrolled (PC only) for a cleaner look */
@media (min-width: 769px) {
    .hero-nav.scrolled .hero-nav-container {
        min-height: 56px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .hero-nav.scrolled .hero-logo-img {
        height: 44px;
        max-width: 180px;
    }
    .hero-nav.scrolled .hero-nav-menu > li > a {
        padding: 8px 14px;
        font-size: 13px;
    }
    .hero-nav.scrolled .hero-nav-phone {
        font-size: 15px;
        padding: 6px 14px;
    }
    .hero-nav.scrolled .hero-nav-cta .btn-quote {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* Make the logo white by inverting its colors. We only apply this
   on desktop because mobile has the hamburger on the same band but
   the user explicitly asked for the white logo on PC. */
@media (min-width: 769px) {
    .hero-logo-img {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
    }
}

.hero-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 162px;
}

/* Logo */
.hero-nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.hero-logo-img {
    height: 150px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* Desktop menu */
.hero-nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.hero-nav-menu > li {
    position: relative;
}

.hero-nav-menu > li > a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-nav-menu > li > a:hover,
.hero-nav-menu > li:hover > a {
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.18);
    border-bottom-color: var(--color-white);
}

/* "Get Free Quote" button inside the hero nav (PC only). */
.hero-nav-cta .btn-quote {
    background: #0a2540;
    color: var(--color-white);
}
.hero-nav-cta .btn-quote:hover {
    background: #061a30;
}

/* CTA cluster */
.hero-nav-cta {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hero-nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity var(--transition-fast), font-size 200ms ease, padding 200ms ease;
    white-space: nowrap;
}
.hero-nav-phone svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}
.hero-nav-phone:hover {
    opacity: 0.85;
}

/* Mega menu styles reuse the global .mega-menu rules
   defined earlier in this stylesheet. */

/* =============================================
   HERO NAV — DESKTOP (≥769px)
   ============================================= */
@media (min-width: 769px) {
    .hero-nav-menu {
        display: flex;
    }
    .hero-nav-cta {
        display: flex;
    }
    .hero-menu-toggle {
        display: none !important;
    }
    .hero-mobile-overlay,
    .hero-mobile-menu {
        display: none !important;
    }

    /* Tighter spacing on tablet */
    @media (max-width: 1024px) and (min-width: 769px) {
        .hero-nav-menu > li > a {
            padding: 14px 12px;
            font-size: 13px;
        }
        .hero-nav-container {
            padding: 0 1rem;
            min-height: 138px;
        }
    }
}

/* =============================================
   HERO NAV — MOBILE (≤768px)
   Logo + hamburger only; panel slides in from right.
   ============================================= */
@media (max-width: 768px) {
    .hero-nav-container {
        min-height: 68px;
        padding: 0 16px;
    }
    .hero-logo-img {
        height: 56px;
        max-width: 200px;
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
    }
    .hero-nav-menu,
    .hero-nav-cta {
        display: none !important;
    }
    /* Hide trust row + panel footer copy on mobile */
    .hero-trust-row,
    .hero-mobile-footer {
        display: none !important;
    }
    .hero-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        padding: 0;
    }
    .hero-menu-toggle .hamburger {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--color-white);
        position: relative;
    }
    .hero-menu-toggle .hamburger::before,
    .hero-menu-toggle .hamburger::after {
        content: '';
        position: absolute;
        left: 0;
        width: 22px;
        height: 2px;
        background: var(--color-white);
        transition: all var(--transition-fast);
    }
    .hero-menu-toggle .hamburger::before { top: -7px; }
    .hero-menu-toggle .hamburger::after  { bottom: -7px; }

    .hero-menu-toggle.active .hamburger { background: transparent; }
    .hero-menu-toggle.active .hamburger::before {
        top: 0; transform: rotate(45deg);
    }
    .hero-menu-toggle.active .hamburger::after {
        bottom: 0; transform: rotate(-45deg);
    }

    /* FULLSCREEN MOBILE MENU — redesigned
       Fills the whole viewport with the hero red, large tappable rows,
       centered menu, sticky close + CTA at the bottom. */
    .hero-mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 250ms ease, visibility 250ms ease;
        z-index: 998;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }
    .hero-mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: linear-gradient(180deg, #ea144f 0%, #c40f3f 100%);
        transform: translateY(-100%);
        transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        color: var(--color-white);
    }
    .hero-mobile-menu.active {
        transform: translateY(0);
    }

    /* Header inside the panel: logo + close */
    .hero-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 22px;
        flex-shrink: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .hero-mobile-header img {
        height: 42px;
        width: auto;
        max-width: 180px;
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
    }
    .hero-mobile-close {
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: var(--color-white);
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background var(--transition-fast);
    }
    .hero-mobile-close:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    /* Scrollable middle area */
    .hero-mobile-content {
        flex: 1;
        padding: 24px 22px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* CTAs at top, large and prominent */
    .mobile-cta-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }
    .mobile-cta-phone,
    .mobile-cta-quote {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        border-radius: var(--radius-full);
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        letter-spacing: 0.3px;
        transition: all var(--transition-base);
    }
    .mobile-cta-phone {
        background: #0a2540;
        color: var(--color-white);
        border: 2px solid #0a2540;
    }
    .mobile-cta-phone:hover {
        background: #061a30;
        border-color: #061a30;
    }
    .mobile-cta-quote {
        background: var(--color-white);
        color: #ea144f;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
    }
    .mobile-cta-quote:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px -5px rgba(0, 0, 0, 0.3);
    }

    /* Section eyebrow */
    .mobile-menu-eyebrow {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 14px;
        padding-left: 4px;
    }

    /* Main nav list */
    .mobile-nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .mobile-nav-menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .mobile-nav-menu > li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .mobile-nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 4px;
        font-weight: 700;
        font-size: 18px;
        color: var(--color-white);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        transition: padding var(--transition-fast);
    }
    .mobile-nav-menu > li > a:active {
        padding-left: 12px;
        background: rgba(0, 0, 0, 0.15);
    }
    .mobile-nav-menu > li > a .arrow {
        transition: transform var(--transition-fast);
        font-size: 22px;
        font-weight: 400;
        opacity: 0.7;
    }
    .mobile-nav-menu > li > a.active .arrow {
        transform: rotate(90deg);
    }
    .mobile-nav-menu > li > a.active {
        color: var(--color-white);
    }

    /* Submenu accordion */
    .mobile-submenu {
        list-style: none;
        margin: 0;
        padding: 0 0 16px 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 300ms ease;
        border-left: 2px solid rgba(255, 255, 255, 0.15);
        margin-left: 8px;
    }
    .mobile-submenu.open {
        max-height: 800px;
    }
    .mobile-submenu li {
        padding: 4px 0;
    }
    .mobile-submenu li a {
        display: block;
        padding: 12px 12px;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        border-radius: var(--radius-md);
        transition: all var(--transition-fast);
    }
    .mobile-submenu li a:hover,
    .mobile-submenu li a:active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-white);
        padding-left: 18px;
    }

    /* Footer pinned at the bottom */
    .hero-mobile-footer {
        flex-shrink: 0;
        padding: 20px 22px 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        text-align: center;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
    }
    .hero-mobile-footer .footer-tagline {
        font-weight: 700;
        color: var(--color-white);
        font-size: 14px;
        margin-bottom: 4px;
        letter-spacing: 0.3px;
    }
}

/* =============================================
   FRONT PAGE ONLY — hero accounts for the fixed
   navigation so its content is not covered.
   ============================================= */
.home-main .hero-section {
    margin-top: 0;
    padding-top: 100px;
}
.home-main .hero-container {
    padding-top: 0;
}
/* Desktop: extra space between the in-hero nav and the quote form */
@media (min-width: 1025px) {
    .home-main .hero-container {
        padding-top: 30px;
    }
}
/* Mobile: less top padding so the headline sits higher under the nav */
@media (max-width: 768px) {
    .home-main .hero-section {
        padding-top: 110px;
    }
    .home-main .hero-content {
        text-align: center;
    }
    .home-main .hero-ctas {
        justify-content: center;
    }
    .home-main .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    .home-main .hero-headline {
        margin-top: 16px;
    }
}
.home-main .site-header,
.home-main .top-utility-bar,
.home-main .mobile-menu,
.home-main .mobile-menu-overlay {
    display: none !important;
}
.home-main .site-content {
    margin-top: 0 !important;
}

/* =============================================
   FREE ESTIMATES PAGE (post 27)
   ============================================= */
.exc-est-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero with form */
.exc-est-hero {
    background: linear-gradient(135deg, #ea144f 0%, #c40f3f 100%);
    color: #fff;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}
.exc-est-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 50%);
    pointer-events: none;
}
.exc-est-hero .exc-est-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.exc-est-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.exc-est-hero h1 {
    color: #fff;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0 0 20px 0;
}
.exc-est-subtitle {
    font-size: 19px;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    margin: 0 0 28px 0;
    max-width: 540px;
}
.exc-est-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}
.exc-est-trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.95);
}
.exc-est-trust-list i {
    color: #fff;
    font-size: 14px;
}
.exc-est-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.exc-est-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #ea144f;
    padding: 16px 28px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.exc-est-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    color: #ea144f;
}
.exc-est-cta-note {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* Form card */
.exc-est-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    color: #1c1c1c;
}
.exc-est-form-header {
    text-align: center;
    margin-bottom: 24px;
}
.exc-est-form-header h2 {
    margin: 0 0 6px 0;
    font-size: 24px;
    font-weight: 800;
    color: #0a2540;
}
.exc-est-form-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
.exc-est-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.exc-est-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 6px;
}
.exc-est-row input,
.exc-est-row select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    box-sizing: border-box;
}
.exc-est-row input:focus,
.exc-est-row select:focus {
    outline: none;
    border-color: #ea144f;
    box-shadow: 0 0 0 3px rgba(234,20,79,0.12);
}
.exc-est-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.exc-est-submit {
    background: #ea144f;
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s, transform 0.1s;
}
.exc-est-submit:hover {
    background: #c40f3f;
}
.exc-est-submit:active {
    transform: translateY(1px);
}
.exc-est-form-foot {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin: 6px 0 0 0;
}

/* Section eyebrow */
.exc-est-section-eyebrow {
    display: inline-block;
    color: #ea144f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Section subtitle */
.exc-est-section-sub {
    color: #555;
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto 40px auto;
}

/* How It Works */
.exc-est-how {
    padding: 80px 0;
    background: #fafafa;
}
.exc-est-how h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}
.exc-est-how .exc-est-section-sub {
    text-align: center;
}
.exc-est-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}
.exc-est-step {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.exc-est-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.exc-est-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ea144f;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
}
.exc-est-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 10px 0;
}
.exc-est-step p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 18px 0;
}
.exc-est-step-time {
    display: inline-block;
    background: rgba(234,20,79,0.1);
    color: #ea144f;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

/* What's Included */
.exc-est-included {
    padding: 80px 0;
    background: #fff;
}
.exc-est-included h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}
.exc-est-included .exc-est-section-sub {
    text-align: center;
}
.exc-est-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.exc-est-included-item {
    text-align: center;
    padding: 24px 20px;
    background: #fafafa;
    border-radius: 12px;
    transition: background 0.2s, transform 0.2s;
}
.exc-est-included-item:hover {
    background: #fff5f7;
    transform: translateY(-2px);
}
.exc-est-included-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ea144f;
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
}
.exc-est-included-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 8px 0;
}
.exc-est-included-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Pricing Factors */
.exc-est-pricing {
    padding: 80px 0;
    background: #0a2540;
    color: #fff;
}
.exc-est-pricing .exc-est-section-eyebrow {
    color: #ff7591;
}
.exc-est-pricing h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}
.exc-est-pricing .exc-est-section-sub {
    color: rgba(255,255,255,0.8);
    text-align: center;
}
.exc-est-factors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.exc-est-factor {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.exc-est-factor-num {
    font-size: 36px;
    font-weight: 800;
    color: #ea144f;
    line-height: 1;
    flex-shrink: 0;
    font-feature-settings: "tnum";
}
.exc-est-factor h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}
.exc-est-factor p {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* FAQ */
.exc-est-faq {
    padding: 80px 0;
    background: #fafafa;
}
.exc-est-faq h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}
.exc-est-faq .exc-est-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-est-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.exc-est-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.exc-est-faq-item[open] {
    border-color: #ea144f;
    box-shadow: 0 4px 14px rgba(234,20,79,0.1);
}
.exc-est-faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    color: #0a2540;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.exc-est-faq-item summary::-webkit-details-marker {
    display: none;
}
.exc-est-faq-item summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    color: #ea144f;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.exc-est-faq-item[open] summary::after {
    transform: rotate(45deg);
}
.exc-est-faq-item p {
    padding: 0 22px 20px 22px;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Final CTA */
.exc-est-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ea144f 0%, #c40f3f 100%);
    color: #fff;
    text-align: center;
}
.exc-est-final-cta h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px 0;
    color: #fff;
    letter-spacing: -1px;
}
.exc-est-final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 32px 0;
}
.exc-est-final-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.exc-est-btn-primary {
    background: #fff;
    color: #ea144f;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    display: inline-flex;
    align-items: center;
}
.exc-est-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #ea144f;
}
.exc-est-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #fff;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
}
.exc-est-btn-secondary:hover {
    background: #fff;
    color: #ea144f;
}
.exc-est-final-note {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .exc-est-hero .exc-est-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .exc-est-hero h1 {
        font-size: 44px;
    }
    .exc-est-included-grid,
    .exc-est-steps {
        grid-template-columns: 1fr 1fr;
    }
    .exc-est-factors {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .exc-est-hero {
        padding: 50px 0 60px;
    }
    .exc-est-hero h1 {
        font-size: 36px;
    }
    .exc-est-subtitle {
        font-size: 17px;
    }
    .exc-est-trust-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .exc-est-row-2col {
        grid-template-columns: 1fr;
    }
    .exc-est-steps,
    .exc-est-included-grid {
        grid-template-columns: 1fr;
    }
    .exc-est-how h2,
    .exc-est-included h2,
    .exc-est-pricing h2,
    .exc-est-faq h2 {
        font-size: 30px;
    }
    .exc-est-final-cta h2 {
        font-size: 30px;
    }
    .exc-est-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .exc-est-btn-primary,
    .exc-est-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   NY LOCAL MOVERS PAGE (post 25)
   ============================================= */
.exc-ny-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.exc-ny-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1c3a5e 100%);
    color: #fff;
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}
.exc-ny-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234,20,79,0.18), transparent 70%);
    pointer-events: none;
}
.exc-ny-eyebrow {
    display: inline-block;
    background: rgba(234,20,79,0.2);
    border: 1px solid rgba(234,20,79,0.4);
    color: #ff7591;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.exc-ny-hero h1 {
    color: #fff;
    font-size: 60px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.8px;
    margin: 0 0 20px 0;
    max-width: 800px;
}
.exc-ny-accent {
    color: #ff7591;
}
.exc-ny-subtitle {
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    margin: 0 0 32px 0;
    max-width: 700px;
}
.exc-ny-hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.exc-ny-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ea144f;
    color: #fff;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 14px rgba(234,20,79,0.4);
    border: none;
    cursor: pointer;
}
.exc-ny-btn-primary:hover {
    background: #c40f3f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234,20,79,0.5);
}
.exc-ny-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.35);
    transition: background 0.2s, border-color 0.2s;
}
.exc-ny-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}
.exc-ny-btn-large {
    padding: 18px 32px;
    font-size: 17px;
}
.exc-ny-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    list-style: none;
    padding: 24px 0 0 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.exc-ny-hero-stats li {
    display: flex;
    flex-direction: column;
}
.exc-ny-hero-stats strong {
    font-size: 32px;
    font-weight: 800;
    color: #ff7591;
    line-height: 1;
    margin-bottom: 4px;
}
.exc-ny-hero-stats span {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section eyebrow + title */
.exc-ny-section-eyebrow {
    display: inline-block;
    color: #ea144f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.exc-ny-section-sub {
    color: #555;
    font-size: 17px;
    max-width: 720px;
    margin: 0 0 40px 0;
}

/* Why grid */
.exc-ny-why {
    padding: 80px 0;
    background: #fff;
}
.exc-ny-why h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    max-width: 700px;
}
.exc-ny-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.exc-ny-why-item {
    padding: 0;
}
.exc-ny-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(234,20,79,0.1);
    color: #ea144f;
    font-size: 24px;
    margin-bottom: 18px;
}
.exc-ny-why-item h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 8px 0;
}
.exc-ny-why-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Included */
.exc-ny-included {
    padding: 80px 0;
    background: #fafafa;
}
.exc-ny-included h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-ny-included .exc-ny-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ny-included .exc-ny-section-sub {
    text-align: center;
    margin: 0 auto 40px auto;
}
.exc-ny-included-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.exc-ny-included-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.exc-ny-included-row > i {
    color: #ea144f;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}
.exc-ny-included-row h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 4px 0;
}
.exc-ny-included-row p {
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Services */
.exc-ny-services {
    padding: 80px 0;
    background: #fff;
}
.exc-ny-services h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-ny-services .exc-ny-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ny-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.exc-ny-service-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}
.exc-ny-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: #ea144f;
}
.exc-ny-service-num {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ea144f;
    margin-bottom: 14px;
    letter-spacing: 1px;
}
.exc-ny-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 12px 0;
}
.exc-ny-service-card > p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
}
.exc-ny-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}
.exc-ny-service-features li {
    position: relative;
    padding: 4px 0 4px 22px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}
.exc-ny-service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ea144f;
    font-weight: 700;
}
.exc-ny-service-card > a {
    color: #ea144f;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: auto;
}
.exc-ny-service-card > a:hover {
    text-decoration: underline;
}

/* Boroughs */
.exc-ny-boroughs {
    padding: 80px 0;
    background: #0a2540;
    color: #fff;
}
.exc-ny-boroughs .exc-ny-section-eyebrow {
    color: #ff7591;
}
.exc-ny-boroughs h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-ny-boroughs .exc-ny-section-sub {
    color: rgba(255,255,255,0.78);
}
.exc-ny-boroughs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.exc-ny-borough-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 28px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    display: block;
}
.exc-ny-borough-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ea144f;
    color: #fff;
    transform: translateY(-2px);
}
.exc-ny-borough-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}
.exc-ny-borough-card p {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 16px 0;
}
.exc-ny-borough-cta {
    color: #ff7591;
    font-size: 14px;
    font-weight: 700;
}

/* How it works */
.exc-ny-how {
    padding: 80px 0;
    background: #fff;
}
.exc-ny-how h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-ny-how .exc-ny-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ny-how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.exc-ny-how-step {
    text-align: center;
    padding: 24px 20px;
}
.exc-ny-how-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ea144f;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}
.exc-ny-how-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 10px 0;
}
.exc-ny-how-step p {
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Pricing table */
.exc-ny-pricing {
    padding: 80px 0;
    background: #fafafa;
}
.exc-ny-pricing h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-ny-pricing .exc-ny-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ny-pricing .exc-ny-section-sub {
    text-align: center;
    margin: 0 auto 40px auto;
}
.exc-ny-pricing-table {
    max-width: 900px;
    margin: 0 auto 32px auto;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.exc-ny-pricing-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 2.5fr;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
    align-items: center;
    font-size: 15px;
}
.exc-ny-pricing-row:last-child {
    border-bottom: none;
}
.exc-ny-pricing-header {
    background: #0a2540;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.exc-ny-pricing-header > div {
    color: #fff !important;
}
.exc-ny-pricing-row strong {
    color: #0a2540;
    font-weight: 700;
}
.exc-ny-pricing-note {
    text-align: center;
    color: #555;
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto 28px auto;
}
.exc-ny-pricing-cta {
    display: inline-flex;
    margin: 0 auto;
    text-align: center;
}
.exc-ny-pricing > .exc-ny-container > a.exc-ny-pricing-cta {
    display: block;
    width: max-content;
    margin: 0 auto;
}

/* FAQ */
.exc-ny-faq {
    padding: 80px 0;
    background: #fff;
}
.exc-ny-faq h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-ny-faq .exc-ny-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ny-faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.exc-ny-faq-item {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.exc-ny-faq-item[open] {
    border-color: #ea144f;
    box-shadow: 0 4px 14px rgba(234,20,79,0.1);
}
.exc-ny-faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    color: #0a2540;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.exc-ny-faq-item summary::-webkit-details-marker {
    display: none;
}
.exc-ny-faq-item summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    color: #ea144f;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.exc-ny-faq-item[open] summary::after {
    transform: rotate(45deg);
}
.exc-ny-faq-item p {
    padding: 0 22px 20px 22px;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}

/* Final CTA */
.exc-ny-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ea144f 0%, #c40f3f 100%);
    color: #fff;
    text-align: center;
}
.exc-ny-final-cta h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px 0;
    color: #fff;
    letter-spacing: -1px;
}
.exc-ny-final-cta > .exc-ny-container > p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 32px 0;
}
.exc-ny-final-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.exc-ny-final-cta .exc-ny-btn-primary {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: #fff;
    color: #ea144f;
}
.exc-ny-final-cta .exc-ny-btn-primary:hover {
    background: #fff;
    color: #ea144f;
}
.exc-ny-final-cta .exc-ny-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.exc-ny-final-cta .exc-ny-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.exc-ny-final-note {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .exc-ny-hero h1 {
        font-size: 44px;
    }
    .exc-ny-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .exc-ny-why-grid,
    .exc-ny-services-grid,
    .exc-ny-boroughs-grid {
        grid-template-columns: 1fr 1fr;
    }
    .exc-ny-how-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .exc-ny-included-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .exc-ny-hero {
        padding: 60px 0 50px;
    }
    .exc-ny-hero h1 {
        font-size: 34px;
    }
    .exc-ny-subtitle {
        font-size: 17px;
    }
    .exc-ny-hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    .exc-ny-hero-stats strong {
        font-size: 26px;
    }
    .exc-ny-why-grid,
    .exc-ny-services-grid,
    .exc-ny-boroughs-grid,
    .exc-ny-how-steps {
        grid-template-columns: 1fr;
    }
    .exc-ny-pricing-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .exc-ny-why h2,
    .exc-ny-included h2,
    .exc-ny-services h2,
    .exc-ny-boroughs h2,
    .exc-ny-how h2,
    .exc-ny-pricing h2,
    .exc-ny-faq h2 {
        font-size: 28px;
    }
    .exc-ny-final-cta h2 {
        font-size: 28px;
    }
    .exc-ny-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .exc-ny-final-cta .exc-ny-btn-primary,
    .exc-ny-final-cta .exc-ny-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   ABOUT US PAGE (post 21)
   ============================================= */
.exc-ab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.exc-ab-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1c3a5e 100%);
    color: #fff;
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}
.exc-ab-hero::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234,20,79,0.15), transparent 70%);
    pointer-events: none;
}
.exc-ab-hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
    pointer-events: none;
}
.exc-ab-eyebrow {
    display: inline-block;
    background: rgba(234,20,79,0.2);
    border: 1px solid rgba(234,20,79,0.4);
    color: #ff7591;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.exc-ab-hero h1 {
    color: #fff;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.8px;
    margin: 0 0 24px 0;
    max-width: 850px;
    position: relative;
    z-index: 1;
}
.exc-ab-accent {
    color: #ff7591;
}
.exc-ab-subtitle {
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
    margin: 0 0 48px 0;
    max-width: 720px;
    position: relative;
    z-index: 1;
}
.exc-ab-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
}
.exc-ab-stat {
    display: flex;
    flex-direction: column;
}
.exc-ab-stat strong {
    font-size: 42px;
    font-weight: 800;
    color: #ff7591;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.exc-ab-stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.78);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Section base */
.exc-ab-section-eyebrow {
    display: inline-block;
    color: #ea144f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.exc-ab-section-sub {
    color: #555;
    font-size: 17px;
    max-width: 720px;
    margin: 0 0 40px 0;
}

/* Story */
.exc-ab-story {
    padding: 90px 0;
    background: #fff;
}
.exc-ab-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: flex-start;
}
.exc-ab-story-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
    line-height: 1.15;
}
.exc-ab-story-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 18px 0;
}
.exc-ab-story-content p:last-child strong {
    color: #0a2540;
}
.exc-ab-story-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.exc-ab-fact-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px 22px;
    transition: border-color 0.2s, transform 0.2s;
}
.exc-ab-fact-card:hover {
    border-color: #ea144f;
    transform: translateY(-2px);
}
.exc-ab-fact-card > i {
    font-size: 28px;
    color: #ea144f;
    margin-bottom: 12px;
    display: inline-flex;
}
.exc-ab-fact-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 8px 0;
}
.exc-ab-fact-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Mission / values */
.exc-ab-mission {
    padding: 90px 0;
    background: #fafafa;
}
.exc-ab-mission > .exc-ab-container > h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}
.exc-ab-mission > .exc-ab-container > .exc-ab-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ab-mission > .exc-ab-container > .exc-ab-section-sub {
    text-align: center;
    margin: 0 auto 40px auto;
}
.exc-ab-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.exc-ab-value-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.exc-ab-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: #ea144f;
}
.exc-ab-value-num {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ea144f;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    background: rgba(234,20,79,0.08);
    padding: 4px 12px;
    border-radius: 100px;
}
.exc-ab-value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 10px 0;
}
.exc-ab-value-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Difference / comparison */
.exc-ab-difference {
    padding: 90px 0;
    background: #fff;
}
.exc-ab-difference > .exc-ab-container > h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}
.exc-ab-difference > .exc-ab-container > .exc-ab-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ab-difference > .exc-ab-container > .exc-ab-section-sub {
    text-align: center;
    margin: 0 auto 40px auto;
}
.exc-ab-comparison {
    max-width: 1000px;
    margin: 0 auto;
}
.exc-ab-comparison-table {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.exc-ab-comp-row {
    display: grid;
    grid-template-columns: 1.5fr 1.4fr 1.4fr;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
    align-items: center;
    font-size: 15px;
    background: #fff;
}
.exc-ab-comp-row:last-child {
    border-bottom: none;
}
.exc-ab-comp-row:nth-child(even) {
    background: #fafafa;
}
.exc-ab-comp-header {
    background: #0a2540;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.exc-ab-comp-header > div {
    color: #fff !important;
}
.exc-ab-comp-feature {
    font-weight: 600;
    color: #0a2540;
}
.exc-ab-comp-row > div:nth-child(2) {
    color: #888;
}
.exc-ab-comp-row > div:nth-child(3) {
    color: #ea144f;
    font-weight: 600;
}

/* Team */
.exc-ab-team {
    padding: 90px 0;
    background: #fafafa;
}
.exc-ab-team > .exc-ab-container > h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}
.exc-ab-team > .exc-ab-container > .exc-ab-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ab-team > .exc-ab-container > .exc-ab-section-sub {
    text-align: center;
    margin: 0 auto 40px auto;
}
.exc-ab-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.exc-ab-team-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.exc-ab-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.exc-ab-team-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea144f 0%, #c40f3f 100%);
    color: #fff;
    font-size: 32px;
    margin-bottom: 18px;
}
.exc-ab-team-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 10px 0;
}
.exc-ab-team-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.exc-ab-team-cta {
    text-align: center;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #ddd;
}
.exc-ab-team-cta p {
    margin: 0;
    color: #555;
    font-size: 16px;
}
.exc-ab-team-cta a {
    color: #ea144f;
    font-weight: 700;
    text-decoration: none;
}
.exc-ab-team-cta a:hover {
    text-decoration: underline;
}

/* Community */
.exc-ab-community {
    padding: 90px 0;
    background: #0a2540;
    color: #fff;
}
.exc-ab-community .exc-ab-section-eyebrow {
    color: #ff7591;
}
.exc-ab-community h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-ab-community .exc-ab-section-sub {
    color: rgba(255,255,255,0.78);
}
.exc-ab-community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.exc-ab-community-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 32px 28px;
}
.exc-ab-community-item > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(234,20,79,0.18);
    color: #ff7591;
    font-size: 24px;
    margin-bottom: 16px;
}
.exc-ab-community-item h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}
.exc-ab-community-item p {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Credentials */
.exc-ab-credentials {
    padding: 90px 0;
    background: #fff;
}
.exc-ab-credentials > .exc-ab-container > h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}
.exc-ab-credentials > .exc-ab-container > .exc-ab-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ab-credentials > .exc-ab-container > .exc-ab-section-sub {
    text-align: center;
    margin: 0 auto 40px auto;
}
.exc-ab-creds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.exc-ab-cred-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.exc-ab-cred-card:hover {
    border-color: #ea144f;
    transform: translateY(-2px);
}
.exc-ab-cred-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(234,20,79,0.1);
    color: #ea144f;
    font-size: 26px;
    margin-bottom: 14px;
}
.exc-ab-cred-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 10px 0;
}
.exc-ab-cred-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}
.exc-ab-cred-card strong {
    color: #0a2540;
    font-weight: 700;
}

/* Testimonials */
.exc-ab-testimonials {
    padding: 90px 0;
    background: #fafafa;
}
.exc-ab-testimonials > .exc-ab-container > h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}
.exc-ab-testimonials > .exc-ab-container > .exc-ab-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ab-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.exc-ab-testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.exc-ab-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.exc-ab-testimonial-stars {
    color: #fbbf24;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.exc-ab-testimonial-card > p {
    color: #333;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 20px 0;
    font-style: italic;
    flex-grow: 1;
}
.exc-ab-testimonial-author strong {
    display: block;
    color: #0a2540;
    font-weight: 700;
    font-size: 15px;
}
.exc-ab-testimonial-author span {
    color: #888;
    font-size: 13px;
}
.exc-ab-testimonials > .exc-ab-container > a.exc-ab-btn-secondary {
    display: block;
    width: max-content;
    margin: 0 auto;
}

/* Services link grid */
.exc-ab-services-link {
    padding: 90px 0;
    background: #fff;
}
.exc-ab-services-link > .exc-ab-container > h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}
.exc-ab-services-link > .exc-ab-container > .exc-ab-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-ab-services-link > .exc-ab-container > .exc-ab-section-sub {
    text-align: center;
    margin: 0 auto 40px auto;
}
.exc-ab-services-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.exc-ab-service-link-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    text-decoration: none;
    color: #0a2540;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    display: block;
}
.exc-ab-service-link-card:hover {
    border-color: #ea144f;
    background: #fff5f7;
    transform: translateY(-2px);
    color: #0a2540;
}
.exc-ab-service-link-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(234,20,79,0.1);
    color: #ea144f;
    font-size: 24px;
    margin-bottom: 14px;
}
.exc-ab-service-link-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 4px 0;
}
.exc-ab-service-link-card p {
    color: #777;
    font-size: 13px;
    margin: 0;
}
.exc-ab-service-link-card-cta {
    background: linear-gradient(135deg, #ea144f 0%, #c40f3f 100%);
    border-color: transparent;
    color: #fff;
}
.exc-ab-service-link-card-cta > i {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.exc-ab-service-link-card-cta h3 {
    color: #fff;
}
.exc-ab-service-link-card-cta p {
    color: rgba(255,255,255,0.85);
}
.exc-ab-service-link-card-cta:hover {
    border-color: transparent;
    background: linear-gradient(135deg, #c40f3f 0%, #a30b30 100%);
    color: #fff;
}
.exc-ab-service-link-card-cta:hover h3,
.exc-ab-service-link-card-cta:hover p {
    color: #fff;
}

/* Final CTA */
.exc-ab-final-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #ea144f 0%, #c40f3f 100%);
    color: #fff;
    text-align: center;
}
.exc-ab-final-cta h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 14px 0;
    color: #fff;
    letter-spacing: -1px;
}
.exc-ab-final-cta > .exc-ab-container > p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 32px 0;
}
.exc-ab-final-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.exc-ab-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #ea144f;
    padding: 16px 30px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
}
.exc-ab-btn-primary:hover {
    background: #fff;
    color: #ea144f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.exc-ab-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ea144f;
    padding: 16px 30px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #ea144f;
    transition: background 0.2s, color 0.2s;
}
.exc-ab-btn-secondary:hover {
    background: #ea144f;
    color: #fff;
}
.exc-ab-final-cta .exc-ab-btn-primary {
    background: #fff;
    color: #ea144f;
}
.exc-ab-final-cta .exc-ab-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.exc-ab-final-cta .exc-ab-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.exc-ab-final-note {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .exc-ab-hero h1 {
        font-size: 48px;
    }
    .exc-ab-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .exc-ab-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .exc-ab-values-grid,
    .exc-ab-team-grid,
    .exc-ab-community-grid,
    .exc-ab-creds-grid,
    .exc-ab-testimonials-grid,
    .exc-ab-services-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .exc-ab-hero {
        padding: 70px 0 60px;
    }
    .exc-ab-hero h1 {
        font-size: 36px;
    }
    .exc-ab-subtitle {
        font-size: 17px;
    }
    .exc-ab-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .exc-ab-stat strong {
        font-size: 32px;
    }
    .exc-ab-story-facts {
        grid-template-columns: 1fr;
    }
    .exc-ab-comp-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .exc-ab-comp-header {
        display: none;
    }
    .exc-ab-values-grid,
    .exc-ab-team-grid,
    .exc-ab-community-grid,
    .exc-ab-creds-grid,
    .exc-ab-testimonials-grid,
    .exc-ab-services-links-grid {
        grid-template-columns: 1fr;
    }
    .exc-ab-story-content h2,
    .exc-ab-mission > .exc-ab-container > h2,
    .exc-ab-difference > .exc-ab-container > h2,
    .exc-ab-team > .exc-ab-container > h2,
    .exc-ab-community h2,
    .exc-ab-credentials > .exc-ab-container > h2,
    .exc-ab-testimonials > .exc-ab-container > h2,
    .exc-ab-services-link > .exc-ab-container > h2 {
        font-size: 28px;
    }
    .exc-ab-final-cta h2 {
        font-size: 30px;
    }
    .exc-ab-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .exc-ab-btn-primary,
    .exc-ab-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   SERVICE PAGES (post IDs: 1945 commercial, 1946 furniture, 1948 moving-labor, 1949 office, 1952 storage, 1972 packing)
   All 6 pages share exc-svc-* CSS classes
   ============================================= */
.exc-svc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.exc-svc-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1c3a5e 100%);
    color: #fff;
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}
.exc-svc-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234,20,79,0.18), transparent 70%);
    pointer-events: none;
}
.exc-svc-eyebrow {
    display: inline-block;
    background: rgba(234,20,79,0.2);
    border: 1px solid rgba(234,20,79,0.4);
    color: #ff7591;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.exc-svc-hero h1 {
    color: #fff;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0 0 20px 0;
    max-width: 800px;
    position: relative;
    z-index: 1;
}
.exc-svc-accent {
    color: #ff7591;
}
.exc-svc-subtitle {
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    margin: 0 0 32px 0;
    max-width: 720px;
    position: relative;
    z-index: 1;
}
.exc-svc-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.exc-svc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ea144f;
    color: #fff;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 14px rgba(234,20,79,0.4);
    border: none;
    cursor: pointer;
}
.exc-svc-btn-primary:hover {
    background: #c40f3f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234,20,79,0.5);
}
.exc-svc-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.35);
    transition: background 0.2s, border-color 0.2s;
}
.exc-svc-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Section base */
.exc-svc-section-eyebrow {
    display: inline-block;
    color: #ea144f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.exc-svc-section-sub {
    color: #555;
    font-size: 17px;
    max-width: 720px;
    margin: 0 0 40px 0;
}

/* Intro */
.exc-svc-intro {
    padding: 80px 0;
    background: #fff;
}
.exc-svc-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}
.exc-svc-intro p {
    color: #444;
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
    max-width: 800px;
}

/* Services grid */
.exc-svc-services {
    padding: 80px 0;
    background: #fafafa;
}
.exc-svc-services h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-svc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.exc-svc-service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.exc-svc-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: #ea144f;
}
.exc-svc-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(234,20,79,0.1);
    color: #ea144f;
    font-size: 24px;
    margin-bottom: 18px;
}
.exc-svc-service-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 10px 0;
}
.exc-svc-service-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Process */
.exc-svc-process {
    padding: 80px 0;
    background: #fff;
}
.exc-svc-process h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
}
.exc-svc-process .exc-svc-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-svc-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.exc-svc-step {
    text-align: center;
    padding: 24px 20px;
    background: #fafafa;
    border-radius: 14px;
    transition: background 0.2s;
}
.exc-svc-step:hover {
    background: #fff5f7;
}
.exc-svc-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ea144f;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}
.exc-svc-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 8px 0;
}
.exc-svc-step p {
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Why choose */
.exc-svc-why {
    padding: 80px 0;
    background: #0a2540;
    color: #fff;
}
.exc-svc-why .exc-svc-section-eyebrow {
    color: #ff7591;
}
.exc-svc-why h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
    max-width: 800px;
}
.exc-svc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.exc-svc-why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 28px 24px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.exc-svc-why-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ea144f;
    transform: translateY(-2px);
}
.exc-svc-why-num {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ff7591;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    background: rgba(234,20,79,0.15);
    padding: 4px 10px;
    border-radius: 100px;
}
.exc-svc-why-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}
.exc-svc-why-card p {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* FAQ */
.exc-svc-faq {
    padding: 80px 0;
    background: #fff;
}
.exc-svc-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-svc-faq .exc-svc-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-svc-faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.exc-svc-faq-item {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.exc-svc-faq-item[open] {
    border-color: #ea144f;
    box-shadow: 0 4px 14px rgba(234,20,79,0.1);
}
.exc-svc-faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    color: #0a2540;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.exc-svc-faq-item summary::-webkit-details-marker {
    display: none;
}
.exc-svc-faq-item summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    color: #ea144f;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.exc-svc-faq-item[open] summary::after {
    transform: rotate(45deg);
}
.exc-svc-faq-item p {
    padding: 0 22px 20px 22px;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}

/* Final CTA */
.exc-svc-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ea144f 0%, #c40f3f 100%);
    color: #fff;
    text-align: center;
}
.exc-svc-final-cta h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px 0;
    color: #fff;
    letter-spacing: -1px;
}
.exc-svc-final-cta > .exc-svc-container > p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 32px 0;
}
.exc-svc-final-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.exc-svc-final-cta .exc-svc-btn-primary {
    background: #fff;
    color: #ea144f;
}
.exc-svc-final-cta .exc-svc-btn-primary:hover {
    background: #fff;
    color: #ea144f;
}
.exc-svc-final-cta .exc-svc-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.exc-svc-final-cta .exc-svc-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.exc-svc-final-note {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .exc-svc-hero h1 {
        font-size: 42px;
    }
    .exc-svc-services-grid,
    .exc-svc-why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .exc-svc-process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .exc-svc-hero {
        padding: 60px 0 50px;
    }
    .exc-svc-hero h1 {
        font-size: 32px;
    }
    .exc-svc-subtitle {
        font-size: 17px;
    }
    .exc-svc-services-grid,
    .exc-svc-why-grid,
    .exc-svc-process-grid {
        grid-template-columns: 1fr;
    }
    .exc-svc-intro h2,
    .exc-svc-services h2,
    .exc-svc-process h2,
    .exc-svc-why h2,
    .exc-svc-faq h2 {
        font-size: 28px;
    }
    .exc-svc-final-cta h2 {
        font-size: 28px;
    }
    .exc-svc-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .exc-svc-final-cta .exc-svc-btn-primary,
    .exc-svc-final-cta .exc-svc-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   LOCATION PAGES (post IDs: 1938 brooklyn, 1939 connecticut, 1940 nassau, 1941 nyc, 1942 suffolk, 1943 westchester)
   All 6 pages share exc-loc-* CSS classes
   ============================================= */
.exc-loc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.exc-loc-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1c3a5e 100%);
    color: #fff;
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}
.exc-loc-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234,20,79,0.18), transparent 70%);
    pointer-events: none;
}
.exc-loc-eyebrow {
    display: inline-block;
    background: rgba(234,20,79,0.2);
    border: 1px solid rgba(234,20,79,0.4);
    color: #ff7591;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.exc-loc-hero h1 {
    color: #fff;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0 0 20px 0;
    max-width: 800px;
    position: relative;
    z-index: 1;
}
.exc-loc-accent {
    color: #ff7591;
}
.exc-loc-subtitle {
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    margin: 0 0 32px 0;
    max-width: 720px;
    position: relative;
    z-index: 1;
}
.exc-loc-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.exc-loc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ea144f;
    color: #fff;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 14px rgba(234,20,79,0.4);
    border: none;
    cursor: pointer;
}
.exc-loc-btn-primary:hover {
    background: #c40f3f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234,20,79,0.5);
}
.exc-loc-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.35);
    transition: background 0.2s, border-color 0.2s;
}
.exc-loc-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Section base */
.exc-loc-section-eyebrow {
    display: inline-block;
    color: #ea144f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.exc-loc-section-sub {
    color: #555;
    font-size: 17px;
    max-width: 720px;
    margin: 0 0 40px 0;
}

/* Intro */
.exc-loc-intro {
    padding: 80px 0;
    background: #fff;
}
.exc-loc-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}
.exc-loc-intro p {
    color: #444;
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
    max-width: 800px;
}

/* Neighborhoods grid */
.exc-loc-neighborhoods {
    padding: 80px 0;
    background: #fafafa;
}
.exc-loc-neighborhoods h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-loc-neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.exc-loc-neighborhood-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 22px 20px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.exc-loc-neighborhood-card:hover {
    border-color: #ea144f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}
.exc-loc-neighborhood-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ea144f;
    margin: 0 0 6px 0;
}
.exc-loc-neighborhood-card p {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Challenges grid */
.exc-loc-challenges {
    padding: 80px 0;
    background: #fff;
}
.exc-loc-challenges h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-loc-challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.exc-loc-challenge-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s;
}
.exc-loc-challenge-card:hover {
    border-color: #ea144f;
    transform: translateY(-2px);
}
.exc-loc-challenge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(234,20,79,0.1);
    color: #ea144f;
    font-size: 22px;
    margin-bottom: 16px;
}
.exc-loc-challenge-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 8px 0;
}
.exc-loc-challenge-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Services grid */
.exc-loc-services {
    padding: 80px 0;
    background: #fafafa;
}
.exc-loc-services h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-loc-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.exc-loc-service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.exc-loc-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: #ea144f;
}
.exc-loc-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(234,20,79,0.1);
    color: #ea144f;
    font-size: 24px;
    margin-bottom: 16px;
}
.exc-loc-service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 8px 0;
}
.exc-loc-service-card p {
    color: #555;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

/* Pricing table */
.exc-loc-pricing {
    padding: 80px 0;
    background: #fff;
}
.exc-loc-pricing h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-loc-pricing .exc-loc-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-loc-pricing .exc-loc-section-sub {
    text-align: center;
    margin: 0 auto 40px auto;
}
.exc-loc-pricing-table {
    max-width: 900px;
    margin: 0 auto;
    background: #fafafa;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.exc-loc-pricing-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
    align-items: center;
    font-size: 15px;
    background: #fff;
}
.exc-loc-pricing-row:last-child {
    border-bottom: none;
}
.exc-loc-pricing-header {
    background: #0a2540;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.exc-loc-pricing-header > div {
    color: #fff !important;
}
.exc-loc-pricing-row strong {
    color: #0a2540;
    font-weight: 700;
}

/* Why choose */
.exc-loc-why {
    padding: 80px 0;
    background: #0a2540;
    color: #fff;
}
.exc-loc-why .exc-loc-section-eyebrow {
    color: #ff7591;
}
.exc-loc-why h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
    max-width: 800px;
}
.exc-loc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.exc-loc-why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 28px 24px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.exc-loc-why-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ea144f;
    transform: translateY(-2px);
}
.exc-loc-why-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #ff7591;
    margin: 0 0 10px 0;
}
.exc-loc-why-card p {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* FAQ */
.exc-loc-faq {
    padding: 80px 0;
    background: #fff;
}
.exc-loc-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-loc-faq .exc-loc-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-loc-faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.exc-loc-faq-item {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.exc-loc-faq-item[open] {
    border-color: #ea144f;
    box-shadow: 0 4px 14px rgba(234,20,79,0.1);
}
.exc-loc-faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    color: #0a2540;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.exc-loc-faq-item summary::-webkit-details-marker {
    display: none;
}
.exc-loc-faq-item summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    color: #ea144f;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.exc-loc-faq-item[open] summary::after {
    transform: rotate(45deg);
}
.exc-loc-faq-item p {
    padding: 0 22px 20px 22px;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}

/* Final CTA */
.exc-loc-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ea144f 0%, #c40f3f 100%);
    color: #fff;
    text-align: center;
}
.exc-loc-final-cta h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px 0;
    color: #fff;
    letter-spacing: -1px;
}
.exc-loc-final-cta > .exc-loc-container > p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 32px 0;
}
.exc-loc-final-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.exc-loc-final-cta .exc-loc-btn-primary {
    background: #fff;
    color: #ea144f;
}
.exc-loc-final-cta .exc-loc-btn-primary:hover {
    background: #fff;
    color: #ea144f;
}
.exc-loc-final-cta .exc-loc-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.exc-loc-final-cta .exc-loc-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.exc-loc-final-note {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .exc-loc-hero h1 {
        font-size: 44px;
    }
    .exc-loc-neighborhoods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .exc-loc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .exc-loc-why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .exc-loc-hero {
        padding: 60px 0 50px;
    }
    .exc-loc-hero h1 {
        font-size: 32px;
    }
    .exc-loc-subtitle {
        font-size: 17px;
    }
    .exc-loc-neighborhoods-grid,
    .exc-loc-challenges-grid,
    .exc-loc-services-grid,
    .exc-loc-why-grid {
        grid-template-columns: 1fr;
    }
    .exc-loc-pricing-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .exc-loc-pricing-header {
        display: none;
    }
    .exc-loc-intro h2,
    .exc-loc-neighborhoods h2,
    .exc-loc-challenges h2,
    .exc-loc-services h2,
    .exc-loc-pricing h2,
    .exc-loc-why h2,
    .exc-loc-faq h2 {
        font-size: 28px;
    }
    .exc-loc-final-cta h2 {
        font-size: 28px;
    }
    .exc-loc-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .exc-loc-final-cta .exc-loc-btn-primary,
    .exc-loc-final-cta .exc-loc-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   LOCATION PAGES - UNIQUE EXTENDED CONTENT (exc-loc2-*)
   Used for /locations/suffolk-county/, /locations/nassau-county/, /locations/nyc/
   ============================================= */
.exc-loc2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.exc-loc2-section-eyebrow {
    display: inline-block;
    color: #ea144f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.exc-loc2-section-sub {
    color: #555;
    font-size: 17px;
    max-width: 720px;
    margin: 0 0 40px 0;
}

/* Local Stats - dark gradient strip */
.exc-loc2-stats {
    background: linear-gradient(135deg, #0a2540 0%, #1c3a5e 100%);
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.exc-loc2-stats::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234,20,79,0.15), transparent 70%);
    pointer-events: none;
}
.exc-loc2-stats .exc-loc2-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.exc-loc2-stat {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding: 0 16px;
}
.exc-loc2-stat:last-child {
    border-right: none;
}
.exc-loc2-stat strong {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #ff7591;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.exc-loc2-stat span {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

/* Coverage grid - deep detail neighborhoods */
.exc-loc2-coverage {
    padding: 80px 0;
    background: #fff;
}
.exc-loc2-coverage h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-loc2-coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.exc-loc2-coverage-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.exc-loc2-coverage-card:hover {
    border-color: #ea144f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.exc-loc2-coverage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ea144f;
    margin: 0 0 14px 0;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(234,20,79,0.15);
}
.exc-loc2-coverage-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 16px 0;
}
.exc-loc2-coverage-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.exc-loc2-coverage-features li {
    position: relative;
    padding: 6px 0 6px 22px;
    color: #0a2540;
    font-size: 14px;
    font-weight: 500;
}
.exc-loc2-coverage-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ea144f;
    font-weight: 700;
}

/* Customer Voices - testimonials with location tags */
.exc-loc2-voices {
    padding: 80px 0;
    background: #fafafa;
}
.exc-loc2-voices h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}
.exc-loc2-voices .exc-loc2-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-loc2-voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.exc-loc2-voice-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.exc-loc2-voice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.exc-loc2-voice-stars {
    color: #fbbf24;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.exc-loc2-voice-card > p {
    color: #333;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 20px 0;
    font-style: italic;
    flex-grow: 1;
}
.exc-loc2-voice-author strong {
    display: block;
    color: #0a2540;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}
.exc-loc2-voice-author span {
    color: #ea144f;
    font-size: 13px;
    font-weight: 600;
}

/* Mid CTA - urgency band */
.exc-loc2-mid-cta {
    padding: 60px 0;
    background: #0a2540;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.exc-loc2-mid-cta::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234,20,79,0.18), transparent 70%);
    pointer-events: none;
}
.exc-loc2-mid-cta .exc-loc2-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.exc-loc2-mid-cta-content {
    flex: 1;
    min-width: 280px;
}
.exc-loc2-mid-cta h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}
.exc-loc2-mid-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}
.exc-loc2-mid-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.exc-loc2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ea144f;
    color: #fff;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 14px rgba(234,20,79,0.4);
}
.exc-loc2-btn-primary:hover {
    background: #c40f3f;
    color: #fff;
    transform: translateY(-2px);
}
.exc-loc2-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.35);
    transition: background 0.2s, border-color 0.2s;
}
.exc-loc2-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Local Team - operations focus */
.exc-loc2-team {
    padding: 80px 0;
    background: #fff;
}
.exc-loc2-team h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.exc-loc2-team .exc-loc2-section-eyebrow {
    display: block;
    text-align: center;
}
.exc-loc2-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.exc-loc2-team-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.exc-loc2-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: #ea144f;
}
.exc-loc2-team-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea144f 0%, #c40f3f 100%);
    color: #fff;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(234,20,79,0.3);
}
.exc-loc2-team-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 12px 0;
}
.exc-loc2-team-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .exc-loc2-stats .exc-loc2-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .exc-loc2-stat:nth-child(2n) {
        border-right: none;
    }
    .exc-loc2-coverage-grid {
        grid-template-columns: 1fr;
    }
    .exc-loc2-voices-grid,
    .exc-loc2-team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .exc-loc2-stats {
        padding: 40px 0;
    }
    .exc-loc2-stats .exc-loc2-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .exc-loc2-stat strong {
        font-size: 32px;
    }
    .exc-loc2-coverage,
    .exc-loc2-voices,
    .exc-loc2-team {
        padding: 60px 0;
    }
    .exc-loc2-coverage h2,
    .exc-loc2-voices h2,
    .exc-loc2-team h2 {
        font-size: 28px;
    }
    .exc-loc2-voices-grid,
    .exc-loc2-team-grid {
        grid-template-columns: 1fr;
    }
    .exc-loc2-mid-cta .exc-loc2-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .exc-loc2-mid-cta-buttons {
        justify-content: center;
    }
    .exc-loc2-mid-cta h2 {
        font-size: 22px;
    }
}
