/*
 * frontend-style.css — Lukin Location Blocks v1.2
 * Hero: full-bleed bg-image + long left-to-right gradient overlay.
 * No Bootstrap dependency anywhere.
 */

/* ═══════════════════════════════════════════════════════════════
   LOCATION HERO
   ═══════════════════════════════════════════════════════════════ */

.lukin-location-hero {
    position: relative;
    background-size: 110%; /* slightly zoomed for richness */
    background-position: center 40%;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Long gradient overlay: fully opaque dark blue left → transparent right */
.lukin-location-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(14, 38, 72, 0.97)  0%,
        rgba(18, 46, 84, 0.95) 20%,
        rgba(22, 54, 96, 0.88) 35%,
        rgba(26, 62, 108, 0.70) 48%,
        rgba(30, 74, 123, 0.38) 62%,
        rgba(30, 74, 123, 0.10) 75%,
        transparent             88%
    );
    pointer-events: none;
}

/* Content column — sits above the overlay */
.lhero-content-col {
    position: relative;
    z-index: 1;
    /* align to page content width on left */
    padding-top: 64px;
    padding-bottom: 64px;
    padding-right: 60px;
    padding-left: max(32px, calc((100vw - 1200px) / 2));
    width: 62%;
    box-sizing: border-box;
}

.lhero-content-inner {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0; /* controlled per-element below */
}

/* Eyebrow */
.lhero-eyebrow {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin: 0 0 0.75rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
}

/* H1 */
.lhero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

/* Copy */
.lhero-copy {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0 0 1.25rem;
    max-width: 480px;
}

/* Google rating */
.lhero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 6px;
    width: fit-content;
}
.lhero-stars {
    color: #FBBC04; /* Google yellow */
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height: 1;
}
.lhero-rating-text {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
}
.lhero-rating-text strong {
    color: #fff;
    font-weight: 700;
}

