/* ===================================================================
 * STYLESHEET FOR: Grand Blanc Geo Pillar Page (Refactored)
 * =================================================================== */

/*
 * NOTE: All hero section styles have been removed from this file.
 * They are now controlled by the .page-hero component in global-styles.css.
*/

/* ===================================================================
   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('https://idealroofingco.com/wp-content/uploads/residential-commercial-roofing-sky-banner.jpg') 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;
}

