.location-detail-page {
    background: #050505;
}

.location-detail-page .navbar-brand {
    opacity: 1;
    transform: none;
}

.location-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #050505;
}

.location-hero-bg,
.location-hero-overlay {
    position: absolute;
    inset: 0;
}

.location-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-hero-overlay {
    background: linear-gradient(180deg, rgba(5, 5, 5, .28) 0%, rgba(5, 5, 5, .42) 42%, rgba(5, 5, 5, .96) 100%);
}

.location-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 180px;
    padding-bottom: 90px;
}

.location-back {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    font-weight: 600;
}

.location-back:hover {
    color: #ff2ea6;
}

.location-hero h1 {
    max-width: 900px;
    margin: 0 0 24px;
    font-size: clamp(3.4rem, 8vw, 7rem);
    font-weight: 800;
    line-height: .95;
}

.location-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.7;
}

.location-intro-section,
.location-contact-section,
.location-gallery-section {
    padding: 130px 0;
}

.location-intro-section {
    background: #041827;
}

.location-intro-section h2,
.hours-card h2 {
    margin-bottom: 28px;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.08;
}

.location-intro-section p {
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
    line-height: 1.9;
}

.location-intro-section .location-lead {
    color: rgba(255, 255, 255, .92);
    font-size: 1.28rem;
}

.hours-card,
.location-details-card {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 26px;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
}

.hours-card h2 {
    font-size: 1.8rem;
}

.hours-list {
    margin: 0 0 24px;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hours-list dt,
.hours-list dd {
    margin: 0;
}

.hours-list dt {
    color: rgba(255, 255, 255, .72);
    font-weight: 500;
}

.hours-list dd {
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.hours-card small {
    color: rgba(255, 255, 255, .46);
    line-height: 1.6;
}

.location-contact-section {
    background: linear-gradient(180deg, #140215 0%, #330b36 100%);
}

.location-contact-grid {
    display: grid;
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.4fr);
    gap: 30px;
}

.location-details-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.detail-item:first-child {
    padding-top: 0;
}

.detail-item span {
    display: block;
    margin-bottom: 8px;
    color: #ff2ea6;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.detail-item strong,
.detail-item a {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.7;
    text-decoration: none;
}

.detail-item a:hover {
    color: #ff2ea6;
}

.location-details-card .btn-sing {
    align-self: flex-start;
    margin-top: 30px;
}

.location-map {
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 26px;
    background: #181c23;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    border: 0;
    filter: grayscale(1) invert(.9) contrast(.88);
}

.location-gallery-section {
    background: #141922;
}

.location-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-thumb {
    position: relative;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: #050505;
    cursor: zoom-in;
}

.gallery-thumb::after {
    content: '+';
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(5, 5, 5, .72);
    color: #fff;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease, opacity .3s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.06);
    opacity: .8;
}

.gallery-thumb:hover::after {
    opacity: 1;
    transform: scale(1.06);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 70px 100px;
    background: rgba(2, 3, 5, .94);
    backdrop-filter: blur(14px);
}

.gallery-lightbox.is-open {
    display: flex;
}

.lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    transition: background .3s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: #ff2ea6;
}

.lightbox-close {
    top: 24px;
    right: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 26px;
}

.lightbox-next {
    right: 26px;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    color: rgba(255, 255, 255, .7);
    transform: translateX(-50%);
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .location-detail-page .navbar-brand {
        display: block !important;
    }

    .location-hero {
        min-height: 580px;
    }

    .location-contact-grid {
        grid-template-columns: 1fr;
    }

    .location-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .location-detail-page .navbar-brand img {
        height: 42px;
    }

    .location-hero {
        min-height: 520px;
    }

    .location-hero-content {
        padding-bottom: 60px;
    }

    .location-intro-section,
    .location-contact-section,
    .location-gallery-section {
        padding: 90px 0;
    }

    .hours-card,
    .location-details-card {
        padding: 28px;
    }

    .location-map,
    .location-map iframe {
        min-height: 400px;
    }

    .location-gallery {
        gap: 10px;
    }

    .gallery-thumb {
        border-radius: 12px;
    }

    .gallery-lightbox {
        padding: 70px 14px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .lightbox-prev {
        left: 18px;
    }

    .lightbox-next {
        right: 18px;
    }

    .lightbox-counter {
        bottom: 36px;
    }
}