/* CTA buttons row */
.lhero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.25rem;
}
.lhero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
    line-height: 1;
}
.lhero-btn--primary {
    background: #fff;
    color: #1e4a7b;
    box-shadow: 0 4px 14px rgba(0,0,0,0.22);
}
.lhero-btn--primary:hover,
.lhero-btn--primary:focus {
    background: #f0f5ff;
    color: #1e4a7b;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.28);
}
.lhero-btn--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.65);
}
.lhero-btn--secondary:hover,
.lhero-btn--secondary:focus {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Same-week line */
.lhero-sameweek {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin: 0 0 1.5rem;
}

/* Bottom meta: address + insurance */
.lhero-meta {
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.lhero-address-line {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin: 0;
}
.lhero-address-line svg { flex-shrink: 0; }
.lhero-insurance-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 1.05rem;
}
.lhero-ins-label {
    color: rgba(255,255,255,0.6);
}
.lhero-ins-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 2px 10px;
    border-radius: 3px;
    letter-spacing: 0.03em;
}
.lhero-ins-oon {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 767px) {
    .lukin-location-hero {
        min-height: auto;
        background-size: cover;
    }
    .lukin-location-hero::before {
        background: linear-gradient(
            to bottom,
            rgba(14, 38, 72, 0.92) 0%,
            rgba(14, 38, 72, 0.85) 70%,
            rgba(14, 38, 72, 0.60) 100%
        );
    }
    .lhero-content-col {
        width: 100%;
        padding: 48px 20px 56px;
    }
    .lhero-title { font-size: 1.9rem; }
    .lhero-copy { font-size: 1rem; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .lhero-content-col {
        width: 72%;
        padding-left: 32px;
        padding-right: 40px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   GRID / LAYOUT OVERRIDES
   Bootstrap is not loaded globally on this theme.
   ═══════════════════════════════════════════════════════════════ */

.lukin-clinicians-section .container,
.lukin-how-it-works .container,
.lukin-faq-section .container,
.lukin-location-cta .container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
    box-sizing: border-box;
}

.lukin-clinicians-section .row {
    display: flex !important;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}
.lukin-clinicians-section .row > div {
    padding-right: 12px;
    padding-left: 12px;
    box-sizing: border-box;
    margin-bottom: 24px;
    flex: 0 0 50%;
    max-width: 50%;
}
@media (min-width: 768px) {
    .lukin-clinicians-section .row > div {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
@media (min-width: 992px) {
    .lukin-clinicians-section .row > div {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.lukin-location-cta .cta-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}
.lukin-location-cta .cta-left { flex: 1 1 280px; min-width: 240px; }
.lukin-location-cta .cta-right { flex: 2 1 380px; min-width: 300px; }
.lukin-location-cta .cta-intro { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.lukin-location-cta .cta-divider {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.6); font-size: 1rem; margin-top: 1.25rem;
}
.lukin-location-cta .cta-divider::before,
.lukin-location-cta .cta-divider::after {
    content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.25);
}
.lukin-location-cta .cta-phone-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: #1e4a7b; font-size: 1.1rem; font-weight: 700;
    padding: 13px 24px; border-radius: 6px; text-decoration: none;
    transition: background 0.2s; white-space: nowrap;
}
.lukin-location-cta .cta-phone-btn:hover { background: #f0f5ff; color: #1e4a7b; text-decoration: none; }
.lukin-location-cta .cta-hours { color: rgba(255,255,255,0.7); font-size: 1rem; margin: 0.6rem 0 0; }


/* ═══════════════════════════════════════════════════════════════
   CLINICIANS GRID
   ═══════════════════════════════════════════════════════════════ */
.lukin-clinicians-section { padding: 64px 0; background: #f7f9fc; }
.lukin-clinicians-section h2 { margin-bottom: 2.5rem; font-size: clamp(1.4rem, 2.5vw, 2rem); color: #1e4a7b; }
.clinician-card {
    background: #fff; border-radius: 10px; border: 1px solid #dde7f2;
    overflow: hidden; height: 100%; transition: transform 0.2s, box-shadow 0.2s;
}
.clinician-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(30,74,123,0.12); }
.clinician-card__link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.clinician-card__link:hover { text-decoration: none; }
.clinician-photo-wrap { width: 100%; overflow: hidden; background: #eef2f8; }
.clinician-photo-wrap img, .clinician-photo-img {
    width: 100% !important; height: auto !important; display: block;
    max-height: 260px; object-fit: cover; object-position: center top;
}
.clinician-photo-placeholder { width: 100%; padding-top: 100%; background: linear-gradient(135deg, #d0dcea, #c0d0e0); }
.clinician-info { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.clinician-name { display: block; font-size: 1rem; font-weight: 700; color: #1e4a7b; line-height: 1.3; }
.clinician-title { display: block; font-size: 1rem; color: #337AAF; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.clinician-specs { list-style: none; margin: 0.2rem 0 0; padding: 0; }
.clinician-specs li { font-size: 1rem; color: #555; padding: 1px 0; }
.clinician-specs li::before { content: "•  "; color: #337AAF; }
.clinician-cta-link { display: inline-block; font-size: 1rem; font-weight: 700; color: #337AAF; margin-top: auto; padding-top: 0.5rem; }
.clinician-card:hover .clinician-cta-link { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.lukin-how-it-works { padding: 64px 0; background: #1e4a7b; }
.lukin-how-it-works h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: #fff; font-weight: 700; text-align: center; margin-bottom: 3rem; }
.steps-grid { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.step-item {
    background: #fff; border-radius: 10px; padding: 2rem 1.5rem;
    box-shadow: 0 2px 10px rgba(30,74,123,0.07); flex: 1 1 260px; max-width: 320px; text-align: center;
}
.step-number {
    width: 52px; height: 52px; background: #337AAF; color: #fff; border-radius: 50%;
    font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.step-title { font-size: 1.1rem; font-weight: 700; color: #1e4a7b; margin-bottom: 0.6rem; }
.step-desc { font-size: 1rem; color: #555; line-height: 1.65; margin: 0; }
.lukin-how-it-works .hiw-cta { margin-top: 2rem; text-align: center; }
.lukin-hiw-btn {
    display: inline-flex; align-items: center; gap: 8px; background: #337AAF; color: #fff;
    font-weight: 700; font-size: 1.05rem; padding: 13px 28px; border-radius: 6px;
    text-decoration: none; transition: background 0.2s;
}
.lukin-hiw-btn:hover { background: #1e4a7b; color: #fff; text-decoration: none; }


/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.lukin-faq-section { padding: 64px 0; }
.lukin-faq-section h2 { text-align: center; font-size: clamp(1.4rem, 2.5vw, 2rem); color: #1e4a7b; font-weight: 700; margin-bottom: 3rem; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #dde7f2; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; padding: 18px 0;
    font-size: 1rem; font-weight: 600; color: #1e4a7b; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px; line-height: 1.4;
}
.faq-question:hover { color: #337AAF; }
.faq-icon { font-size: 1.5rem; font-weight: 300; flex-shrink: 0; transition: transform 0.2s; color: #337AAF; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1rem 1.25rem 0; font-size: 1rem; line-height: 1.7; color: #444; }
.faq-answer.is-open { display: block; }


/* ═══════════════════════════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════════════════════════ */
.lukin-location-cta { padding: 64px 0; background: #1e4a7b; color: #fff; }
.lukin-location-cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.lukin-location-cta .gform_wrapper input[type=text],
.lukin-location-cta .gform_wrapper input[type=email],
.lukin-location-cta .gform_wrapper input[type=tel],
.lukin-location-cta .gform_wrapper textarea,
.lukin-location-cta .gform_wrapper select { background: rgba(255,255,255,0.12) !important; border-color: rgba(255,255,255,0.3) !important; color: #fff !important; }
.lukin-location-cta .gform_wrapper label { color: #fff !important; }
.lukin-location-cta .gform_wrapper .gfield_label { color: rgba(255,255,255,0.9) !important; }


/* ═══════════════════════════════════════════════════════════════
   OFFICE INFO — full-bleed 50/50 map + dark panel
   ═══════════════════════════════════════════════════════════════ */

.lukin-office-section {
    width: 100%;
    overflow: hidden;
}

.lukin-office-inner {
    display: flex;
    min-height: 540px;
}

/* ── Map side ──────────────────────────────────────────────────── */
.lukin-office-map {
    flex: 0 0 52%;
    position: relative;
    background: #dde7f2;
    overflow: hidden;
}

.lukin-office-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.lukin-office-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-size: 1rem;
}

/* ── Info panel ────────────────────────────────────────────────── */
.lukin-office-panel {
    flex: 1;
    background: #1e4a7b;
    color: #fff;
    display: flex;
    align-items: center;
}

.lukin-office-panel-inner {
    padding: 52px 52px 52px 56px;
    width: 100%;
    max-width: 520px;
}

/* Eyebrow */
.lukin-office-eyebrow {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 0 0 0.5rem;
}

/* Heading */
.lukin-office-heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.15;
}

/* Address */
.lukin-office-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-style: normal;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin: 0 0 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    line-height: 1.4;
}

.lukin-office-address svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Transport items list */
.lukin-office-items {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lukin-office-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

/* Icon pill */
.lukin-office-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
}

.lukin-office-item-body strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.lukin-office-item-body p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin: 0;
}

.lukin-office-item-body a {
    color: rgba(255,255,255,0.85);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.lukin-office-item-body a:hover {
    color: #fff;
}

/* Get Directions button */
.lukin-office-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1e4a7b;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.lukin-office-directions-btn:hover,
.lukin-office-directions-btn:focus {
    background: #f0f5ff;
    color: #1e4a7b;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .lukin-office-inner {
        flex-direction: column;
    }
    .lukin-office-map {
        flex: none;
        height: 280px;
        position: relative;
    }
    .lukin-office-panel {
        flex: none;
    }
    .lukin-office-panel-inner {
        padding: 36px 20px 40px;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .lukin-office-map { flex: 0 0 48%; }
    .lukin-office-panel-inner { padding: 40px 32px; }
}

/* ═══════════════════════════════════════════════════════════════
   INSURANCE BANNER — scrolling marquee
   ═══════════════════════════════════════════════════════════════ */

.lukin-ins-banner {
    background: #fff;
    border-top: 1px solid #eaeef4;
    border-bottom: 1px solid #eaeef4;
    padding: 48px 0 44px;
    overflow: hidden;
}

.lukin-ins-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Eyebrow label */
.lukin-ins-eyebrow {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 1rem;
    text-align: center;
}

/* Trust pills row */
.lukin-ins-pills {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lukin-ins-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 500;
    color: #4a6180;
    background: #f0f5ff;
    border: 1px solid #dde7f2;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.lukin-ins-pill-icon {
    color: #337AAF;
    font-weight: 700;
}

/* ── Marquee track ─────────────────────────────────────────────── */

/* Fade edges */
.lukin-ins-marquee-wrap {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );
    margin-bottom: 1.75rem;
}

@keyframes lukin-ins-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.lukin-ins-track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    width: max-content;
    align-items: center;
    animation: lukin-ins-scroll 28s linear infinite;
}

.lukin-ins-track:hover {
    animation-play-state: paused;
}

/* Individual logo items */
.lukin-ins-logo {
    padding: 0 56px;
    white-space: nowrap;
    color: #b0bec5;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    transition: color 0.25s;
    cursor: default;
    user-select: none;
}

.lukin-ins-track:hover .lukin-ins-logo {
    color: #90a4ae;
}

/* Per-brand typographic styling */
.ins-aetna {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.ins-bcbs {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ins-cigna {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: lowercase;
}

.ins-oxford {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.04em;
}

.ins-united {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.ins-optum {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: lowercase;
}

/* Separator dots between logos */
.lukin-ins-logo + .lukin-ins-logo::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #dde7f2;
    font-size: 1.2rem;
}

/* ── CTA link ──────────────────────────────────────────────────── */
.lukin-ins-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #337AAF;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s, gap 0.2s;
}

.lukin-ins-cta:hover,
.lukin-ins-cta:focus {
    color: #1e4a7b;
    text-decoration: underline;
    gap: 10px;
}

/* ── Mobile ────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .lukin-ins-banner { padding: 36px 0 32px; }
    .lukin-ins-pills { gap: 8px; }
    .lukin-ins-pill { font-size: 1rem; padding: 5px 12px; }
    .lukin-ins-logo { padding: 0 36px; font-size: 1.2rem; }
    .ins-aetna  { font-size: 1.3rem; }
    .ins-cigna  { font-size: 1.2rem; }
    .ins-oxford { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES GRID — 5-across cards
   ═══════════════════════════════════════════════════════════════ */

.lukin-services-section {
    padding: 72px 0;
    background: #f7f9fc;
}

.lukin-services-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lukin-services-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.lukin-services-heading {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #1e4a7b;
    margin: 0 0 1rem;
    line-height: 1.15;
}

.lukin-services-intro {
    font-size: 1.1rem;
    color: #5a7394;
    line-height: 1.65;
    margin: 0;
}

/* ── 5-column card grid ─────────────────────────────────────── */
.lukin-services-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

/* Individual card */
.lukin-service-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #dde7f2;
    padding: 1.75rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
}

.lukin-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #337AAF;
    border-radius: 10px 10px 0 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.lukin-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(30, 74, 123, 0.12);
    border-color: #c5d8ec;
}

.lukin-service-card:hover::before {
    opacity: 1;
}

/* Icon circle */
.lukin-service-card-icon {
    width: 44px;
    height: 44px;
    background: #eef4fb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #337AAF;
    flex-shrink: 0;
    margin-bottom: 0.25rem;
}

/* Title */
.lukin-service-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e4a7b;
    margin: 0;
    line-height: 1.3;
}

/* Body text */
.lukin-service-card-body {
    font-size: 1rem;
    color: #5a7394;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* CTA link */
.lukin-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: 700;
    color: #337AAF;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s, color 0.2s;
}

.lukin-service-card-link:hover,
.lukin-service-card-link:focus {
    color: #1e4a7b;
    text-decoration: none;
    gap: 8px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .lukin-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .lukin-services-section { padding: 48px 0; }
    .lukin-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .lukin-service-card { padding: 1.4rem 1.1rem 1.25rem; }
}

@media (max-width: 400px) {
    .lukin-services-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   TEXT SIZE BUMP — services grid + office panel
   Ensures comfortable reading beyond WCAG 16px minimum
   ═══════════════════════════════════════════════════════════════ */

/* Services section */
.lukin-services-intro                { font-size: 18px; }
.lukin-service-card-title            { font-size: 17px; }
.lukin-service-card-body             { font-size: 16px; line-height: 1.65; }
.lukin-service-card-link             { font-size: 16px; }

/* Give cards a bit more breathing room at 5-across */
.lukin-service-card                  { padding: 1.85rem 1.5rem 1.6rem; gap: 0.85rem; }

/* Office info panel */
.lukin-office-eyebrow                { font-size: 16px; }
.lukin-office-heading                { font-size: clamp(22px, 2.5vw, 32px); }
.lukin-office-address                { font-size: 17px; }
.lukin-office-item-body strong       { font-size: 17px; }
.lukin-office-item-body p            { font-size: 16px; line-height: 1.6; }
.lukin-office-directions-btn         { font-size: 17px; padding: 13px 24px; }

/* Insurance banner */
.lukin-ins-eyebrow                   { font-size: 16px; }
.lukin-ins-pill                      { font-size: 16px; }
.lukin-ins-logo                      { font-size: 18px; }
.lukin-ins-cta                       { font-size: 17px; }

/* Fix: arrow slides via transform, gap stays fixed — no text reflow on hover */
.lukin-service-card-link {
    gap: 6px !important;
    align-items: center;
}

.lukin-service-card-link svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.lukin-service-card-link:hover svg,
.lukin-service-card-link:focus svg {
    transform: translateX(4px);
}

.lukin-service-card-link:hover,
.lukin-service-card-link:focus {
    gap: 6px !important;
}

/* ═══════════════════════════════════════════════════════════════
   TREATMENT MODALITIES — Reconnect-style split panel
   ═══════════════════════════════════════════════════════════════ */

.lukin-treatments-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eaeef4;
}

.lukin-treatments-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* ── Left panel ──────────────────────────────────────────────── */
.lukin-treatments-left {
    flex: 0 0 340px;
    position: sticky;
    top: 80px; /* sticks while right panel scrolls */
}

.lukin-treatments-eyebrow {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #337AAF;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lukin-treatments-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #337AAF;
    flex-shrink: 0;
}

.lukin-treatments-heading {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    color: #1e4a7b;
    line-height: 1.15;
    margin: 0 0 1.25rem;
}

.lukin-treatments-heading em {
    font-style: normal;
    color: #337AAF;
    display: block;
}

.lukin-treatments-intro {
    font-size: 17px;
    color: #5a7394;
    line-height: 1.65;
    margin: 0 0 2rem;
}

.lukin-treatments-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #1e4a7b;
    border: 2px solid #1e4a7b;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.lukin-treatments-cta svg {
    transition: transform 0.2s;
}

.lukin-treatments-cta:hover,
.lukin-treatments-cta:focus {
    background: #1e4a7b;
    color: #fff;
    text-decoration: none;
}

.lukin-treatments-cta:hover svg,
.lukin-treatments-cta:focus svg {
    transform: translateX(4px);
}

/* ── Right panel ─────────────────────────────────────────────── */
.lukin-treatments-right {
    flex: 1;
    min-width: 0;
}

.lukin-treatments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each row */
.lukin-treatment-row {
    border-top: 1px solid #dde7f2;
}

.lukin-treatment-row:last-child {
    border-bottom: 1px solid #dde7f2;
}

.lukin-treatment-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 1rem 1.4rem 1.25rem;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background 0.2s, border-color 0.2s, padding-left 0.2s;
    border-radius: 0 4px 4px 0;
}

.lukin-treatment-link:hover,
.lukin-treatment-link:focus {
    background: #f0f5ff;
    border-left-color: #337AAF;
    padding-left: 1.6rem;
    text-decoration: none;
}

.lukin-treatment-text {
    flex: 1;
    min-width: 0;
}

.lukin-treatment-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1e4a7b;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    transition: color 0.2s;
}

.lukin-treatment-link:hover .lukin-treatment-name {
    color: #337AAF;
}

.lukin-treatment-desc {
    font-size: 16px;
    color: #6b87a0;
    line-height: 1.55;
    margin: 0;
}

/* Arrow icon */
.lukin-treatment-arrow {
    flex-shrink: 0;
    color: #c5d8ec;
    display: flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
}

.lukin-treatment-link:hover .lukin-treatment-arrow {
    color: #337AAF;
    transform: translateX(4px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .lukin-treatments-inner {
        flex-direction: column;
        gap: 40px;
    }
    .lukin-treatments-left {
        flex: none;
        position: static;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .lukin-treatments-section { padding: 56px 0; }
    .lukin-treatment-name { font-size: 17px; }
    .lukin-treatment-desc { font-size: 16px; }
}

/* ── Clinicians section: bigger H2 + larger card text ─────────── */
.lukin-clinicians-section h2,
.lukin-clinicians-heading {
    font-size: clamp(24px, 3vw, 36px) !important;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.lukin-clinicians-intro {
    font-size: 17px;
    color: #5a7394;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.clinician-name     { font-size: 17px !important; }
.clinician-title    { font-size: 15px !important; }
.clinician-specs li { font-size: 15px !important; }
.clinician-cta-link { font-size: 16px !important; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — redesigned: steps with connectors, CTA in step 1
   ═══════════════════════════════════════════════════════════════ */

.lukin-how-it-works {
    padding: 72px 0;
    background: #1e4a7b;
}

.lukin-hiw-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.lukin-hiw-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lukin-hiw-heading {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}

.lukin-hiw-subtitle {
    font-size: 17px;
    color: #c5d8ec;
    margin: 0;
}

/* Steps row with arrows between */
.lukin-steps-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

/* Arrow connector */
.lukin-step-arrow {
    flex-shrink: 0;
    color: #c5d8ec;
    padding: 0 8px;
    margin-top: 36px; /* align with step number circles */
    display: flex;
    align-items: center;
}

/* Individual step */
.lukin-step {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dde7f2;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: box-shadow 0.2s;
}

.lukin-step:hover {
    box-shadow: 0 6px 24px rgba(30,74,123,0.1);
}

/* Number circle */
.lukin-step-number {
    width: 48px;
    height: 48px;
    background: #337AAF;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0.25rem;
}

/* Step 1 gets slightly deeper colour to signal "start here" */
.lukin-step:first-child .lukin-step-number {
    background: #1e4a7b;
}

.lukin-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e4a7b;
    margin: 0;
    line-height: 1.3;
}

.lukin-step-desc {
    font-size: 16px;
    color: #5a7394;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* CTA button — only in step 1 */
.lukin-step-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0.5rem;
    background: #1e4a7b;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.lukin-step-cta:hover,
.lukin-step-cta:focus {
    background: #337AAF;
    color: #fff;
    text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .lukin-steps-row {
        flex-direction: column;
        gap: 0;
    }
    .lukin-step-arrow {
        margin: 0 auto;
        padding: 6px 0;
        transform: rotate(90deg);
    }
    .lukin-step {
        width: 100%;
    }
    .lukin-step-cta {
        white-space: normal;
    }
}

/* ── How It Works — two CTA buttons in step 1 ───────────────── */
.lukin-step-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0.5rem;
    width: 100%;
}

.lukin-step-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1;
}

.lukin-step-btn--primary {
    background: #fff;
    color: #1e4a7b;
    border: 2px solid #fff;
}

.lukin-step-btn--primary:hover,
.lukin-step-btn--primary:focus {
    background: #c5d8ec;
    border-color: #c5d8ec;
    color: #1e4a7b;
    text-decoration: none;
}

.lukin-step-btn--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.lukin-step-btn--secondary:hover,
.lukin-step-btn--secondary:focus {
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 480px) {
    .lukin-step-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════════════════════
   FAQ OVERRIDES (v1.3)
   ═══════════════════════════════════════════════════════════════ */
.lukin-faq-section .container,
.lukin-faq-section .faq-accordion {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    min-font-size: 18px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
    background: #f0f5ff;
    color: #1e4a7b;
}

.faq-icon {
    color: #337AAF;
}
/* ── Areas We Serve — NJ map watermark + directions ─────────── */
.lukin-areas-section {
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
    background: #fff;
    max-width: 100%;
}

.lukin-areas-map-bg {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.lukin-nj-outline {
    width: 100%;
    height: auto;
}

.lukin-areas-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.lukin-areas-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #337AAF;
    margin: 0 0 0.75rem;
}

.lukin-areas-heading {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: #1e4a7b;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.lukin-areas-body {
    font-size: 17px;
    color: #3d5a73;
    line-height: 1.75;
    margin: 0 0 1.25rem;
}

.lukin-areas-credentials {
    font-size: 15px;
    color: #5a7394;
    font-style: italic;
    margin: 0 0 2rem;
    line-height: 1.6;
}

.lukin-areas-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1e4a7b;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.lukin-areas-directions-btn:hover,
.lukin-areas-directions-btn:focus {
    background: #337AAF;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .lukin-areas-map-bg {
        width: 220px;
        right: -20px;
        opacity: 0.05;
    }
}

/* ── How It Works — equal height cards ──────────────────────── */
.lukin-steps-row {
    align-items: stretch !important;
}
.lukin-step {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.lukin-step-desc {
    flex: 1;
}
.lukin-step-btns {
    margin-top: auto;
    padding-top: 1rem;
}

/* ── How It Works — equal height cards FORCE FIX ────────────── */
.lukin-steps-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}
.lukin-step {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}
.lukin-step-desc {
    flex: 1 1 auto !important;
}
.lukin-step-btns {
    flex-shrink: 0 !important;
    margin-top: auto !important;
}

/* ── How It Works — fix Text Us button (inside white card) ───── */
.lukin-step-btn--secondary {
    background: transparent !important;
    color: #1e4a7b !important;
    border: 2px solid #1e4a7b !important;
}
.lukin-step-btn--secondary:hover,
.lukin-step-btn--secondary:focus {
    background: #1e4a7b !important;
    color: #fff !important;
    text-decoration: none;
}

/* ── How It Works — equal height cards v3 ───────────────────── */
.lukin-steps-row {
    align-items: stretch !important;
}
.lukin-step-arrow {
    align-self: center !important;
    flex-shrink: 0 !important;
}
.lukin-step {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-height: 300px;
}
.lukin-step-desc {
    flex: 1 1 auto !important;
    min-height: 0;
}
.lukin-step-btns {
    flex-shrink: 0 !important;
    margin-top: auto !important;
    padding-top: 1rem !important;
}

/* -- How It Works -- Call button border to match Text Us ---------- */
.lukin-step-btn--primary {
    border: 2px solid #fff !important;
}

/* ═══════════════════════════════════════════════════════════════
   AREAS WE SERVE — frontend (custom block)
   ═══════════════════════════════════════════════════════════════ */

.lukin-areas-section {
    position: relative;
    overflow: hidden;
    padding: 72px 24px;
    background: #fff;
}

.lukin-areas-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.lukin-areas-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #337AAF;
    margin: 0 0 0.75rem;
}

.lukin-areas-heading {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: #1e4a7b;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.lukin-areas-body {
    font-size: 17px;
    color: #3d5a73;
    line-height: 1.75;
    margin: 0 auto 1.75rem;
    max-width: 720px;
}

.lukin-areas-cities-intro {
    font-size: 15px;
    font-weight: 600;
    color: #1e4a7b;
    margin: 0 0 1rem;
}

.lukin-areas-cities {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.lukin-areas-city {
    background: #f0f5ff;
    color: #1e4a7b;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid #d8e3f0;
    line-height: 1;
    white-space: nowrap;
}

.lukin-areas-credentials {
    font-size: 15px;
    color: #5a7394;
    font-style: italic;
    margin: 1.5rem 0 1.5rem;
    line-height: 1.6;
}

.lukin-areas-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1e4a7b;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.lukin-areas-directions-btn:hover,
.lukin-areas-directions-btn:focus {
    background: #337AAF;
    color: #fff;
    text-decoration: none;
}

/* Hide old watermark map from prior wp:html block (if still present) */
.lukin-areas-map-bg { display: none !important; }

/* ═══════════════════════════════════════════════════════════════
   EDITOR-ONLY: controls + helpers for inline editing
   ═══════════════════════════════════════════════════════════════ */

.lukin-areas-cities--editing .lukin-areas-city--editing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px 4px 14px;
}

.lukin-areas-cities--editing .lukin-city-controls {
    display: inline-flex;
    gap: 2px;
    margin-left: 4px;
}

.lukin-add-city-wrap,
.lukin-add-card,
.lukin-add-treatment {
    list-style: none;
    background: transparent !important;
    border: 2px dashed #c5d8ec !important;
    padding: 1rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

/* Card/row hover controls (visible in editor) */
.lukin-service-card--editing,
.lukin-treatment-row--editing {
    position: relative;
}

.lukin-card-controls,
.lukin-row-controls {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    gap: 2px;
    background: rgba(255,255,255,0.95);
    padding: 2px;
    border-radius: 4px;
    z-index: 10;
    border: 1px solid #ddd;
}

/* URL input rows inside editor cards */
.lukin-card-url-row,
.lukin-cta-url-row,
.lukin-treatments-city-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    padding: 6px 8px;
    background: #f5f7fa;
    border-radius: 4px;
}

.lukin-card-url-input,
.lukin-cta-url-input,
.lukin-city-input {
    flex: 1;
    font-size: 12px;
    padding: 4px 6px;
    border: 1px solid #ddd;
    border-radius: 3px;
    min-width: 0;
}

.lukin-icon-placeholder {
    display: inline-block;
    color: #c5d8ec;
    font-size: 24px;
}

/* ── Services Grid — whole card clickable ───────────────────── */
.lukin-service-card-anchor {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
    gap: 1rem;
}

.lukin-service-card-anchor:hover,
.lukin-service-card-anchor:focus {
    text-decoration: none !important;
    color: inherit;
}

.lukin-service-card-anchor:hover .lukin-service-card-title,
.lukin-service-card-anchor:focus .lukin-service-card-title {
    color: #337AAF;
}

.lukin-service-card-anchor:hover .lukin-service-card-link svg,
.lukin-service-card-anchor:focus .lukin-service-card-link svg {
    transform: translateX(4px);
}

.lukin-service-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lukin-service-card-link svg {
    transition: transform 0.2s ease;
}

/* ── Hero — mobile text sizing bump ─────────────────────────── */
@media (max-width: 768px) {
    .lukin-hero-eyebrow,
    .location-hero-eyebrow {
        font-size: 12px !important;
        letter-spacing: 0.08em !important;
    }

    .lukin-hero-title,
    .lukin-hero-heading,
    .location-hero h1,
    .lukin-hero h1 {
        font-size: clamp(28px, 7vw, 36px) !important;
        line-height: 1.15 !important;
    }

    .lukin-hero-copy,
    .lukin-hero-intro,
    .location-hero-copy {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .lukin-hero-rating,
    .lukin-hero-reviews,
    .lukin-rating-row {
        font-size: 15px !important;
    }

    .lukin-hero-btn,
    .lukin-cta-btn,
    .lukin-hero a.btn {
        font-size: 16px !important;
        padding: 14px 22px !important;
    }

    .lukin-hero-address,
    .lukin-hero-meta,
    .location-hero-address {
        font-size: 15px !important;
    }

    .lukin-hero-meta-line,
    .lukin-hero-availability {
        font-size: 15px !important;
    }
}
