/* ============================================================
   Branch Locator — Redesigned CSS
   Design direction: editorial luxury — dark hero, clean cream
   right panel, Playfair Display headlines, DM Sans body.
   One source of truth for every token. No duplication.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Design tokens ───────────────────────────────────────── */
:root {
    /* Brand */
    --red: #e52323;
    --red-dark: #be1717;
    --red-glow: rgba(229, 35, 35, .18);
    --ink: #07111f;
    --ink-80: rgba(7, 17, 31, .80);
    --slate: #5c6576;
    --cream: #f8f6f2;
    --line: rgba(7, 17, 31, .09);
    --line-hero: rgba(255, 255, 255, .10);

    /* Surfaces */
    --bg-hero: #08111e;
    /* richer dark, single value */
    --bg-panel: #ffffff;
    --bg-rail: #f2f0ec;
    /* warm off-white, not cold grey */
    --bg-card: #ffffff;
    --bg-pill-red: rgba(229, 35, 35, .07);

    /* Type */
    --font-display: 'Archivo', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Radius — consistent scale */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-2xl: 44px;

    /* Shadow */
    --shadow-page: 0 32px 80px rgba(7, 17, 31, .14);
    --shadow-card: 0 8px 24px rgba(7, 17, 31, .07);
    --shadow-btn: 0 10px 28px rgba(7, 17, 31, .10);
    --shadow-red: 0 14px 32px rgba(229, 35, 35, .22);
    --shadow-pin: 0 14px 34px rgba(229, 35, 35, .20);

    /* Transitions */
    --ease-out: cubic-bezier(.2, .9, .2, 1);
    --dur: .18s;

    /* Layout */
    --container-max: 1560px;
}

/* ── Reset ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ── Page shell ──────────────────────────────────────────── */
.page {
    min-height: 100vh;
    padding: clamp(12px, 2.4vw, 32px);
    background: var(--cream);
}

/* ── Board (two-col card) ────────────────────────────────── */
.contact-board {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    min-height: calc(100vh - 64px);
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-page);
}

/* ── Left hero panel ─────────────────────────────────────── */
.intro-panel {
    position: relative;
    padding: clamp(28px, 5vw, 60px);
    background: var(--bg-hero);
    color: #fff;
    overflow: hidden;
    /* subtle noise texture for depth */
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 110%, rgba(229, 35, 35, .12) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
}

/* thin left accent line */
.intro-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--red), transparent);
    border-radius: 0 2px 2px 0;
}

.intro-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line-hero);
    color: rgba(255, 255, 255, .70);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    width: fit-content;
}

.brand-mark span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(229, 35, 35, .20);
}

.intro-title {
    margin: 52px 0 0;
    font-family: var(--font-display);
    font-size: clamp(27px, 2.5vw, 60px);
    font-weight: 700;
    line-height: .80;
    letter-spacing: -.02em;
    color: #fff;
}

.intro-title em {
    color: var(--red);
        font-style: normal;
}

.intro-text {
    margin-top: 22px;
    color: rgba(255, 255, 255, .60);
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.70;
    max-width: 34ch;
}

/* quick contact cards */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 32px;
}

.quick-action {
    padding: 16px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line-hero);
    transition: background var(--dur) var(--ease-out), transform var(--dur);
}

.quick-action:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-2px);
}

.quick-action small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.quick-action strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* office count + trust strip pushed to bottom */
.office-count {
    margin-top: auto;
    padding-top: 48px;
    font-size: 13px;
    color: rgba(255, 255, 255, .50);
}

.office-count strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.trust-item {
    padding: 12px 10px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line-hero);
}

.trust-item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}

.trust-item span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    font-weight: 400;
}

/* ── Right locator panel ─────────────────────────────────── */
.locator-panel {
    padding: clamp(22px, 3.5vw, 48px);
    background: var(--bg-panel);
    display: flex;
    flex-direction: column;
}

.locator-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.locator-top h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.locator-top p {
    margin-top: 5px;
    font-size: 13px;
    color: var(--slate);
    line-height: 1.5;
    max-width: 36ch;
}

.availability {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eaf8f1;
    color: #147248;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
}

/* animated dot */
.availability::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22a86a;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

/* ── Branch finder layout ────────────────────────────────── */
.branch-finder {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
    flex: 1;
}

/* ── Rail (branch list) ──────────────────────────────────── */
.branch-rail {
    background: var(--bg-rail);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    padding: 12px;
    max-height: 680px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(7, 17, 31, .08) transparent;
}

.branch-rail::-webkit-scrollbar {
    width: 6px;
}

.branch-rail::-webkit-scrollbar-thumb {
    background: rgba(7, 17, 31, .08);
    border-radius: 4px;
}

/* search */
.search-box {
    position: relative;
    margin-bottom: 10px;
}

