/* =========================================================================
   Location landing page (Template Name: Location Page)
   Self-contained styles for the eko4 location template. Brand accent matches
   the site blue (#1989d3 / #056fae).
   ========================================================================= */

.location-page {
    --loc-blue: #1989d3;
    --loc-blue-dark: #056fae;
    --loc-ink: #1a2733;
    --loc-muted: #5a6b7b;
    --loc-bg-soft: #f4f8fb;
    --loc-border: #e2e9f0;
    color: var(--loc-ink);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.location-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ---- Sections & headings ------------------------------------------------- */
.location-page .loc-section { padding: 56px 0; }
.location-page .loc-section:nth-child(even) { background: var(--loc-bg-soft); }

.location-page .loc-h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--loc-ink);
}
.location-page .loc-section-lead {
    font-size: 17px;
    color: var(--loc-muted);
    margin: 0 0 28px;
    max-width: 820px;
}

/* ---- Buttons / CTA ------------------------------------------------------- */
.location-page .loc-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 4px;
}
.location-page .loc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
    cursor: pointer;
    border: 2px solid transparent;
    /* override the site-wide .header-quote-button rule (display:block; width:100px; uppercase) */
    width: auto;
    text-transform: none;
}
/* .header-quote-button sets color:#FFF !important site-wide — re-assert white on the
   solid-blue primary so the label is visible (the final-CTA white button overrides this below). */
.location-page .loc-btn-primary { color: #fff !important; }
.location-page .loc-btn:hover { transform: translateY(-2px); }
.location-page .loc-btn-primary {
    background: var(--loc-blue);
    color: #fff;
    box-shadow: 0 6px 16px rgba(25,137,211,.32);
}
.location-page .loc-btn-primary:hover { background: var(--loc-blue-dark); color: #fff; }
.location-page .loc-btn-secondary {
    background: #fff;
    color: var(--loc-blue-dark);
    border-color: var(--loc-blue);
}
.location-page .loc-btn-secondary:hover { background: var(--loc-blue); color: #fff; }
.location-page .loc-btn-ghost {
    background: transparent;
    color: var(--loc-ink);
    border-color: var(--loc-border);
}
.location-page .loc-btn-ghost:hover { border-color: var(--loc-blue); color: var(--loc-blue-dark); }

/* ---- Hero ---------------------------------------------------------------- */
.location-page .loc-hero {
    background: linear-gradient(135deg, #eaf4fb 0%, #f7fbfe 60%, #ffffff 100%);
    padding: 60px 0;
}
.location-page .loc-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 44px;
    align-items: center;
}
.location-page .loc-hero-title {
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--loc-ink);
}
.location-page .loc-hero-lead {
    font-size: 19px;
    color: var(--loc-muted);
    margin: 0 0 8px;
}
.location-page .loc-hero-points {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 13px 32px;
}
.location-page .loc-hero-points li {
    font-weight: 700;
    font-size: 17px;
    color: var(--loc-ink);
    display: flex;
    align-items: center;
}
.location-page .loc-hero-points .fa { color: var(--loc-blue); margin-right: 9px; font-size: 19px; }

/* ---- Photos / placeholders ---------------------------------------------- */
.location-page .loc-photo {
    width: 100%;
    border-radius: 14px;
    display: block;
    object-fit: cover;
    box-shadow: 0 14px 40px rgba(13,71,110,.16);
}
.location-page .loc-hero-photo { aspect-ratio: 4 / 3; }
.location-page .loc-about-photo { aspect-ratio: 4 / 3; }
.location-page .loc-photo-placeholder {
    background: repeating-linear-gradient(45deg, #eef4f9, #eef4f9 12px, #e4edf4 12px, #e4edf4 24px);
    border: 1px dashed #b9cad9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    color: #7d93a6;
    font-size: 14px;
    text-align: center;
    padding: 16px;
    box-shadow: none;
}

/* ---- Cards (why-us, services, services-for) ----------------------------- */
.location-page .loc-cards { display: grid; gap: 22px; }
.location-page .loc-cards-3 { grid-template-columns: repeat(3, 1fr); }
.location-page .loc-cards-4 { grid-template-columns: repeat(4, 1fr); }
.location-page .loc-card {
    background: #fff;
    border: 1px solid var(--loc-border);
    border-radius: 12px;
    padding: 26px 24px;
    transition: transform .14s ease, box-shadow .14s ease;
}
.location-page .loc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13,71,110,.12);
}
.location-page .loc-card-icon {
    font-size: 30px;
    color: var(--loc-blue);
    margin-bottom: 14px;
    display: inline-block;
}
.location-page .loc-card-title { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.location-page .loc-card-desc { font-size: 15px; color: var(--loc-muted); margin: 0; line-height: 1.55; }

/* ---- About --------------------------------------------------------------- */
.location-page .loc-about-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 40px;
    align-items: start;
}
.location-page .loc-about-text p { font-size: 16px; line-height: 1.7; color: #3c4a57; margin: 0 0 16px; }
.location-page .loc-localctx-text { max-width: 900px; }

/* ---- Industries ---------------------------------------------------------- */
.location-page .loc-industry-list {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px;
}
.location-page .loc-industry-list li {
    font-size: 16px; color: #36454f; padding: 10px 0;
    border-bottom: 1px solid var(--loc-border);
}
.location-page .loc-industry-list .fa { color: var(--loc-blue); margin-right: 10px; }

/* ---- Popular documents (chips) ------------------------------------------ */
.location-page .loc-doc-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.location-page .loc-doc-chip {
    background: #fff;
    border: 1px solid var(--loc-border);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--loc-ink);
}
.location-page .loc-doc-chip .fa { color: var(--loc-blue); margin-right: 8px; }

/* ---- What the price includes (checklist) -------------------------------- */
.location-page .loc-includes-list {
    list-style: none; margin: 4px 0 0; padding: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px;
}
.location-page .loc-includes-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 16px; font-weight: 600; color: #26323d; line-height: 1.45;
}
.location-page .loc-includes-check {
    flex: 0 0 auto; width: 24px; height: 24px; border-radius: 6px;
    background: #23a455; color: #fff; display: inline-flex;
    align-items: center; justify-content: center; font-size: 13px; margin-top: 1px;
}

