/* Window Replacement (pillar) */
:root {
  --service-hero-image: url('../../images/heroes/window-replacement-hero.webp');
}

/* Keep hero buttons consistent across service pages */
.window-replacement-page .service-hero {
  padding-top: 2.75rem;
}

/* Tighten trust guide spacing on this page */
.window-replacement-page .trust-guide {
  margin-top: 0.5rem;
}

/* =========================================
   NEW: Local Proof / Project Grid Styles
   ========================================= */
.local-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color, #0056b3);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-color, #0056b3);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.project-details {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

/* =========================================
   NEW: FAQ Accordion Styles
   ========================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #1f2937;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-icon {
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-color, #0056b3);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #f9fafb;
}

/* Active State */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-answer p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}