.search-box::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6576' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    height: 42px;
    border-radius: var(--r-md);
    padding: 0 14px 0 38px;
    border: 1px solid var(--line);
    background: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--ink);
    outline: none;
    transition: border-color var(--dur);
}

.search-box input::placeholder {
    color: rgba(92, 101, 118, .55);
}

.search-box input:focus {
    border-color: var(--red);
}

/* branch tabs (vertical list) */
.tabs {
    display: block;
}

.branch-tab {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 10px;
    border-radius: var(--r-md);
    background: transparent;
    border: 0;
    margin-top: 4px;
    text-align: left;
    transition: background var(--dur) var(--ease-out);
    color: var(--ink);
}

.branch-tab:hover {
    background: rgba(255, 255, 255, .85);
}

.branch-tab.active {
    background: var(--ink);
    color: #fff;
}

.tab-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-pill-red);
    color: var(--red);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
    transition: background var(--dur), color var(--dur);
}

.branch-tab.active .tab-number {
    background: var(--red);
    color: #fff;
}

.tab-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-result {
    display: none;
    padding: 14px 8px;
    font-size: 13px;
    color: var(--slate);
    font-weight: 500;
    line-height: 1.5;
}

.no-result.show {
    display: block;
}

/* ── Branch stage (detail card) ──────────────────────────── */
.branch-stage {
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: opacity .15s;
}

.branch-stage.is-loading {
    opacity: .7;
}

/* map canvas */
.map-canvas {
    position: relative;
    min-height: 160px;
    padding: 24px;
    background: var(--bg-rail);
    /* subtle grid pattern */
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 32px 32px;
    overflow: hidden;
}

.map-meta {
    position: absolute;
    top: 14px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.map-meta span {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
    backdrop-filter: blur(4px);
}

.live-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 4;
    pointer-events: none;
}

.live-pin-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 35, 35, .16) 0%, rgba(229, 35, 35, .06) 42%, transparent 62%);
    filter: blur(8px);
    animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {

    0%,
    100% {
        transform: scale(.94);
        opacity: .9;
    }

    50% {
        transform: scale(1.06);
        opacity: .55;
    }
}

.live-pin-img {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    box-shadow: var(--shadow-pin);
    transition: transform .36s var(--ease-out), opacity .2s;
}

.live-pin-img.pop {
    transform: scale(1.12);
}

/* branch detail content */
.branch-detail {
    padding: 28px 28px 24px;
}

.detail-kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.branch-detail h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.2vw, 36px);
    font-weight: 700;
    line-height: .96;
    letter-spacing: -.02em;
    color: var(--ink);
    word-break: break-word;
    overflow-wrap: anywhere;
}

.address-line {
    margin-top: 12px;
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
}

/* counsellor badge */
.branch-counsellor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--bg-pill-red);
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
}

.branch-counsellor::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(229, 35, 35, .18);
}

/* trust row */
.trust-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

.trust-row .verified {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(7, 17, 31, .04);
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
}

.trust-row .experience {
    font-size: 12px;
    color: var(--slate);
    font-weight: 500;
}

/* info pills */
.info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.info-pill {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 13px 14px;
    border-radius: var(--r-md);
    background: var(--bg-rail);
    border: 1px solid var(--line);
    text-align: left;
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur);
}

.info-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.info-pill small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--slate);
}

.info-pill strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    word-break: break-word;
}

/* ── CTA buttons ─────────────────────────────────────────── */
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}

/* shared base */
.main-btn,
.ghost-btn,
.primary-subtle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), background var(--dur);
    white-space: nowrap;
}

.main-btn:hover,
.ghost-btn:hover,
.primary-subtle:hover {
    transform: translateY(-2px);
}

/* primary — red fill */
.main-btn.primary-main {
    background: var(--red);
    color: #fff;
    box-shadow: var(--shadow-red);
}

.main-btn.primary-main:hover {
    background: var(--red-dark);
    box-shadow: 0 18px 40px rgba(229, 35, 35, .28);
}