/* ---- How it works (steps) ----------------------------------------------- */
.location-page .loc-steps {
    list-style: none; margin: 0 0 8px; padding: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px;
    counter-reset: loc-step;
}
.location-page .loc-step { display: flex; gap: 16px; align-items: flex-start; }
.location-page .loc-step-num {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--loc-blue);
    color: #fff;
    font-weight: 700; font-size: 17px;
    display: flex; align-items: center; justify-content: center;
}
.location-page .loc-step-body { display: flex; flex-direction: column; }
.location-page .loc-step-title { font-size: 16px; }
.location-page .loc-step-desc { font-size: 14px; color: var(--loc-muted); margin-top: 3px; }

/* ---- Neighborhoods ------------------------------------------------------- */
.location-page .loc-hood-list {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 20px;
}
.location-page .loc-hood-list li { font-size: 15px; color: #36454f; padding: 6px 0; }
.location-page .loc-hood-list .fa { color: var(--loc-blue); margin-right: 8px; }
.location-page .loc-hood-note { margin-top: 22px; font-size: 15px; color: var(--loc-muted); font-style: italic; }

/* ---- Pick-up office ------------------------------------------------------ */
.location-page .loc-office-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.location-page .loc-office-map-img {
    width: 100%; border-radius: 12px; min-height: 280px; object-fit: cover;
    border: 1px solid var(--loc-border);
}
.location-page .loc-pickup-badge {
    display: inline-block;
    background: #fff4e5; color: #9a5b00;
    border: 1px solid #ffd699;
    border-radius: 8px; padding: 8px 14px;
    font-size: 13px; font-weight: 600; margin-bottom: 14px;
}
.location-page .loc-pickup-badge .fa { margin-right: 6px; }
.location-page .loc-office-name { font-size: 21px; font-weight: 700; margin: 0 0 10px; }
.location-page .loc-office-address,
.location-page .loc-office-hours,
.location-page .loc-office-phone { font-size: 16px; color: #36454f; margin: 0 0 10px; line-height: 1.5; }
.location-page .loc-office-address .fa,
.location-page .loc-office-hours .fa,
.location-page .loc-office-phone .fa { color: var(--loc-blue); margin-right: 8px; }
.location-page .loc-office-phone a { color: var(--loc-blue-dark); text-decoration: none; }
.location-page .loc-office-phone a:hover { text-decoration: underline; }
.location-page .loc-btn-directions { margin: 8px 0 16px; }
.location-page .loc-office-note { font-size: 14px; color: var(--loc-muted); margin: 0; }

/* ---- FAQ ----------------------------------------------------------------- */
.location-page .loc-faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.location-page .loc-faq-card {
    display: block;
    background: #fff;
    border: 1px solid var(--loc-border);
    border-radius: 12px;
    padding: 26px 24px;
    text-decoration: none;
    color: inherit;
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.location-page .loc-faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13,71,110,.12);
    border-color: var(--loc-blue);
}
.location-page .loc-faq-icon { font-size: 26px; color: var(--loc-blue); margin-bottom: 12px; display: inline-block; }
.location-page .loc-faq-q { font-size: 17px; font-weight: 700; margin: 0 0 10px; color: var(--loc-ink); }
.location-page .loc-faq-a { font-size: 14px; color: var(--loc-muted); margin: 0 0 14px; line-height: 1.55; }
.location-page .loc-faq-a p { margin: 0 0 10px; }
.location-page .loc-faq-a p:last-child { margin-bottom: 0; }
.location-page .loc-faq-more { display: inline-block; margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--loc-blue-dark); text-decoration: none; }
.location-page .loc-faq-more .fa { margin-left: 4px; }

