.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.container-1000 {
    max-width: 1000px;
}

.container-800 {
    max-width: 800px;
}

:root {
    --color-primary: #0096e1;
    --color-secondary: #204a87;
    --color-bg: #f5f7fa;
    --color-text: #333333;
    --color-white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo img {
    height: 96px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    justify-content: flex-end;
}

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

.nav-right {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.nav a {
    text-decoration: none;
}

.nav a:hover,
.nav a:focus {
    text-decoration: none;
}

.nav-links a {
    text-decoration: none;
    color: #1a3b6c;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
}

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

.nav-link {
    text-decoration: none;
    color: #1a3b6c;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.nav-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.lang-selector {
    display: flex;
    gap: 10px;
}

.lang-btn {
    cursor: pointer;
    filter: grayscale(100%);
    transition: filter 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    text-decoration: none;
}

.flag {
    width: 22px;
    height: 16px;
    display: block;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}

.lang-btn:hover,
.lang-btn.active {
    filter: grayscale(0%);
    background: rgba(0,0,0,0.04);
}

.nav-cta {
    background: var(--color-primary);
    border-radius: 999px;
    color: white;
    font-weight: 800;
    padding: 10px 14px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-cta:hover {
    filter: brightness(0.96);
}

.nav-clock {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-secondary);
    font-weight: 800;
    white-space: nowrap;
}

.nav-cal {
    width: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.12);
    background: white;
}

.nav-cal-month {
    background: var(--color-primary);
    color: white;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    padding: 3px 0;
    letter-spacing: 0.6px;
}

.nav-cal-day {
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    padding: 3px 0 5px 0;
}

.nav-time {
    font-size: 12px;
    font-weight: 800;
    opacity: 0.9;
}

.ui-icon {
    width: 20px;
    height: 20px;
    display: block;
    flex: 0 0 auto;
}

.main-content {
    flex: 1;
}

.hero {
    height: calc(100vh - var(--header-height, 120px));
    height: calc(100dvh - var(--header-height, 120px));
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin: 0 0 30px 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero-cta {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    font-size: 18px;
    text-transform: uppercase;
}

.section {
    padding: 80px 0;
}

.section-white {
    background: white;
}

.section-bg {
    background: var(--color-bg);
}

.section-services {
    background: #204a87;
}

.section-compact {
    padding: 60px 0;
}

.section-title {
    color: var(--color-secondary);
    font-size: 32px;
    margin: 0 0 40px 0;
    text-align: center;
}

.book-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px 0;
}

.book-title-row .section-title {
    margin: 0;
    text-align: left;
}

.book-title-summary {
    flex: 0 0 auto;
}

.book-summary-card.book-summary-compact {
    padding: 10px 12px;
}

.book-summary-card.book-summary-compact .book-title {
    font-size: 12px;
    margin: 0 0 8px 0;
}

.book-summary-card.book-summary-compact .book-summary-kvs {
    grid-template-columns: auto auto;
    gap: 10px 14px;
}

.book-summary-card.book-summary-compact .book-summary-v {
    font-size: 16px;
}

.book-summary-card.book-summary-compact .book-summary-total {
    font-size: 18px;
}

.book-alert {
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 14px;
    padding: 12px 14px;
}

.book-success {
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.28);
    color: #166534;
}

.book-error {
    background: rgba(185, 28, 28, 0.10);
    border: 1px solid rgba(185, 28, 28, 0.24);
    color: #991b1b;
}

.muted {
    color: rgba(0,0,0,0.55);
    font-size: 12px;
}

.book-form {
    display: grid;
    gap: 18px;
}

