@charset "utf-8";

/* ================================================================
   KA-PLOW — FAQ Page  v4.1
   Neutral palette: charcoal + brand orange
   ================================================================ */

/* ── 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/faq/top_bnr.jpg') center center / cover no-repeat,
        #2a2a2a;
    color: #fff;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 2px 4px 6px rgba(0,0,0,0.5);
}
#top_bnnr::after { display: none; }

/* ── FAQ WRAPPER ────────────────────────────────────────────── */
#faq-wrap {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0 0;
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.faq-section {
    margin-bottom: 0.75rem;
}
.faq-section-hd {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 1.44rem;
    letter-spacing: 0.05em;
    color: #fff;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(90,90,90,0.55) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(60,60,60,0.6) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 90%, rgba(75,75,75,0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 40%, rgba(110,110,110,0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 95% 70%, rgba(50,50,50,0.5) 0%, transparent 40%),
        linear-gradient(160deg, #0d0d0d 0%, #222222 35%, #111111 65%, #1c1c1c 100%);
    padding: 0.85rem 1.25rem;
    border-left: 5px solid #ccc;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
}
.faq-section-hd:hover { filter: brightness(1.15); }

/* Section icon (left) */
.faq-section-hd .faq-sec-icon { font-size: 1.8rem; flex-shrink: 0; }

/* Section chevron (right) */
.faq-section-hd .faq-sec-chevron {
    margin-left: auto;
    font-size: 0.9rem;
    color: #aaa;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Collapsed state — chevron points right */
.faq-section-hd.sec-collapsed {
    border-radius: 4px;
}
.faq-section-hd.sec-collapsed .faq-sec-chevron {
    transform: rotate(-90deg);
}

/* Section-specific colors */
#faq-general  .faq-section-hd { border-left-color: #e6b800; }
#faq-general  .faq-section-hd i { color: #e6b800; }
#faq-snow     .faq-section-hd { border-left-color: #5b9bd5; }
#faq-snow     .faq-section-hd i { color: #5b9bd5; }
#faq-summer   .faq-section-hd { border-left-color: #2e9e50; }
#faq-summer   .faq-section-hd i { color: #2e9e50; }
#faq-billing  .faq-section-hd { border-left-color: #8b5cf6; }
#faq-billing  .faq-section-hd i { color: #8b5cf6; }
#faq-area     .faq-section-hd { border-left-color: #D74100; }
#faq-area     .faq-section-hd i { color: #D74100; }

/* ── FAQ LIST ───────────────────────────────────────────────── */
.faq-list {
    border: 1px solid #e0ddd8;
    border-top: none;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    display: block; /* JS will slideUp/Down — stays visible by default */
}

/* ── INDIVIDUAL ITEM ────────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid #e8e5e0;
}
.faq-item:last-child { border-bottom: none; }

/* Question button */
.faq-q {
    width: 100%;
    display: block;
    position: relative;
    padding: 1rem 3rem 1rem 1.25rem;
    background: #fff;
    border: none;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1.45;
}
.faq-q i {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #D74100;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}
.faq-q:hover {
    background: #fdf9f7;
    color: #D74100;
}
.faq-item.open .faq-q {
    background: #fff8f5;
    color: #D74100;
}
.faq-item.open .faq-q i {
    transform: translateY(-50%) rotate(180deg);
}

/* Answer panel */
.faq-a {
    display: none;
    padding: 0.25rem 1.25rem 1.25rem 1.25rem;
    background: #fff8f5;
    font-size: 0.95rem;
    line-height: 1.85;
    color: #333;
    border-top: 1px solid #f0e8e3;
}
.faq-a p  { margin-top: 0.75em; }
.faq-a ul { margin: 0.5em 0 0 1em; }
.faq-a li { margin-bottom: 0.3em; }
.faq-a a  {
    color: #D74100;
    font-weight: 600;
    text-decoration: none;
}
.faq-a a:hover { text-decoration: underline; }

/* ── DISCLAIMER ─────────────────────────────────────────────── */
#faq-ask {
    margin: 2.5rem 0 0;
    padding: 1.1rem 1.4rem;
    background: #fff8f5;
    border: 1px solid rgba(215,65,0,0.25);
    border-left: 4px solid #D74100;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}
#faq-ask i { color: #D74100; margin-right: 0.25rem; }
#faq-ask a {
    color: #D74100;
    font-weight: 700;
    text-decoration: none;
}
#faq-ask a:hover { text-decoration: underline; }

#faq-disclaimer {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: #999;
    font-style: italic;
    line-height: 1.2;
    margin: 2rem 0 0;
    padding-top: 1.25rem;
    padding-bottom: 5px;
}
#faq-disclaimer a { color: #D74100; text-decoration: none; font-weight: 600; }
#faq-disclaimer a:hover { text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 600px) {
    #top_bnnr  { font-size: clamp(1.4rem, 7vw, 2rem); min-height: 16vh; line-height: 1.1; }
    #faq-wrap  { width: 100%; padding: 3rem 3% 0; box-sizing: border-box; }
    .faq-section-hd { font-size: 1rem; }
    .faq-q     { font-size: 0.9rem; padding: 0.85rem 2.5rem 0.85rem 1rem; }
    .faq-a     { font-size: 0.88rem; padding: 0.25rem 1rem 1rem; }
    .faq-list  { border-color: #888; }
    .faq-item  { border-bottom-color: #bbb; }
    #faq-ask   { display: block; width: auto; box-sizing: border-box; margin: 2rem 3% 0; padding: 0.9rem 1rem; font-size: 0.88rem; white-space: normal; word-break: normal; overflow-wrap: break-word; }
    #faq-disclaimer { margin: 1.5rem 3% 0; }
}
