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

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

/* ============================================
   Roofers El Cajon – Homepage Stylesheet
   Unique Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #ee3c42;
    --color-secondary: #111827;
    --color-dark: #111827;
    --color-body: #374151;
    --color-lavender: #f9fafb;
    --color-white: #FFFFFF;
    --color-light-gray: #eceff3;
    --color-yellow: #ee3c42;
    --color-red: #ee3c42;
    --color-black: #000000;

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

    --container-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 50px 0;
    --card-radius: 16px;
    --btn-radius: 50px;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.08);
    --shadow-md: 0 8px 30px rgba(17, 24, 39, 0.12);
    --shadow-lg: 0 16px 48px rgba(17, 24, 39, 0.16);
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

a {
    color: var(--color-red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary);
}

ul, ol {
    list-style: none;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); margin-bottom: 0.75rem; }
h4 { font-size: clamp(1rem, 2vw, 1.15rem); margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

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

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-red);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

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

.section-intro {
    max-width: 720px;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.text-center .section-eyebrow { padding-left: 0; }
.text-center .section-eyebrow::before { display: none; }

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

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

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

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

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

/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-secondary));
    width: 0%;
    z-index: 10000;
    transition: width 0.1s linear;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.menu-open {
    overflow: hidden !important;
    touch-action: none;
}

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

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

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

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

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

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

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #111827 0%, #1e293b 55%, #0f172a 100%);
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Images/el-cajon-ca-residential-roofing-contractor.webp') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: luminosity;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top right, var(--color-white) 49%, transparent 51%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--color-yellow);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--color-white);
    font-size: clamp(2.35rem, 3.5vw, 3.25rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--color-yellow);
}

.hero-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0 auto 32px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--color-yellow);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* BRANDS */
.brands-strip {
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 18px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 20px;
}

.brands-grid img {
    display: block;
    width: 100%;
    max-width: 165px;
    max-height: 76px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* Floating geometric shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-yellow);
    bottom: 20%;
    right: 15%;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    background: var(--color-red);
    top: 30%;
    right: 35%;
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
.angled-top {
    position: relative;
}

.angled-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom right, var(--color-white) 49%, transparent 51%);
    z-index: 1;
}

.angled-bottom {
    position: relative;
}

.angled-bottom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top right, var(--color-white) 49%, transparent 51%);
    z-index: 1;
}

/* ============================================
   INTRO / ABOUT SECTION
   ============================================ */
.intro-section {
    padding: var(--section-padding);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-light-gray);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Uncropped Contractor Image */
.intro-image.no-crop {
    aspect-ratio: auto;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image.no-crop img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--card-radius);
}