.book-form-main {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.book-steps-wrap {
    position: relative;
}

.book-stepper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.book-stepper-step {
    background: white;
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 999px;
    color: var(--color-secondary);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 12px;
}

.book-stepper-step.is-active {
    background: var(--color-primary);
    border-color: transparent;
    color: white;
}

.book-stepper-step:disabled {
    cursor: default;
    opacity: 0.5;
}

.book-grid-2 {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.book-grid-4 {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.book-card {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 16px;
}

.book-title {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.book-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.book-label {
    color: rgba(0,0,0,0.65);
    font-size: 12px;
    font-weight: 700;
}

.book-input {
    background: white;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 10px;
    box-sizing: border-box;
    color: inherit;
    padding: 10px 12px;
    width: 100%;
}

.book-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.book-pill {
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 999px;
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
}

.book-pill-pending {
    background: rgba(234, 88, 12, 0.14);
    border-color: rgba(234, 88, 12, 0.35);
    color: #9a3412;
}

.book-pill-approved {
    background: rgba(22, 163, 74, 0.14);
    border-color: rgba(22, 163, 74, 0.35);
    color: #166534;
}

.book-pill-confirmed-pending {
    background: rgba(59, 130, 246, 0.14);
    border-color: rgba(59, 130, 246, 0.35);
    color: #1d4ed8;
}

.book-pill-canceled {
    background: rgba(185, 28, 28, 0.12);
    border-color: rgba(185, 28, 28, 0.35);
    color: #991b1b;
}

.book-btn {
    background: var(--color-primary);
    border: 0;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-weight: 800;
    padding: 12px 16px;
    text-transform: uppercase;
}

.book-btn:hover {
    filter: brightness(0.96);
}

.book-btn-alt {
    background: white;
    border: 1px solid rgba(0,0,0,0.16);
    color: var(--color-secondary);
}

.book-summary-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
}

.book-summary-kvs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.book-summary-v {
    color: var(--color-secondary);
    font-size: 20px;
    font-weight: 900;
}

.book-summary-total {
    font-size: 26px;
}

.book-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 200;
}

.book-modal-backdrop {
    background: rgba(0,0,0,0.45);
    inset: 0;
    position: absolute;
}

.book-modal-dialog {
    background: white;
    border-radius: 14px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    width: min(980px, 100%);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.book-modal-header {
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
}

.book-modal-title {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 900;
}

.book-modal-close {
    background: transparent;
    border: 0;
    color: rgba(0,0,0,0.55);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 4px 8px;
}

.book-modal-body {
    overflow: auto;
    padding: 16px;
    flex: 1 1 auto;
}

.book-modal-footer {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 12px 16px;
}

.book-modal-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 10px;
}

.book-legend {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.book-legend-item {
    align-items: center;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
}

.book-legend-dot {
    border-radius: 999px;
    display: inline-block;
    height: 12px;
    width: 12px;
}

.book-legend-dot.is-free {
    background: rgba(34,197,94,0.55);
}

.book-legend-dot.is-occupied {
    background: rgba(239,68,68,0.6);
}

.book-legend-dot.is-reserved {
    background: rgba(59,130,246,0.6);
}

.book-legend-dot.is-selected {
    background: rgba(0,150,225,0.6);
}

.book-parking-wrap {
    background: var(--color-bg);
    border-radius: 12px;
    margin-top: 12px;
    overflow: auto;
    padding: 12px;
}

.book-parking-grid {
    display: grid;
    gap: 6px;
    grid-auto-rows: 18px;
    grid-template-columns: repeat(20, 18px);
    justify-content: center;
}

.book-spot {
    align-items: center;
    background: white;
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 4px;
    color: rgba(0,0,0,0.7);
    cursor: pointer;
    display: flex;
    font-size: 9px;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.book-spot.is-hidden {
    pointer-events: none;
    visibility: hidden;
}

.book-spot:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.book-spot-free {
    background: rgba(34,197,94,0.24);
    border-color: rgba(34,197,94,0.35);
    color: #166534;
}

.book-spot-occupied {
    background: rgba(239,68,68,0.22);
    border-color: rgba(239,68,68,0.35);
    color: #991b1b;
}

.book-spot-reserved {
    background: rgba(59,130,246,0.22);
    border-color: rgba(59,130,246,0.35);
    color: #1d4ed8;
}

.book-spot-unavailable {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.10);
    color: rgba(0,0,0,0.35);
}

.book-spot-selected {
    box-shadow: 0 0 0 3px rgba(0,150,225,0.35);
}

.book-strong {
    font-weight: 800;
}

.book-mb-18 {
    margin-bottom: 18px;
}

.book-mt-12 {
    margin-top: 12px;
}

.book-gap-8 {
    gap: 8px;
}

.book-justify-end {
    justify-content: flex-end;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

.about-text p {
    line-height: 1.6;
    font-size: 16px;
    margin: 0 0 20px 0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-title {
    color: var(--color-secondary);
    margin: 0 0 8px 0;
}

.service-text {
    color: #666;
    margin: 0;
}

.contact-subtitle {
    margin: 0 0 40px 0;
    font-size: 18px;
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-value {
    font-weight: 600;
}

.legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background: var(--color-white);
    box-sizing: border-box;
}

.legal h1 {
    color: var(--color-secondary);
    margin: 0 0 18px 0;
    font-size: 32px;
}

.legal h2 {
    color: var(--color-secondary);
    margin: 28px 0 10px 0;
    font-size: 20px;
}

.legal p,
.legal li {
    line-height: 1.7;
    font-size: 15px;
    color: #444;
}

.legal ul {
    padding-left: 18px;
}

.legal-table-wrap {
    overflow: auto;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
}

.legal-table th {
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    padding: 10px 8px;
}

.legal-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.legal-table tbody tr:last-child td {
    border-bottom: 0;
}

.footer {
    background: var(--color-secondary);
    color: var(--color-white);
    margin-top: auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
}

.footer-map {
    flex: 1 1 50%;
    min-height: 300px;
    background: #ddd;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-info {
    flex: 1 1 50%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.contact-item {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-item-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item-link {
    color: inherit;
    text-decoration: none;
}

.contact-item-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 15px 20px;
    text-align: center;
    font-size: 13px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-copy {
    margin-top: 10px;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .book-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 768px) {
    .footer-top { flex-direction: column; }
    .footer-map { min-height: 250px; }
    .header-inner { flex-direction: column; gap: 15px; }
    .nav { flex-direction: column; align-items: stretch; }
    .nav-links { justify-content: center; }
    .nav-right { justify-content: center; }
    .hero-title { font-size: 38px; }
    .book-title-row { flex-direction: column; align-items: stretch; }
    .book-title-row .section-title { text-align: center; }
    .book-title-summary { display: flex; justify-content: center; }
}