/* secondary — dark fill */
.main-btn.dark-btn {
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.main-btn.dark-btn:hover {
    background: #0e1e30;
    box-shadow: 0 16px 36px rgba(7, 17, 31, .18);
}

/* ghost — outline */
.ghost-btn {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
}

.ghost-btn:hover {
    box-shadow: var(--shadow-card);
}

.ghost-btn-accent {
    color: var(--red);
    border-color: rgba(229, 35, 35, .20);
}

.ghost-btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

/* subtle text-link style */
.primary-subtle {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 9px 16px;
    font-weight: 500;
}

.primary-subtle:hover {
    background: rgba(7, 17, 31, .03);
    box-shadow: none;
}

/* ── Mobile sticky CTA bar ───────────────────────────────── */
.mobile-cta-bar {
    display: none;
    margin-top: 16px;
    gap: 8px;
}

.mobile-cta-bar a {
    flex: 1;
    min-height: 46px;
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    transition: transform var(--dur);
}

.mobile-cta-bar a:hover {
    transform: translateY(-1px);
}

.mobile-cta-bar a:nth-child(2) {
    color: #22a045;
    border-color: rgba(34, 160, 69, .25);
}

.mobile-cta-bar a:nth-child(3) {
    background: var(--red);
    color: #fff;
    border-color: transparent;
}

/* ── Accessibility ───────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── Responsive breakpoints ──────────────────────────────── */

/* Tablet (768 → 1023) */
@media (max-width: 1023px) {
    .contact-board {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: var(--r-xl);
    }

    .intro-panel::before {
        display: none;
    }

    .intro-title {
        margin-top: 36px;
    }

    .office-count {
        padding-top: 36px;
    }

    .branch-finder {
        grid-template-columns: minmax(200px, 260px) 1fr;
    }
}

/* Mobile (< 768) */
@media (max-width: 767px) {
    .page {
        padding: 0;
    }

    .contact-board {
        border-radius: 0;
        box-shadow: none;
    }

    .intro-panel,
    .locator-panel {
        padding: 28px 18px;
    }

    .quick-actions {
        grid-template-columns: 1fr 1fr;
    }

    .trust-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .locator-top {
        flex-direction: column;
        gap: 12px;
    }

    .branch-finder {
        grid-template-columns: 1fr;
    }

    /* horizontal scrolling rail on mobile */
    .branch-rail {
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
        border-radius: var(--r-lg);
    }

    .tabs {
        display: flex;
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .branch-tab {
        flex: 0 0 auto;
        min-width: 130px;
        width: auto;
        margin-top: 0;
    }

    .map-canvas {
        min-height: 180px;
    }

    .branch-detail {
        padding: 20px 16px 18px;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

    /* two-column CTA grid on mobile */
    .detail-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 16px;
    }

    .detail-actions .main-btn.primary-main {
        grid-column: 1;
    }

    .detail-actions .main-btn.dark-btn {
        grid-column: 2;
    }

    .detail-actions .primary-subtle {
        grid-column: 1;
    }

    .detail-actions .ghost-btn-accent {
        grid-column: 2;
    }

    .detail-actions .ghost-btn-outline {
        grid-column: 1 / -1;
    }

    .mobile-cta-bar {
        display: flex;
    }

    .live-pin {
        width: 72px;
        height: 72px;
    }

    .live-pin-img {
        width: 44px;
        height: 44px;
    }
}

/* Small mobile (< 375) */
@media (max-width: 374px) {
    .intro-title {
        font-size: 32px;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }
}

/* Compact mobile (< 500) */
@media (max-width: 500px) {
    .detail-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .detail-actions .main-btn.primary-main,
    .detail-actions .main-btn.dark-btn,
    .detail-actions .primary-subtle,
    .detail-actions .ghost-btn-accent,
    .detail-actions .ghost-btn-outline {
        grid-column: 1 / -1;
    }

    .detail-actions .main-btn,
    .detail-actions .ghost-btn,
    .detail-actions .primary-subtle {
        width: 100%;
        min-width: 0;
        white-space: normal;
        text-align: center;
        padding: 10px 12px;
    }
}

/* Large desktop (≥ 1400px) */
@media (min-width: 1400px) {
    .branch-finder {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 28px;
    }

    .branch-rail {
        max-height: 760px;
    }

    .branch-detail {
        padding: 36px;
    }

    .map-canvas {
        min-height: 200px;
    }
}

/* prevent horizontal scroll globally */
html,
body,
.page,
.contact-board {
    overflow-x: hidden;
}

/* ==========================================================================
   Premium Branch Concierge Redesign Additions
   ========================================================================== */

/* Left Intro Panel Additions */
.rated-network-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.rated-network-badge .stars {
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 2px;
}

.red-gradient-text {
    background: linear-gradient(135deg, #ff4b4b, #ff8f8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

/* Right Detail Area Additions */
.branch-detail-header-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.branch-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf8f1;
    color: #147248;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 15px;
}

.branch-status-badge .status-dot {
    width: 8px;
    height: 8px;
    background: #22a86a;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.branch-status-badge .status-hours {
    color: #4a5568;
    font-weight: 500;
    margin-left: 5px;
}

.branch-google-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    background: #fdfae7;
    border: 1px solid #fde68a;
    padding: 6px 12px;
    border-radius: 20px;
    margin-left: 10px;
}

@media (max-width: 500px) {
    .branch-google-rating {
        margin-left: 0;
        display: flex;
    }
}

.branch-google-rating .stars {
    color: #FBBC05;
    font-size: 14px;
    letter-spacing: 1px;
}

.branch-google-rating .rating-text {
    font-size: 13px;
    color: #555;
}