.intro-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
    padding: var(--section-padding);
    background: var(--color-lavender);
    position: relative;
}

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

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red), var(--color-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(238, 60, 66, 0.1), rgba(17, 24, 39, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: var(--section-padding);
}

.pricing-header .section-intro {
    margin-left: auto;
    margin-right: auto;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.pricing-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
}

.pricing-text strong {
    color: inherit;
    font-weight: 700;
}

.pricing-table-card {
    background: linear-gradient(145deg, #111827 0%, #1e293b 100%);
    color: var(--color-white);
    border-radius: var(--card-radius);
    padding: 32px 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table-card h3 {
    color: var(--color-yellow);
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.pricing-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 24px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th {
    padding: 12px 14px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.pricing-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.93rem;
    vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr {
    transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.service-name {
    font-weight: 600;
    color: #ffffff;
}

.price-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-yellow);
    font-size: 0.98rem;
}

.unit {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.pricing-table-cta {
    margin-top: 8px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding);
    background: linear-gradient(160deg, #0b0f19 0%, #111827 50%, #0f172a 100%);
    position: relative;
}

.services-section h2 {
    color: var(--color-white);
    font-size: clamp(1.1rem, 2.3vw, 1.85rem);
    white-space: nowrap;
}

.services-section .section-intro {
    color: rgba(255, 255, 255, 0.75);
}

.services-section .section-eyebrow {
    color: var(--color-yellow);
}

.services-section .section-eyebrow::before {
    background: var(--color-yellow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ee3c42, #f59e0b, #ee3c42);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 4;
}

.service-card:hover {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    transform: translateY(-6px);
    border-color: rgba(238, 60, 66, 0.4);
    box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.55), 0 0 20px rgba(238, 60, 66, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    background: #0f172a;
}

.service-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
    pointer-events: none;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-card p {
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 14px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card .service-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: #fecdd3;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(238, 60, 66, 0.35);
    border-radius: 20px;
    padding: 3px 10px;
    letter-spacing: 0.2px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    max-width: calc(100% - 20px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card .service-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ee3c42;
    box-shadow: 0 0 6px #ee3c42;
    flex-shrink: 0;
}

.service-card .btn-service-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
    padding: 10px 16px !important;
    background: rgba(238, 60, 66, 0.1) !important;
    color: #ff8589 !important;
    font-family: var(--font-heading) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-top: auto !important;
    border: 1px solid rgba(238, 60, 66, 0.3) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer !important;
}

.service-card .btn-service-cta:hover {
    background: linear-gradient(135deg, #ee3c42 0%, #c5272c 100%) !important;
    color: #ffffff !important;
    border-color: #ee3c42 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(238, 60, 66, 0.45) !important;
}

.services-cta-wrap {
    text-align: center;
    margin-top: 36px;
    position: relative;
    z-index: 2;
}

.btn-services-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ee3c42 0%, #c5272c 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(238, 60, 66, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-services-call:hover {
    background: linear-gradient(135deg, #ff4d53 0%, #d42f34 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(238, 60, 66, 0.6);
    color: #ffffff !important;
}

.btn-services-call .phone-icon {
    font-size: 1.25rem;
    animation: phonePulse 2s infinite ease-in-out;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-services-call {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* ============================================
   ROOFING SYSTEMS
   ============================================ */
.systems-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.system-card {
    border: 2px solid var(--color-light-gray);
    border-radius: var(--card-radius);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}

.system-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.system-card .system-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
}

.system-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.system-card p {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-section {
    padding: var(--section-padding);
    background: var(--color-lavender);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-red));
    z-index: 0;
}

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

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: all var(--transition);
}

.process-step:hover .step-number {
    background: var(--color-primary);
    color: var(--color-white);
}

.process-step h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.83rem;
    line-height: 1.55;
}

/* ============================================
   RECENT WORK / PORTFOLIO
   ============================================ */
.work-section {
    padding: var(--section-padding);
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.work-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition);
}

.work-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.work-card-image {
    aspect-ratio: 16/10;
    background: var(--color-light-gray);
    position: relative;
    overflow: hidden;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-card-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 6px;
}

.work-card-body {
    padding: 24px;
}

.work-card-body h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.work-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* PORTFOLIO GALLERY */
.portfolio-section {
    padding: var(--section-padding);
    background: #f8fafc;
}

.portfolio-header .section-intro {
    margin: 12px auto 20px;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 28px;
}

.portfolio-filter {
    border: 1px solid #dbe3ee;
    background: #fff;
    color: var(--color-secondary);
    border-radius: 999px;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.portfolio-filter:hover,
.portfolio-filter.active {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
    box-shadow: 0 6px 16px rgba(238, 60, 66, 0.22);
}

.portfolio-filter span {
    display: inline-grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    margin-left: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    font-size: 0.65rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 12px;
    max-width: 1080px;
    margin: 0 auto;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #e5e7eb;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    cursor: zoom-in;
}

.portfolio-card-large { grid-column: span 2; grid-row: span 2; }
.portfolio-card-wide { grid-column: span 2; }

.portfolio-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.88) 100%);
    pointer-events: none;
}

.portfolio-card:hover img { transform: scale(1.06); }

.portfolio-overlay {
    position: absolute;
    z-index: 1;
    left: 16px;
    right: 16px;
    bottom: 14px;
    color: #fff;
}

.portfolio-overlay span {
    display: inline-block;
    padding: 4px 7px;
    margin-bottom: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,0.18);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.portfolio-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 0.94rem;
    line-height: 1.25;
}

.portfolio-lightbox {
    width: min(92vw, 1100px);
    max-height: 90vh;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: #111827;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    overflow: visible;
}

.portfolio-lightbox::backdrop { background: rgba(2, 6, 23, 0.82); }

.portfolio-lightbox img {
    display: block;
    width: 100%;
    max-height: calc(90vh - 58px);
    object-fit: contain;
    border-radius: 14px 14px 0 0;
}

.portfolio-lightbox p {
    margin: 0;
    padding: 14px 20px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-align: center;
}

.portfolio-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--color-red);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}

/* ============================================
   DAMAGE CAUSES
   ============================================ */
.damage-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--color-dark) 0%, #1e293b 100%);
    color: var(--color-white);
    position: relative;
}

.damage-section h2 {
    color: var(--color-white);
}

.damage-section .section-eyebrow {
    color: var(--color-yellow);
}

.damage-section .section-eyebrow::before {
    background: var(--color-yellow);
}

.damage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.damage-list {
    list-style: none;
}

.damage-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.93rem;
    line-height: 1.6;
}

