/* =============================================================
   Hero Plumbing — Homepage new sections
   Why Choose Us, How It Works, Areas, Blog, FAQ, CTA strip
   ============================================================= */

/* WHY CHOOSE US grid */
.hp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hp-why-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
}
.hp-why-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.11);
    transform: translateY(-3px);
}
.hp-why-icon { font-size: 2.2rem; margin-bottom: 14px; line-height: 1; }
.hp-why-title { font-size: 1rem; font-weight: 700; margin: 0 0 10px; color: #1a1a1a; }
.hp-why-desc  { font-size: 14.5px; line-height: 1.6; color: #555; margin: 0; }
@media (max-width: 900px) { .hp-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .hp-why-grid { grid-template-columns: 1fr; } }

/* HOW IT WORKS steps */
.hp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.hp-step-card {
    background: #f7f8fa;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    border-top: 4px solid #e10916;
}
.hp-step-number {
    width: 52px; height: 52px;
    background: #e10916; color: #fff;
    border-radius: 50%;
    font-size: 1.5rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.hp-step-title { font-size: 1.05rem; font-weight: 700; margin: 0 0 12px; color: #1a1a1a; }
.hp-step-desc  { font-size: 15px; line-height: 1.65; color: #555; margin: 0; }
@media (max-width: 767px) { .hp-steps-grid { grid-template-columns: 1fr; gap: 16px; } }

/* AREAS suburb chips */
.hp-suburbs-grid {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.hp-suburb-link {
    display: inline-block;
    padding: 9px 18px;
    background: #fff;
    border: 1px solid #dde1e7;
    border-radius: 6px;
    font-size: 14px; font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.hp-suburb-link:hover {
    border-color: #e10916;
    background: #fff4f4;
    color: #e10916;
}

/* BLOG grid */
.hp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hp-blog-card {
    display: flex; flex-direction: column;
    background: #f7f8fa;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: #1a1a1a;
    border: 1px solid #e8eaec;
    transition: box-shadow 0.2s, transform 0.2s;
}
.hp-blog-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px);
    text-decoration: none; color: #1a1a1a;
}
.hp-blog-label {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    color: #e10916; letter-spacing: 0.05em; margin-bottom: 10px;
    display: block;
}
.hp-blog-title {
    font-size: 1.05rem; font-weight: 700; margin: 0 0 10px; line-height: 1.3; color: #1a1a1a;
}
.hp-blog-excerpt {
    font-size: 14.5px; line-height: 1.6; color: #555; margin: 0 0 16px; flex: 1;
}
.hp-blog-link {
    font-size: 14px; font-weight: 600; color: #e10916;
}
@media (max-width: 767px) { .hp-blog-grid { grid-template-columns: 1fr; } }

/* FAQ ACCORDION */
.hp-faq-list { display: flex; flex-direction: column; gap: 12px; }

.hp-faq-item {
    background: #fff;
    border: 1px solid #e0e3e8;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.hp-faq-item[open] { border-color: #e10916; }

.hp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #1a1a1a;
    list-style: none;
    gap: 12px;
    user-select: none;
    -webkit-user-select: none;
    background: #fff;
}
.hp-faq-question::-webkit-details-marker { display: none; }
.hp-faq-question::marker { display: none; }
.hp-faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: #e10916;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    display: inline-block;
}
.hp-faq-item[open] > .hp-faq-question {
    color: #e10916;
    border-bottom: 1px solid #e8eaec;
}
.hp-faq-item[open] > .hp-faq-question::after { transform: rotate(45deg); }

.hp-faq-answer {
    padding: 16px 22px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    background: #fff;
}
.hp-faq-answer p { margin: 0; }
.hp-faq-answer a { color: #e10916; text-decoration: underline; }

@media (max-width: 640px) {
    .hp-faq-question { padding: 15px 16px; font-size: 0.95rem; }
    .hp-faq-answer   { padding: 14px 16px 18px; }
}
