/* ═══════════════════════════════════════════════════════════════════
   LOCATION SERVICE PAGE — page-location-service.php
   TruGuard color scheme: --brand-yellow #F5C800 | --brand-dark #111
   Add this to your theme's assets/css/main.css
═══════════════════════════════════════════════════════════════════ */

/* ── Shared layout helpers ─────────────────────────────────────── */
.lsp-container       { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.lsp-text-center     { text-align: center; }
.lsp-mt-4            { margin-top: 20px; }

.lsp-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
    line-height: 1.1;
}

/* ── Button system ─────────────────────────────────────────────── */
.lsp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}
.lsp-btn:hover         { opacity: .88; transform: translateY(-1px); }
.lsp-btn--yellow       { background: #F5C800; color: #111; }
.lsp-btn--outline      { background: transparent; color: #fff; border: 2px solid #fff; }
.lsp-btn--outline:hover{ background: rgba(255,255,255,.1); }
.lsp-btn--dark         { background: #111; color: #fff; }
.lsp-btn--outline-dark { background: transparent; color: #111; border: 2px solid #111; }
.lsp-btn--full         { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════════════════════════ */
.lsp-hero {
    position: relative;
    background: #111 url('') center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.lsp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0,0,0,.88) 50%, rgba(0,0,0,.55) 100%);
}
.lsp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
    width: 100%;
}
.lsp-hero-content { color: #fff; }
.lsp-hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.02em;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 16px;
}
.lsp-hero-headline span { color: #F5C800; }
.lsp-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 520px;
}
.lsp-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.lsp-hero-note {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin: 0;
}

/* Hero Form Card */
.lsp-hero-form-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.lsp-form-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.lsp-form-sub {
    font-size: 13px;
    color: #888;
    margin: 0 0 18px;
}
.lsp-fallback-form { display: flex; flex-direction: column; gap: 10px; }
.lsp-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    color: #111;
    background: #fafafa;
    box-sizing: border-box;
    transition: border-color .2s;
}
.lsp-input:focus { outline: none; border-color: #F5C800; background: #fff; }
.lsp-textarea { resize: vertical; min-height: 70px; }
.lsp-form-disclaimer {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    margin: 4px 0 0;
}

/* ══════════════════════════════════════════════════════════════════
   2. INTRO
══════════════════════════════════════════════════════════════════ */
.lsp-intro { padding: 64px 0; background: #fff; }
.lsp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.lsp-intro-text .lsp-section-title { margin-bottom: 16px; }
.lsp-intro-body { font-size: 15px; color: #555; line-height: 1.7; }
.lsp-intro-img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    max-height: 280px;
    display: block;
    margin-bottom: 16px;
}

/* Chat Card */
.lsp-chat-card {
    background: #111;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}
.lsp-chat-card-icon { font-size: 28px; flex-shrink: 0; }
.lsp-chat-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.lsp-chat-card-text strong { color: #F5C800; font-size: 14px; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.lsp-chat-card-text span   { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.4; }

/* ══════════════════════════════════════════════════════════════════
   3. SERVICES CHECKLIST
══════════════════════════════════════════════════════════════════ */
.lsp-services {
    padding: 60px 0;
    background: #f7f7f7;
}
.lsp-services .lsp-section-title { margin-bottom: 32px; }
.lsp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 24px;
}
.lsp-service-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 15px;
    font-family: 'Barlow', sans-serif;
    color: #333;
    font-weight: 700;
    padding: 10px 14px;
    background: #fff;
    border-radius: 4px;
    border-left: 4px solid #F5C800;
}
.lsp-service-bullet { color: #F5C800; font-weight: 900; font-size: 18px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════
   4. GALLERY
══════════════════════════════════════════════════════════════════ */
.lsp-gallery {
    padding: 60px 0;
    background: #fff;
}
.lsp-gallery-wrap { margin-top: 20px; }

/* ══════════════════════════════════════════════════════════════════
   5. WHY CHOOSE US
══════════════════════════════════════════════════════════════════ */
.lsp-wcu {
    padding: 60px 0;
    background: #111;
}
.lsp-wcu .lsp-section-title { color: #fff; margin-bottom: 32px; }
.lsp-wcu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}
.lsp-wcu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-family: 'Barlow', sans-serif;
}
.lsp-wcu-check {
    width: 26px;
    height: 26px;
    background: #F5C800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #111;
}

/* ══════════════════════════════════════════════════════════════════
   6. SERVICE AREAS GRID
══════════════════════════════════════════════════════════════════ */
.lsp-areas {
    padding: 60px 0;
    background: #f7f7f7;
}
.lsp-areas-sub {
    font-size: 14px;
    color: #777;
    margin: -10px 0 28px;
}
.lsp-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.lsp-area-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 4px;
    padding: 12px 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    transition: border-color .2s, background .2s, color .2s;
}
.lsp-area-card:hover { border-color: #F5C800; background: #F5C800; color: #111; }
.lsp-area-card svg   { color: #F5C800; flex-shrink: 0; transition: color .2s; }
.lsp-area-card:hover svg { color: #111; }

/* ══════════════════════════════════════════════════════════════════
   7. FINANCING
══════════════════════════════════════════════════════════════════ */
.lsp-financing {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}
.lsp-fin-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.lsp-fin-bullets li { font-size: 15px; color: #333; }
.lsp-fin-logos {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.lsp-fin-logo { max-height: 110px; width: auto; object-fit: contain; }

/* ══════════════════════════════════════════════════════════════════
   8. REVIEWS
══════════════════════════════════════════════════════════════════ */
.lsp-reviews {
    padding: 60px 0;
    background: #f7f7f7;
}
.lsp-reviews .lsp-section-title { margin-bottom: 28px; }
.lsp-reviews-wrap { max-width: 1100px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════════════
   9. URGENCY CTA
══════════════════════════════════════════════════════════════════ */
.lsp-urgency {
    padding: 64px 20px;
    background: #111;
    text-align: center;
}
.lsp-urgency-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #F5C800;
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin: 0 0 14px;
}
.lsp-urgency-body { font-size: 15px; color: rgba(255,255,255,.75); margin: 0 0 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════════════════════
   10. PROCESS STEPS
══════════════════════════════════════════════════════════════════ */
.lsp-process {
    padding: 60px 0;
    background: #fff;
}
.lsp-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
    counter-reset: process;
}
.lsp-process-step {
    background: #f7f7f7;
    border-radius: 6px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
}
.lsp-process-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #F5C800;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}
.lsp-process-text { font-size: 14px; color: #333; line-height: 1.5; margin: 0; }
.lsp-process-img-wrap { margin-top: 28px; }
.lsp-process-img { width: 100%; border-radius: 6px; object-fit: cover; max-height: 320px; }

/* ══════════════════════════════════════════════════════════════════
   11. FAQ ACCORDION
══════════════════════════════════════════════════════════════════ */
.lsp-faq {
    padding: 60px 0;
    background: #f7f7f7;
}
.lsp-faq-inner { max-width: 820px; margin: 0 auto; }
.lsp-faq-list  { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.lsp-faq-item  { background: #fff; border: 1.5px solid #e8e8e8; border-radius: 5px; overflow: hidden; }
.lsp-faq-item--open { border-color: #F5C800; }
.lsp-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.lsp-faq-q:hover { background: #fffbea; }
.lsp-faq-icon { flex-shrink: 0; transition: transform .25s; }
.lsp-faq-item--open .lsp-faq-icon { transform: rotate(180deg); }
.lsp-faq-a { padding: 0 20px 18px; }
.lsp-faq-a p { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════════════════════════════════
   12. BLOG CTA
══════════════════════════════════════════════════════════════════ */
.lsp-blog-cta { padding: 60px 20px; background: #fff; text-align: center; }
.lsp-blog-body { font-size: 15px; color: #666; margin: 0 0 24px; }

/* ══════════════════════════════════════════════════════════════════
   13. BOTTOM CTA
══════════════════════════════════════════════════════════════════ */
.lsp-bottom-cta { padding: 64px 20px; background: #f7f7f7; text-align: center; }
.lsp-bottom-cta-body { font-size: 15px; color: #555; margin: 0 0 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════════════════════
   14. REPLACEMENT UPSELL
══════════════════════════════════════════════════════════════════ */
.lsp-replace-upsell { padding: 60px 0; background: #fff; }
.lsp-replace-card {
    background: #111;
    border-radius: 8px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.lsp-replace-logo { flex-shrink: 0; }
.lsp-replace-text { flex: 1; min-width: 200px; }
.lsp-replace-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #F5C800;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.lsp-replace-text p { font-size: 14px; color: rgba(255,255,255,.7); margin: 0; }
.lsp-replace-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .lsp-areas-grid { grid-template-columns: repeat(3, 1fr); }
    .lsp-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .lsp-hero-inner         { grid-template-columns: 1fr; gap: 32px; }
    .lsp-intro-grid         { grid-template-columns: 1fr; }
    .lsp-services-grid      { grid-template-columns: 1fr; }
    .lsp-wcu-grid           { grid-template-columns: 1fr; }
    .lsp-areas-grid         { grid-template-columns: repeat(2, 1fr); }
    .lsp-process-grid       { grid-template-columns: 1fr; }
    .lsp-replace-card       { flex-direction: column; text-align: center; }
    .lsp-replace-btns       { justify-content: center; }
    .lsp-hero-btns          { flex-direction: column; }
    .lsp-btn                { width: 100%; justify-content: center; }
    .lsp-chat-card          { flex-direction: column; text-align: center; }
    .lsp-fin-logos          { gap: 16px; }
    .lsp-fin-logo           { max-height: 80px; }
}

@media (max-width: 480px) {
    .lsp-areas-grid { grid-template-columns: 1fr 1fr; }
    .lsp-replace-card { padding: 24px 20px; }
}
