@charset "utf-8";

/* ================================================================
   KA-PLOW — Summer Services Page  v4.0
   Inherits design system from global.css
   ================================================================ */

/* ── PAGE BANNER (summer-specific background) ───────────────── */
#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.25) 0%, rgba(0,0,0,0.55) 100%),
        url('/site/content/summer/top_bnr.jpg') center center / cover no-repeat,
        #0E2606;
    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 3px #495085;
    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; }

/* ── PRICING CALLOUT ────────────────────────────────────────── */
#smr-pricing {
    background: #0d2410;
    padding: 3rem 5%;
}
#smr-pricing-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    max-width: 900px;
    margin: 0 auto;
}
.smr-price-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(46,158,80,0.28);
    border-radius: 12px;
    padding: 2em;
    color: #c8f0d0;
    text-align: center;
    position: relative;
}
.smr-price-card .btn-primary { box-shadow: 0 3px 8px rgba(215,65,0,0.45); }
.smr-price-card h3 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    margin: 0.5em 0 0.75em;
    letter-spacing: 0.03em;
}
.smr-price-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.1em;
}
.smr-price-card ul {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.8;
    text-align: left;
    padding-left: 1.2em;
    margin-bottom: 1.5em;
    flex: 1;
}
.smr-price-featured {
    border-color: rgba(46,158,80,0.6);
    background: rgba(46,158,80,0.1);
    box-shadow: 0 0 28px rgba(46,158,80,0.18);
}
.smr-price-featured ul { line-height: 2.2; }
.smr-price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e9e50;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3em 1em;
    border-radius: 20px;
    white-space: nowrap;
}
.smr-price-icon {
    font-size: 2rem;
    color: #2e9e50;
    margin-bottom: 0.25em;
}
#smr-pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    max-width: 900px;
    margin: 1.75rem auto 0;
    background: rgba(46,158,80,0.1);
    border: 1px solid rgba(46,158,80,0.3);
    border-left: 4px solid #2e9e50;
    border-radius: 8px;
    padding: 1rem 1.25rem;
}
#smr-pricing-note > i {
    color: #2e9e50;
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
#smr-pricing-note p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: rgba(200,240,210,0.88);
    line-height: 1.6;
    margin: 0;
}
#smr-pricing-note p strong { color: #fff; }
@media (max-width: 640px) {
    #smr-pricing-inner { grid-template-columns: 1fr; }
}

/* ── SERVICE TILE GRID ──────────────────────────────────────── */
#svc-grid {
    background: #f5f7f3;
    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: #0E2606;
    margin-bottom: 1.75rem;
}
.svc-grid-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

/* ── SERVICE TILE CARD ──────────────────────────────────────── */
.svc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    padding: 1rem 0.5rem 0.85rem;
    background: #fff;
    border: 2px solid #dde5d6;
    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: #1d5a0f;
    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); color: #D74100; }
.svc-card.active {
    background: #0E2606;
    border-color: #0E2606;
    color: #fff;
}
.svc-card.active i { color: #fff; }

/* ── 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: #0E2606;
    color: #fff;
    padding: 1rem 5%;
    margin: 0 -5%;
}
.svc-title-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}
.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;
}
.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: text + photos */
.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: #0E2606; }
.svc-text ul, .svc-text ol { margin-top: 0.5em; }

/* CTA button inside panel */
.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 */
.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;
        text-align: center;
        line-height: 1;
        padding: 2rem 5%;
    }
}
@media (max-width: 600px) {
    .svc-card { width: calc(33.33% - 10px); }
    .svc-photos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
    .svc-card { width: calc(50% - 8px); }
}
