@charset "utf-8";

/* ================================================================
   KA-PLOW — Property Maintenance Page  v4.1
   Inherits design system from global.css
   Neutral palette: charcoal + brand orange — season-agnostic
   ================================================================ */

/* ── PAGE BANNER ────────────────────────────────────────────── */
#top_bnnr {
    min-height: 28vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 5%;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.60) 100%),
        url('/site/content/maint/top_bnr.jpg') center center / cover no-repeat,
        #2a2a2a;
    color: #fff;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 2px 4px 6px rgba(0,0,0,0.5);
    position: relative;
}
#top_bnnr::after { display: none; }

/* ── INTRO TEXT ─────────────────────────────────────────────── */
#hd_intro {
    max-width: 960px;
    margin: 2.5rem auto;
    padding: 0 3%;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -0.04em;
    color: #333;
}
#hd_intro p { margin-top: 1em; }

/* ── SERVICE TILE GRID ──────────────────────────────────────── */
#svc-grid {
    background: #f4f4f2;
    padding: 2.5rem 5% 3rem;
}
#svc-grid h2 {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-bottom: 1.75rem;
}
.svc-grid-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── SERVICE TILE CARD ──────────────────────────────────────── */
.svc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(20% - 12px);
    min-width: 110px;
    padding: 1.25em 0.75em;
    background: #fff;
    border: 2px solid #ddd9d3;
    border-radius: 6px;
    text-decoration: none;
    color: #1a1a1a;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.3;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card i {
    font-size: 2rem;
    color: #D74100;
    margin-bottom: 0.6rem;
    transition: transform 0.2s ease, color 0.2s ease;
}
.svc-card:hover {
    border-color: #D74100;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.svc-card:hover i { transform: scale(1.08); }
.svc-card.active {
    background: #2a2a2a;
    border-color: #2a2a2a;
    color: #fff;
}
.svc-card.active i { color: #D74100; }

/* ── SERVICE REVEAL PANELS ──────────────────────────────────── */
#svc-detail-wrap {
    background: #fff;
}
.svc-section {
    display: none;
    border-top: 3px solid #D74100;
}
.svc-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5% 2.5rem;
}

/* Panel header bar */
.svc-section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #2a2a2a;
    color: #fff;
    padding: 1rem 5%;
    margin: 0 -5%;
}
.svc-title-icon-fa {
    font-size: 1.6rem;
    color: #D74100;
    flex-shrink: 0;
}
.svc-section-head h3 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    flex: 1;
    margin: 0;
    color: #fff;
}
.svc-close-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.svc-close-btn:hover { background: rgba(255,255,255,0.3); }

/* Panel body */
.svc-section-body {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    align-items: flex-start;
}
.svc-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.85;
    color: #222;
}
.svc-text p  { margin-top: 1em; color: #222; }
.svc-text li { margin-bottom: 0.35em; color: #222; }
.svc-text b, .svc-text strong { color: #2a2a2a; }
.svc-text ul, .svc-text ol { margin-top: 0.5em; }

/* CTA button */
.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.7em 1.6em;
    background: #D74100;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.service-cta:hover {
    background: #b33600;
    transform: translateY(-2px);
}

/* Photos grid (for future use) */
.svc-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 260px;
    flex-shrink: 0;
}
.svc-photos img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1050px) {
    .svc-section-body { flex-direction: column; }
    .svc-photos { width: 100%; grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 601px) {
    #hd_intro {
        font-size: 1.35rem;
        line-height: 1.65;
    }
}
@media (max-width: 600px) {
    #hd_intro {
        font-size: 1.35rem;
        line-height: 1.35;
        margin-top: 1.25rem;
    }
    #top_bnnr {
        font-size: clamp(1.8rem, 9vw, 3rem);
        min-height: 16vh;
        line-height: 1;
        padding: 2rem 5%;
    }
    .svc-card { width: calc(33.33% - 10px); }
    .svc-section-body { flex-direction: column; }
    .svc-photos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
    .svc-card { width: calc(50% - 8px); }
}