/* ---- Final CTA ----------------------------------------------------------- */
/* .loc-section.loc-final-cta: higher specificity than the .loc-section:nth-child(even)
   stripe rule, so the blue gradient always wins regardless of the section's position. */
.location-page .loc-section.loc-final-cta {
    background: linear-gradient(135deg, var(--loc-blue-dark) 0%, var(--loc-blue) 100%);
    text-align: center;
}
.location-page .loc-final-title { color: #fff; font-size: 30px; font-weight: 800; margin: 0 0 10px; }
.location-page .loc-final-lead { color: #eaf5fd; font-size: 17px; max-width: 720px; margin: 0 auto 8px; }
.location-page .loc-final-cta .loc-cta-row { justify-content: center; }
.location-page .loc-final-cta .loc-btn-primary { background: #fff; color: var(--loc-blue-dark) !important; box-shadow: 0 6px 16px rgba(0,0,0,.18); }
.location-page .loc-final-cta .loc-btn-primary:hover { background: #eaf5fd; color: var(--loc-blue-dark) !important; }
.location-page .loc-final-cta .loc-btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.location-page .loc-final-cta .loc-btn-secondary:hover { background: rgba(255,255,255,.14); color: #fff; }
.location-page .loc-final-cta .loc-btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.location-page .loc-final-cta .loc-btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .location-page .loc-cards-4 { grid-template-columns: repeat(2, 1fr); }
    .location-page .loc-cards-3 { grid-template-columns: repeat(2, 1fr); }
    .location-page .loc-hood-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .location-page .loc-hero-inner,
    .location-page .loc-about-grid,
    .location-page .loc-office-grid { grid-template-columns: 1fr; }
    .location-page .loc-hero-title { font-size: 32px; }
    .location-page .loc-h2 { font-size: 25px; }
    .location-page .loc-steps,
    .location-page .loc-industry-list { grid-template-columns: 1fr; }
    .location-page .loc-faq-grid { grid-template-columns: 1fr; }
    .location-page .loc-hood-list { grid-template-columns: repeat(2, 1fr); }
    .location-page .loc-hero-media { order: -1; }
}
@media (max-width: 480px) {
    .location-page .loc-cards-4,
    .location-page .loc-cards-3 { grid-template-columns: 1fr; }
    .location-page .loc-btn { width: 100%; justify-content: center; }
}
