﻿.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding: 0 80px 80px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1800&q=80') center/cover;
    opacity: .13;
    filter: saturate(.3) brightness(.5);
}

.page-hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
}

.breadcrumb {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: 3px;
    color: var(--silver-dim);
    margin-bottom: 20px;
}

    .breadcrumb span {
        color: var(--blue);
    }

.page-title {
    font-family: var(--font-display);
    font-size: clamp(4rem,8vw,8rem);
    font-weight: 300;
    color: var(--white);
    line-height: .95;
    letter-spacing: 2px;
}

    .page-title em {
        color: var(--blue);
        font-style: italic;
    }

.title-line {
    width: 80px;
    height: 1px;
    background: var(--blue);
    margin-top: 28px;
    box-shadow: 0 0 10px var(--blue-glow);
}

@@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero > div > * {
    animation: fadeUp .9s ease backwards;
}

    .page-hero > div > *:nth-child(1) {
        animation-delay: .1s;
    }

    .page-hero > div > *:nth-child(2) {
        animation-delay: .3s;
    }

    .page-hero > div > *:nth-child(3) {
        animation-delay: .5s;
    }
.booking-section {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: 700px;
}

.booking-left {
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=900&q=80') center/cover;
    position: relative;
    overflow: hidden;
}

    .booking-left::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, transparent 20%, var(--bg3) 100%), rgba(5,5,8,.55);
    }

.booking-left-inner {
    position: relative;
    z-index: 1;
    padding: 80px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.booking-right {
    padding: 80px;
    background: var(--bg3);
}

.sec-label {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: 4px;
    color: var(--blue);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

    .sec-label::before {
        content: '//';
        color: var(--blue-dim);
    }

.sec-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem,3.5vw,3rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 2px;
}

    .sec-title em {
        color: var(--blue);
        font-style: italic;
    }

.divider {
    width: 60px;
    height: 1px;
    background: var(--blue);
    margin: 24px 0;
    box-shadow: 0 0 10px var(--blue-glow);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .85rem;
    color: var(--silver);
}

    .contact-info-item .icon {
        font-family: var(--font-mono);
        color: var(--blue);
        font-size: .9rem;
        width: 20px;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}

.form-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-lbl {
    font-family: var(--font-mono);
    font-size: .6rem;
    letter-spacing: 2px;
    color: var(--blue);
    text-transform: uppercase;
}

.form-ctrl {
    background: rgba(77,184,255,.04);
    border: 1px solid var(--border);
    color: var(--silver);
    padding: 13px 16px;
    font-family: var(--font-ui);
    font-size: .9rem;
    outline: none;
    transition: border-color .3s, background .3s;
    width: 100%;
}

    .form-ctrl:focus {
        border-color: var(--blue);
        background: rgba(77,184,255,.08);
    }

    .form-ctrl::placeholder {
        color: var(--silver-dim);
    }

select.form-ctrl option {
    background: var(--bg2);
    color: var(--silver);
}

textarea.form-ctrl {
    resize: vertical;
    min-height: 90px;
}

.btn-submit {
    width: 100%;
    background: var(--blue);
    color: #000;
    border: none;
    padding: 16px;
    margin-top: 14px;
    font-family: 'Arial', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
}

    .btn-submit:hover {
        background: var(--white);
    }

    .btn-submit.error {
        background: #e05555;
        color: #fff;
    }

    .btn-submit.success {
        background: #4caf50;
        color: #fff;
    }

.toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--surface);
    border: 1px solid var(--blue);
    color: var(--silver);
    padding: 16px 40px;
    font-family: var(--font-mono);
    font-size: .78rem;
    z-index: 9000;
    transition: transform .4s, opacity .4s;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 40px var(--blue-glow);
    white-space: nowrap;
}

    .toast.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

@@media (max-width: 1024px) {
    .booking-section {
        grid-template-columns: 1fr;
    }

    .booking-left {
        min-height: 300px;
    }
}

@@media (max-width: 768px) {
    .booking-right {
        padding: 40px 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-full {
        grid-column: span 1;
    }
}
.info-section {
    background: var(--bg);
    padding: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-bottom: 60px;
}

.info-card {
    background: var(--surface);
    padding: 36px 32px;
    transition: background .3s;
}

    .info-card:hover {
        background: rgba(77,184,255,.04);
    }

.info-card-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: block;
}

.info-card-label {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: 3px;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.info-card-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 6px;
}

.info-card-sub {
    font-size: .82rem;
    color: var(--text);
    line-height: 1.8;
}

.info-card a {
    color: var(--silver);
    text-decoration: none;
    transition: color .2s;
}

    .info-card a:hover {
        color: var(--blue);
    }

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    margin-top: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

    .hours-row .day {
        color: var(--text);
    }

    .hours-row .time {
        color: var(--silver);
        font-family: var(--font-mono);
        font-size: .75rem;
    }

    .hours-row.today {
        background: rgba(77,184,255,.05);
        padding: 8px 10px;
        margin: 0 -10px;
        border-bottom-color: var(--blue);
    }

        .hours-row.today .day {
            color: var(--blue);
            font-weight: 600;
        }

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

    .status-dot.open {
        background: #4caf50;
        box-shadow: 0 0 8px rgba(76,175,80,.6);
        animation: blink 2s infinite;
    }

    .status-dot.closed {
        background: #e05555;
    }

@@keyframes blink {
    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.map-wrap {
    position: relative;
    height: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(77,184,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(77,184,255,.06) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-pin-dot {
    width: 16px;
    height: 16px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(77,184,255,.2), 0 0 20px var(--blue-glow);
    animation: pinpulse 2s infinite;
}

.map-pin-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--blue), transparent);
}

@@keyframes pinpulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(77,184,255,.2), 0 0 20px var(--blue-glow);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(77,184,255,.05), 0 0 30px var(--blue-glow);
    }
}

.map-label {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: 2px;
    color: var(--silver-dim);
    text-align: center;
}

.map-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

    .map-btn:hover {
        background: var(--blue);
        color: var(--bg);
    }

@@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@@media (max-width: 768px) {
    .info-section {
        padding: 40px 24px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}