:root {
    --primary: #e579ad;
    --primary-dark: #d66b9f;
    --primary-light: #fff0f6;
    --primary-mid: #f5c6e0;
    --text-dark: #111111;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg-soft: #fafafa;
    --white: #ffffff;
    --green: #16a34a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

/* ══════════════════════════════════════
    ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: .6;
    }
}

/* ══════════════════════════════════════
    NAVBAR
══════════════════════════════════════ */
.spa-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    height: 66px;
    display: flex;
    align-items: center;
    padding: 0 36px;
    justify-content: space-between;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(229, 121, 173, .4);
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    letter-spacing: -.4px;
    line-height: 1.15;
}

.nav-logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-signin {
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s;
}

.nav-signin:hover {
    border-color: #999;
}

.btn-nav-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
    box-shadow: 0 2px 10px rgba(229, 121, 173, .35);
    text-decoration: none;
    white-space: nowrap;
}

.btn-nav-book:hover {
    background: var(--primary-dark);
    color: #fff;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: #111;
}

/* ══════════════════════════════════════
    HERO SECTION
══════════════════════════════════════ */
.loc-hero {
    position: relative;
    min-height: 380px;
    padding-top: 66px;
    overflow: hidden;
    background: var(--text-dark);
    display: flex;
    align-items: flex-end;
}

.loc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.loc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(.35) saturate(1.1);
}

.loc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            rgba(229, 121, 173, .18) 0%,
            transparent 60%);
}

/* Pink glow */
.loc-hero-glow {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 121, 173, .16) 0%, transparent 65%);
    z-index: 2;
    pointer-events: none;
}

.loc-hero-content {
    position: relative;
    z-index: 10;
    padding: 60px 0 52px;
    animation: fadeUp .6s ease .1s both;
}

.loc-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(229, 121, 173, .14);
    border: 1px solid rgba(229, 121, 173, .32);
    padding: 6px 14px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.loc-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 14px;
}

.loc-hero-title span {
    color: var(--primary);
}

.loc-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .55);
    max-width: 500px;
    line-height: 1.7;
}

/* Hero stats strip */
.loc-hero-stats {
    display: flex;
    gap: 0;
    margin-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 28px;
    flex-wrap: wrap;
}

.loc-hero-stat {
    padding: 0 36px 0 0;
    margin-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.loc-hero-stat:last-child {
    border-right: none;
}

.loc-hero-stat-num {
    font-size: 35px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -.5px;
}

.loc-hero-stat-num span {
    color: var(--primary);
}

.loc-hero-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ══════════════════════════════════════
    MAIN LOCATION SECTION
══════════════════════════════════════ */
.loc-main-section {
    background: var(--bg-soft);
    padding: 0 0 80px;
}

/* ── Search + Filter Bar ── */
.loc-filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 66px;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.loc-filter-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Search box */
.loc-search-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 360px;
}

.loc-search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 15px;
    pointer-events: none;
}

.loc-search-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px 10px 40px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s, box-shadow .2s;
    background: var(--bg-soft);
}

.loc-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 121, 173, .12);
    background: #fff;
}

.loc-search-input::placeholder {
    color: #aaa;
}

/* City pills */
.loc-city-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    align-items: center;
}

.loc-city-pill {
    border: 1.5px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
    white-space: nowrap;
}

.loc-city-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.loc-city-pill.active {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}

/* ── Two-col layout: sidebar + map ── */
.loc-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    min-height: 680px;
}

/* ── LEFT SIDEBAR ── */
.loc-sidebar {
    background: #fff;
    border-right: 1px solid var(--border);
    overflow-y: auto;
    max-height: 680px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-mid) transparent;
}

.loc-sidebar::-webkit-scrollbar {
    width: 4px;
}

.loc-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-mid);
    border-radius: 999px;
}

.loc-sidebar-head {
    padding: 22px 24px 16px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}

.loc-sidebar-count {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* Location list item */
.loc-list-item {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .18s;
    position: relative;
}

.loc-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform .2s;
}

.loc-list-item:hover {
    background: var(--primary-light);
}

.loc-list-item:hover::before {
    transform: scaleY(1);
}

.loc-list-item.active {
    background: var(--primary-light);
}

.loc-list-item.active::before {
    transform: scaleY(1);
}

.loc-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.loc-item-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.loc-item-open {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    background: #dcfce7;
    border-radius: 999px;
    padding: 3px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.loc-item-open .open-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 1.8s ease-in-out infinite;
}

.loc-item-addr {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 14px;
}

.loc-item-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.loc-item-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-soft);
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid var(--border);
}

.loc-item-meta-pill i {
    font-size: 11px;
    color: var(--primary);
}

