/* ===================================================================
 * STYLESHEET FOR: Saginaw Geo Pillar Page (Refactored)
 * =================================================================== */

/* ===================================================================
   1. HERO SECTION
 =================================================================== */
.saginaw-hero {
    position: relative;
    z-index: 2;
    color: var(--color-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 450px;
    padding: var(--space-xl) var(--space-lg);
}

.saginaw-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: -1;
    background: #000 url('https://idealroofingco.com/wp-content/uploads/saginaw-mi-roofing-contractor.jpg') center center/cover no-repeat;
    box-shadow: inset 0 0 0 100vw rgba(5, 74, 144, 0.6);
}

.saginaw-hero h1 {
    color: var(--color-light);
    text-transform: uppercase;
    font-size: clamp(1.5rem, 4vw, 2.1rem); /* CORRECTED: Matches standard hero title size */
}

.saginaw-hero .hero-intro-text {
    max-width: 1100px;
    margin: var(--space-md) auto 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===================================================================
   2. PAGE COMPONENTS
 =================================================================== */

/* --- Service Section Panels --- */
.content-panel .roofing-text-container,
.info-panel .roofing-text-container {
    color: var(--color-dark);
}

.content-panel .check-item,
.info-panel .check-item {
    color: var(--color-dark);
}


/* --- Mini Gallery for Service Sections --- */
.mini-gallery.lightbox-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: center;
}

.mini-gallery.lightbox-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-gallery.lightbox-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@media (max-width: 767px) {
    .mini-gallery.lightbox-gallery {
        grid-template-columns: 1fr 1fr;
    }
    .mini-gallery.lightbox-gallery img {
        height: 120px;
    }
}

/* --- Local Expertise Section --- */
.local-expertise-section .roofing-content-wrapper {
    position: relative;
    z-index: 1;
    color: var(--color-light);
    background: #000 url('http://googleusercontent.com/image_collection/image_retrieval/1242406684754824800_0') center center/cover no-repeat;
    padding: var(--space-xl);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.local-expertise-section .roofing-content-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: rgba(26, 54, 93, 0.8);
}
.local-expertise-section h2,
.local-expertise-section h3 {
    color: var(--color-light);
}
.local-expertise-section .roofing-text-container:first-child {
    text-align: left;
}
.local-expertise-section .roofing-text-container:first-child h2 {
    text-align: center;
}
.local-expertise-section .cta-box {
    background-color: rgba(0,0,0,0.2);
    padding: var(--space-xl);
    border-radius: var(--border-radius);
    text-align: center;
}
.local-expertise-section .cta-box h3 {
    margin-top: 0;
}