.damage-list li::before {
    content: '▸';
    color: var(--color-yellow);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================
   WARNING SIGNS
   ============================================ */
.signs-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.signs-section h2,
.why-choose h2,
.pricing-section h2,
.systems-section h2,
.damage-section h2,
.materials-section h2,
.rules-section h2,
.faq-section h2,
.zip-section h2 {
    font-size: clamp(1.05rem, 2.15vw, 1.85rem);
    white-space: nowrap;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sign-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 12px;
    background: var(--color-lavender);
    border-left: 4px solid var(--color-red);
    transition: all var(--transition);
}

.sign-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.sign-card .sign-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.sign-card h3 {
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.sign-card p {
    font-size: 0.87rem;
    line-height: 1.55;
}

/* ============================================
   EMERGENCY CTA BANNER
   ============================================ */
.emergency-banner {
    padding: 60px 0;
    background: var(--color-red);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, transparent 100%);
}

.emergency-content {
    position: relative;
    z-index: 1;
}

.emergency-banner h2 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: clamp(1.1rem, 2.3vw, 1.85rem);
    white-space: nowrap;
}

.emergency-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 28px;
}

/* Prominent Emergency CTA Button */
.emergency-banner .btn {
    background: #ffffff !important;
    color: var(--color-red) !important;
    border: 2px solid #ffffff !important;
    font-weight: 700 !important;
    padding: 16px 36px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.emergency-banner .btn:hover {
    background: #111827 !important;
    color: #ffffff !important;
    border-color: #111827 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* ============================================
   MATERIALS SECTION
   ============================================ */
.materials-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.materials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.materials-image {
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-light-gray);
}

.materials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   EQUIPMENT SECTION
   ============================================ */
.equipment-section {
    padding: var(--section-padding);
    background: linear-gradient(160deg, #0b0f19 0%, #111827 60%, #0f172a 100%);
    position: relative;
    color: #ffffff;
}

.equipment-section h2 {
    color: #ffffff;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    margin-bottom: 12px;
}

.equipment-section .section-intro {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.equipment-section .section-eyebrow {
    color: var(--color-yellow);
}

.equipment-section .section-eyebrow::before {
    background: var(--color-yellow);
}

.equipment-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 5px solid #ee3c42;
    border-radius: 16px;
    padding: 32px 36px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.equipment-card:hover {
    box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.65), 0 0 30px rgba(238, 60, 66, 0.2);
    border-color: rgba(238, 60, 66, 0.4);
}

.equipment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fca5a5;
    background: rgba(238, 60, 66, 0.14);
    border: 1px solid rgba(238, 60, 66, 0.3);
    border-radius: 30px;
    padding: 6px 16px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.equipment-card p {
    color: rgba(226, 232, 240, 0.9);
    font-size: 1.02rem;
    line-height: 1.85;
    margin: 0;
}

/* ============================================
   BUILDING RULES
   ============================================ */
.rules-section {
    padding: var(--section-padding);
    background: #f8fafc;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
}

.rule-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ee3c42, #f59e0b);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.rule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
    border-color: rgba(238, 60, 66, 0.3);
}

.rule-card:hover::before {
    transform: scaleX(1);
}

.rule-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(238, 60, 66, 0.1), rgba(245, 158, 11, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border: 1px solid rgba(238, 60, 66, 0.15);
}

.rule-card h3 {
    color: #111827;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
}

.rule-card p {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-section {
    padding: var(--section-padding);
    background: var(--color-dark);
}

.areas-section h2 {
    color: var(--color-white);
}

.areas-section .section-eyebrow {
    color: var(--color-yellow);
}

.areas-section .section-eyebrow::before {
    background: var(--color-yellow);
}

.areas-section .section-intro {
    color: rgba(255, 255, 255, 0.75);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area-card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}

.area-card:hover {
    background: rgba(238, 60, 66, 0.12);
    border-color: #ee3c42;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(238, 60, 66, 0.2);
}

.area-card h3 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

/* ============================================
   DRIVING DIRECTIONS SECTION
   ============================================ */
.directions-section {
    padding: 60px 0 50px 0;
    background: #ffffff;
}

.directions-title {
    color: #ee3c42;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
}

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

.direction-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.direction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(238, 60, 66, 0.18);
}

.direction-card iframe {
    width: 100%;
    height: 340px;
    border: 0;
    border-radius: 8px;
    display: block;
}

@media (max-width: 992px) {
    .directions-grid {
        grid-template-columns: 1fr;
    }
}

.area-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.84rem;
    line-height: 1.5;
}

/* ============================================
   RESOURCES
   ============================================ */
.resources-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.resources-section h2 {
    font-size: clamp(1.1rem, 2.3vw, 1.85rem);
    white-space: nowrap;
}

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

.resource-card {
    background: var(--color-lavender);
    border-radius: var(--card-radius);
    padding: 32px 28px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    transition: all var(--transition);
}

.resource-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.resource-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.resource-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--color-lavender);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-dark);
    gap: 12px;
    line-height: 1.4;
}

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

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

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

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

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

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