.loc-item-actions {
    display: flex;
    gap: 8px;
}

.btn-loc-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.btn-loc-book:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    color: #fff;
}

.btn-loc-dir {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s, color .2s;
    text-decoration: none;
}

.btn-loc-dir:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ── RIGHT MAP ── */
.loc-map-col {
    position: relative;
    background: #e8e8e8;
}

.loc-map-col iframe {
    width: 100%;
    height: 100%;
    min-height: 680px;
    border: 0;
    display: block;
}

/* Map overlay card */
.map-info-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
    min-width: 240px;
    animation: fadeIn .4s ease;
    border: 1px solid var(--border);
}

.mic-name {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.mic-addr {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 12px;
}

.mic-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 14px;
}

.mic-open .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.mic-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    width: 100%;
    transition: background .2s;
}

.mic-btn:hover {
    background: var(--primary-dark);
}

/* ══════════════════════════════════════
    LOCATION DETAIL CARDS SECTION
══════════════════════════════════════ */
.loc-cards-section {
    padding: 72px 0 80px;
    background: #fff;
}

.loc-cards-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.loc-cards-eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.loc-cards-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.1;
    color: var(--text-dark);
}

.loc-cards-title span {
    color: var(--primary);
}

/* Location detail card */
.loc-detail-card {
    border-radius: 20px;
    background: #fff;
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.loc-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(229, 121, 173, .14), 0 4px 16px rgba(0, 0, 0, .06);
}

.loc-card-map {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.loc-card-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;
}

/* Gradient overlay on mini-map */
.loc-card-map::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, #fff, transparent);
}

.loc-card-body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.loc-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    background: #dcfce7;
    border-radius: 999px;
    padding: 3px 10px;
    margin-bottom: 10px;
    width: fit-content;
}

.loc-card-badge .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 1.8s ease-in-out infinite;
}

.loc-card-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: -.2px;
}

.loc-card-country {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.loc-card-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 14px 0;
}

.loc-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.loc-card-detail-label {
    font-size: 10px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 5px;
}

.loc-card-detail-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.loc-card-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 8px;
}

.loc-card-hours {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green);
}

.loc-card-hours i {
    font-size: 13px;
}

.loc-card-see-hours {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
    transition: color .2s;
}

.loc-card-see-hours:hover {
    color: var(--primary);
}

.loc-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-lc-book {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.btn-lc-book:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    color: #fff;
}

.btn-lc-dir {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-lc-dir:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ══════════════════════════════════════
    EVENTS SECTION
══════════════════════════════════════ */
.events-section {
    background: var(--bg-soft);
    overflow: hidden;
}

.events-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.events-content-col {
    padding: 72px 64px 72px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.events-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    border: 1.5px solid var(--primary-mid);
    padding: 6px 14px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 20px;
}

.events-title {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.5px;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.events-title span {
    color: var(--primary);
}

.events-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.events-feats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.ev-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.ev-feat-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 15px;
    flex-shrink: 0;
}

.btn-events {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s, transform .15s;
    box-shadow: 0 3px 14px rgba(229, 121, 173, .35);
    text-decoration: none;
    width: fit-content;
}

.btn-events:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    color: #fff;
}

.btn-events .btn-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.events-img-col {
    position: relative;
    overflow: hidden;
}

.events-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Pink overlay on image */
.events-img-col::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            rgba(249, 240, 246, .6) 0%,
            transparent 40%);
}

/* ══════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
    .loc-layout {
        grid-template-columns: 320px 1fr;
    }
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: block;
    }

    .loc-layout {
        grid-template-columns: 1fr;
    }

    .loc-sidebar {
        max-height: 360px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .loc-map-col iframe {
        min-height: 420px;
    }

    .events-inner {
        grid-template-columns: 1fr;
    }

    .events-content-col {
        padding: 52px 28px;
    }

    .events-img-col {
        height: 300px;
    }

    .events-img-col::before {
        background: none;
    }

    .map-info-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .spa-navbar {
        padding: 0 18px;
    }

    .loc-hero-content {
        padding: 52px 0 44px;
    }

    .loc-hero-stats {
        gap: 24px;
    }

    .loc-hero-stat {
        padding-right: 24px;
        margin-right: 24px;
    }

    .loc-filter-inner {
        gap: 10px;
    }

    .loc-search-wrap {
        max-width: 100%;
    }

    .events-content-col {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .loc-hero-stat-num {
        font-size: 22px;
    }

    .loc-hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .loc-hero-stat {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }

    .loc-card-details {
        grid-template-columns: 1fr;
    }

    .loc-cards-header {
        flex-direction: column;
        align-items: flex-start;
    }
}