/* ============================================
   ZIP CODES
   ============================================ */
.zip-section {
    padding: var(--section-padding);
}

.zip-container-card {
    background: #60676f;
    background: linear-gradient(135deg, #646b73 0%, #565d65 100%);
    border-radius: 16px;
    padding: 38px 30px;
    margin: 32px auto 20px;
    max-width: 1100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.zip-columns-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px 20px;
    text-align: left;
}

.zip-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 3px 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    white-space: nowrap;
}

.zip-badge .zip-pin {
    flex-shrink: 0;
    color: #ffffff;
    transition: transform var(--transition), color var(--transition);
}

.zip-badge:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
}

.zip-badge:hover .zip-pin {
    transform: scale(1.15);
    color: #ff6b6b;
}

.zip-disclaimer {
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--color-body);
}

/* Fallback for legacy flex badges */
.zip-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .zip-columns-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 24px;
    }
}

@media (max-width: 640px) {
    .zip-container-card {
        padding: 24px 16px;
    }
    .zip-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 12px;
    }
    .zip-badge {
        font-size: 0.95rem;
        padding: 2px 4px;
        gap: 6px;
    }
}

@media (max-width: 380px) {
    .zip-badge {
        font-size: 0.88rem;
    }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #1e293b 60%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom right, var(--color-white) 49%, transparent 51%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: clamp(1.1rem, 2.3vw, 1.85rem);
    white-space: nowrap;
}

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

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

.cta-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 32px;
}

.cta-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-list li::before {
    content: '✓';
    color: var(--color-yellow);
    font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Back to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(238, 60, 66, 0.4);
    z-index: 99;
    transition: all var(--transition);
}

.scroll-top-btn:hover {
    background: #d42f34;
    transform: translateY(-3px);
}

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

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

    .hero { min-height: 80vh; }

    .intro-grid,
    .pricing-content,
    .damage-grid,
    .materials-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-grid,
    .features-grid,
    .systems-grid,
    .rules-grid,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 32px;
    }

    .process-steps::before { display: none; }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Tablet Small */
@media (max-width: 768px) {
    .brands-strip { padding: 16px 0; }
    .brands-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .brands-grid img { max-width: 145px; max-height: 82px; }
    .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 170px; }

    :root {
        --section-padding: 60px 0;
    }

    .site-logo img {
        max-height: 52px;
    }

    .header-cta .header-phone-pill {
        font-size: 0.88rem;
        padding: 8px 18px;
    }

    .emergency-banner h2,
    .resources-section h2,
    .final-cta h2,
    .services-section h2,
    .signs-section h2,
    .why-choose h2,
    .pricing-section h2,
    .systems-section h2,
    .damage-section h2,
    .materials-section h2,
    .rules-section h2,
    .faq-section h2,
    .zip-section h2 {
        white-space: normal;
        font-size: clamp(1.3rem, 4vw, 2rem);
    }

    .services-grid,
    .signs-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        gap: 32px;
        flex-wrap: wrap;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero::after,
    .angled-top::before,
    .angled-bottom::after,
    .final-cta::before {
        height: 50px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .brands-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .brands-grid img { max-width: 135px; max-height: 76px; }
    .portfolio-grid { grid-auto-rows: 135px; gap: 10px; }
    .portfolio-card-large { grid-row: span 2; }
    .portfolio-overlay { left: 11px; right: 11px; bottom: 10px; }
    .portfolio-overlay h3 { font-size: 0.78rem; }
    .portfolio-filters { gap: 7px; }
    .portfolio-filter { padding: 7px 11px; font-size: 0.7rem; }

    :root {
        --section-padding: 44px 0;
    }

    .header-inner {
        padding: 8px 0;
    }

    .site-logo img {
        max-height: 44px;
    }

    .header-cta .header-phone-pill {
        font-size: 0.82rem;
        padding: 7px 14px;
        border-radius: 20px;
    }

    h1 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
    h2 { font-size: clamp(1.35rem, 5vw, 1.7rem); }

    .hero {
        min-height: auto;
        padding-top: 98px;
        padding-bottom: 50px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.92rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 28px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        padding: 12px 6px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat .stat-number {
        font-size: 1.5rem;
        line-height: 1;
    }

    .hero-stat .stat-label {
        font-size: 0.72rem;
        margin-top: 3px;
        line-height: 1.25;
    }

    .features-grid,
    .systems-grid,
    .rules-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .section-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 2px;
    }

    .zip-badges .zip-badge {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

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

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

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

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
/* Mobile Menu Section End */

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .mobile-menu,
    #scroll-progress,
    .hero::after,
    .emergency-banner,
    .final-cta {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        background: none;
        padding: 20px 0;
    }

    .hero h1, .hero-text {
        color: #000;
    }
}
