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

/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
    --blue: #1B3A5C;
    --gold: #C8A96E;
    --cream: #FAF8F5;
    --warm: #F3EDE5;
    --dark: #1A1A1A;
    --text: #2D2D2D;
    --muted: #8B8B8B;
    --white: #fff;
    --radius: 8px;
    --max-w: 1200px;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height:1.6; -webkit-font-smoothing: antialiased; }
img { display:block; max-width:100%; height:auto; }
a { text-decoration:none; color:inherit; cursor:pointer; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.label { display:block; font-size:.7rem; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
    position:fixed; top:0; left:0; right:0; z-index:900;
    display:flex; align-items:center; justify-content:space-between;
    padding: 0 40px; height: 72px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: all .3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.nav-logo { font-family: var(--font-display); font-size:1.6rem; font-weight:700; color:var(--blue); }
.nav-links { display:flex; gap:32px; }
.nav-links a {
    font-size:.8rem; font-weight:700; letter-spacing:1px; text-transform:uppercase;
    color: var(--muted); transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-cta {
    font-size:.75rem; font-weight:700; letter-spacing:1px; text-transform:uppercase;
    padding: 10px 20px; border:2px solid var(--blue); color:var(--blue);
    border-radius:4px; background:none; cursor:pointer; transition: all .3s;
}
.nav-cta:hover { background:var(--blue); color:var(--white); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position:relative; height:100vh; min-height:600px;
    display:flex; align-items:center; justify-content:center;
    overflow:hidden; color:var(--white); text-align:center;
}
.hero-img {
    position:absolute; inset:0;
    background: var(--blue) center/cover no-repeat;
    transition: transform 8s ease;
}
.hero:hover .hero-img { transform: scale(1.03); }
.hero-overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%); }
.hero-center { position:relative; z-index:2; padding:0 24px; }
.hero-label { font-size:.7rem; letter-spacing:6px; text-transform:uppercase; opacity:.7; margin-bottom:16px; }
.hero-center h1 { font-family:var(--font-display); font-size:clamp(3rem,8vw,6rem); font-weight:600; line-height:1; margin-bottom:16px; }
.hero-sub { font-size:1.1rem; font-weight:400; letter-spacing:2px; opacity:.8; margin-bottom:40px; }
.hero-btn {
    display:inline-flex; align-items:center; gap:10px;
    font-size:.8rem; font-weight:700; letter-spacing:2px; text-transform:uppercase;
    padding:14px 36px; border:2px solid var(--white); color:var(--white);
    border-radius:4px; cursor:pointer; transition: all .4s;
}
.hero-btn:hover { background:var(--white); color:var(--dark); }

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section { padding: 100px 0; }
.section h2 { font-family:var(--font-display); font-size:2.6rem; font-weight:600; color:var(--dark); margin-bottom:24px; }
.bg-warm { background: var(--warm); }

/* ═══════════════════════════════════════
   WELCOME GRID
   ═══════════════════════════════════════ */
.welcome-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.welcome-img-wrap { border-radius: var(--radius); overflow:hidden; aspect-ratio: 4/3; background:var(--warm); }
.welcome-img { width:100%; height:100%; object-fit:cover; }
.welcome-text p { font-size:1.05rem; color:var(--muted); line-height:1.8; margin-bottom:30px; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display:inline-flex; align-items:center; gap:10px;
    font-size:.8rem; font-weight:700; letter-spacing:1px; text-transform:uppercase;
    padding:14px 28px; background:var(--blue); color:var(--white);
    border:2px solid var(--blue); border-radius:4px;
    cursor:pointer; transition:all .3s; border:none;
}
.btn:hover { opacity:.85; transform:translateY(-1px); }
.btn.full { width:100%; justify-content:center; padding:16px; }
.btn.small { padding:10px 20px; font-size:.72rem; }
.btn.outline { background:transparent; color:var(--text); border:1px solid rgba(0,0,0,.15); }
.btn.outline:hover { border-color:var(--dark); }

/* ═══════════════════════════════════════
   PROMO BAR
   ═══════════════════════════════════════ */
.promo-bar {
    padding:50px 0; background:var(--blue); color:var(--white);
}
.promo-bar h3 { font-family:var(--font-display); font-size:1.8rem; font-weight:400; font-style:italic; }

/* ═══════════════════════════════════════
   MENU SEARCH
   ═══════════════════════════════════════ */
.menu-search-wrap {
    position:relative; max-width:480px; margin:0 auto 30px;
}
.menu-search-icon {
    position:absolute; left:18px; top:50%; transform:translateY(-50%);
    color:var(--muted); font-size:.9rem; pointer-events:none;
}
.menu-search {
    width:100%; padding:14px 18px 14px 48px;
    border:1px solid rgba(0,0,0,.1); border-radius:50px;
    font-size:.95rem; font-family:var(--font-body);
    background:var(--white); transition:border-color .3s, box-shadow .3s;
}
.menu-search:focus {
    outline:none; border-color:var(--blue);
    box-shadow:0 0 0 3px rgba(27,58,92,.08);
}
.menu-empty { text-align:center; padding:100px 0; opacity:.4; font-weight:500; }

/* ═══════════════════════════════════════
   VACATION MODAL
   ═══════════════════════════════════════ */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(27, 58, 92, 0.5);
    backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; animation: fadeIn .5s forwards;
}
.vacation-card {
    background: var(--white);
    max-width: 500px; width: 100%;
    padding: 60px 40px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    position: relative;
    transform: translateY(20px); animation: slideUp .5s .1s forwards;
}
.vacation-card .icon-box {
    width: 80px; height: 80px;
    background: var(--cream);
    color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.05);
}
.vacation-card h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--blue);
    margin-bottom: 20px;
    line-height: 1.1;
}
.vacation-card p {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
}
.vacation-close {
    position: absolute; top: 24px; right: 24px;
    background: none; border: none; font-size: 1.4rem;
    color: var(--muted); cursor: pointer; transition: color .3s;
}
.vacation-close:hover { color: var(--dark); }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { transform: translateY(0); } }

/* ═══════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════ */
.cat-bar { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin-bottom:50px; }
.cat-btn {
    padding:8px 22px; border-radius:50px; border:1px solid rgba(0,0,0,.12);
    background:var(--white); color:var(--muted); font-size:.78rem; font-weight:700;
    cursor:pointer; transition:all .3s;
}
.cat-btn.active, .cat-btn:hover { background:var(--blue); color:var(--white); border-color:var(--blue); }

/* ═══════════════════════════════════════
   MENU GRID
   ═══════════════════════════════════════ */
.menu-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap:30px; }
.dish-card {
    background:var(--white); border-radius:var(--radius); overflow:hidden;
    border:1px solid rgba(0,0,0,.06); transition: transform .4s ease, box-shadow .4s ease;
}
.dish-card:hover { transform:translateY(-4px); box-shadow:0 12px 30px rgba(0,0,0,.08); }
.dish-card-img {
    width:100%; height:200px; object-fit:cover; background:var(--warm);
    display:flex; align-items:center; justify-content:center; color:var(--muted); font-size:.8rem;
}
.dish-card-img img { width:100%; height:100%; object-fit:cover; }
.dish-card-body { padding:24px; }
.dish-card-body h3 { font-family:var(--font-display); font-size:1.4rem; font-weight:600; margin-bottom:4px; }
.dish-card-body .cat-tag { font-size:.65rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); }
.dish-card-footer { display:flex; justify-content:space-between; align-items:center; margin-top:16px; }
.dish-price { font-size:1.2rem; font-weight:700; color:var(--blue); }
.dish-desc { font-size:.82rem; color:var(--muted); line-height:1.5; margin-top:6px; }
.dish-badges { display:flex; gap:4px; flex-wrap:wrap; }
.badge {
    display:inline-block; padding:2px 8px; border-radius:4px;
    font-size:.65rem; font-weight:700; letter-spacing:.5px;
    background:rgba(27,58,92,.08); color:var(--blue);
}

/* ═══════════════════════════════════════
   FORMS
   ═══════════════════════════════════════ */
.form-stack { display:flex; flex-direction:column; gap:14px; }
.form-stack input, .form-stack textarea, .form-stack select {
    width:100%; padding:14px 18px; border:1px solid rgba(0,0,0,.1);
    border-radius:var(--radius); font-size:.95rem; font-family:var(--font-body);
    background:var(--white); transition: border-color .3s;
}
.form-stack input:focus, .form-stack textarea:focus { outline:none; border-color:var(--blue); }

/* ═══════════════════════════════════════
   LEGAL
   ═══════════════════════════════════════ */
.legal-body { white-space:pre-wrap; font-size:1rem; line-height:2; color:var(--muted); margin-top:20px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { padding:60px 0; background:var(--dark); color:rgba(255,255,255,.8); }
.footer-grid { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; }
.footer h4 { font-family:var(--font-display); font-size:1.4rem; font-weight:600; color:var(--white); }
.footer-muted { font-size:.8rem; color:rgba(255,255,255,.4); }
.footer-links { display:flex; gap:24px; }
.footer-links a { font-size:.8rem; color:rgba(255,255,255,.5); transition:color .3s; }
.footer-links a:hover { color:var(--white); }

/* ═══════════════════════════════════════
   COOKIE BAR
   ═══════════════════════════════════════ */
.cookie-bar {
    position:fixed; bottom:0; left:0; right:0; z-index:1000;
    background:var(--dark); color:var(--white); padding:16px 0;
    animation: slideUp .6s ease;
}
@keyframes slideUp { from { transform:translateY(100%); } to { transform:translateY(0); } }
.cookie-inner {
    max-width:var(--max-w); margin:0 auto; padding:0 24px;
    display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.cookie-inner p { font-size:.85rem; opacity:.7; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width:768px) {
    .nav-links { display:none; }
    .nav-cta { display:none; }
    .welcome-grid { grid-template-columns:1fr; gap:30px; }
    .menu-grid { grid-template-columns:1fr; }
    .footer-grid { flex-direction:column; text-align:center; }
    .footer-links { justify-content:center; }
    .cookie-inner { flex-direction:column; text-align:center; }
    .section { padding:60px 0; }
}

/* ═══ CUSTOM CALENDAR ═══ */
.calendar-input-wrap { position:relative; width:100%; margin-bottom:12px; }
.calendar-card {
    position:absolute; top:calc(100% + 5px); left:0; right:0;
    width:320px; margin:0 auto; background:rgba(255,255,255,.98);
    backdrop-filter:blur(20px); border-radius:16px;
    box-shadow:0 10px 40px rgba(0,0,0,0.1); padding:24px;
    z-index:9999; border:1px solid rgba(0,0,0,.05);
    user-select:none; animation: calPop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes calPop { from { opacity:0; transform:translateY(-10px) scale(0.98); } to { opacity:1; transform:translateY(0) scale(1); } }

.cal-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.cal-head span { font-weight:600; color:#00BCD4; font-size:1.1rem; letter-spacing:-0.5px; }
.cal-btn { 
    background:none; border:none; width:32px; height:32px; 
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; color:#00BCD4; border-radius:50%;
    transition:background 0.2s;
}
.cal-btn:hover { background:rgba(0,188,212,0.05); }

.cal-grid { display:grid; grid-template-columns:repeat(7, 1fr); gap:4px; text-align:center; }
.cal-day-label { font-size:.7rem; color: #999; font-weight:500; padding:8px 0; text-transform:none; }
.cal-day {
    padding:10px 0; font-size:.9rem; border-radius:8px; cursor:pointer;
    transition:all 0.2s; position:relative; color:#444;
}
.cal-day:hover:not(.empty):not(.past) { background:rgba(0,188,212,0.1); color:#00BCD4; }
.cal-day.today { font-weight:700; color:#00BCD4; }
.cal-day.selected { background:#00BCD4 !important; color:#fff !important; font-weight:600; }
.cal-day.empty { cursor:default; }
.cal-day.past { opacity:0.1; cursor:not-allowed; }


/* ═══ VACATION MODAL ═══ */
.vacation-modal {
    position: fixed; inset:0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none; align-items:center; justify-content:center;
    padding: 20px;
    opacity:0; pointer-events:none; transition: opacity 0.4s ease;
}
.vacation-modal.active { display:flex; opacity:1; pointer-events:all; }

.vacation-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    padding: 60px 40px;
    width: 100%; max-width: 500px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    animation: vacPop 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
@keyframes vacPop { from { opacity:0; transform: scale(0.9) translateY(20px); } to { opacity:1; transform: scale(1) translateY(0); } }

.vac-icon { font-size:4rem; margin-bottom:24px; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.vacation-glass h2 { font-size:2.2rem; font-weight:800; color:var(--primary); margin-bottom:15px; }
.vacation-glass p { font-size:1.15rem; line-height:1.6; opacity:.85; margin-bottom:35px; }

.vacation-glass .btn { padding:16px 40px; font-weight:700; letter-spacing:1px; }

/* ═══ GDPR COOKIE BAR ═══ */
.cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 15px;
    animation: slideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.cookie-bar-content {
    max-width: 1200px; margin: 0 auto;
    padding: 20px 30px; border-radius: 24px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-bar-layout {
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.cookie-text-area { flex: 1; text-align: left; }
.cookie-header-mini { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; color: var(--blue); }
.cookie-header-mini i { font-size: 1.1rem; }
.cookie-text-area p { font-size: 0.85rem; opacity: 0.7; line-height: 1.4; margin: 0; }

.cookie-actions-bar { display: flex; align-items: center; gap: 12px; white-space:nowrap; }
.cookie-bar .btn.outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-bar .btn.outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-link { 
    background:none; border:none; text-decoration: underline; 
    font-size: 0.85rem; color: var(--muted); cursor: pointer; padding: 5px 10px;
}

/* Settings View (Expanded) */
.cookie-header { margin-bottom:20px; text-align: center; }
.cookie-header i { color:var(--primary); }
.cookie-header h2 { font-weight:800; color:var(--blue); }

.cookie-actions { display:flex; flex-direction:column; gap:12px; align-items:center; max-width: 300px; margin: 0 auto; }
.cookie-actions .btn { width:100%; }

.btn-text {
    background:none; border:none; color:var(--muted);
    font-size:.85rem; font-weight:600; cursor:pointer;
    padding:10px; transition: color .2s;
}
.btn-text:hover { color:var(--blue); }

.cookie-categories { text-align:left; margin:20px 0; display:flex; flex-direction:column; gap:12px; }
.cookie-cat-item {
    padding:12px 20px; background:rgba(0,0,0,0.03); border-radius:16px;
    display:flex; align-items:center; justify-content:space-between;
}
.cat-info strong { display:block; font-size:.9rem; color:var(--blue); }
.cat-info span { font-size:.7rem; opacity:.6; }

.cookie-footer { margin-top:15px; font-size:.7rem; opacity:.4; text-align: center; }
.cookie-footer a { cursor:pointer; }

/* Persistent Trigger */
.cookie-trigger {
    position:fixed; bottom:24px; left:24px;
    width:40px; height:40px; background:var(--blue); color:#fff;
    border-radius:50%; display:none; align-items:center; justify-content:center;
    cursor:pointer; z-index:999; box-shadow:0 10px 25px rgba(27,58,92,0.3);
}

@media (max-width: 900px) {
    .cookie-bar-layout { flex-direction: column; gap: 20px; text-align: center; }
    .cookie-text-area { text-align: center; }
    .cookie-header-mini { justify-content: center; }
    .cookie-actions-bar { flex-wrap: wrap; justify-content: center; }
}

/* ═══════════════════════════════════════
   TOAST NOTIFICATION (RESTORED)
   ═══════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    z-index: 10000;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.toast.active {
    bottom: 40px;
    opacity: 1;
}

.toast.out {
    bottom: -100px;
    opacity: 0;
}

/* ═══════════════════════════════════════
   MODERN RESERVATION STEPPER (CentralPlanner style)
   ═══════════════════════════════════════ */
.res-stepper-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.res-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    padding: 30px;
    transition: all 0.4s ease;
}

.res-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.res-step-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
}

/* Person Selector */
.person-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-circle:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.person-input-wrap input {
    width: 60px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
    background: none;
    color: var(--blue);
}

.person-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .5;
}

/* Modern Calendar Grid */
.calendar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.calendar-nav button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--blue);
    opacity: .6;
    transition: opacity .2s;
}

.calendar-nav button:hover { opacity: 1; }

.calendar-grid-modern {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.cal-modern-head {
    padding: 15px 0;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    opacity: .4;
}

.cal-modern-day {
    padding: 20px 5px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.1rem;
    position: relative;
    color: var(--dark);
}

.cal-modern-day:hover:not(.empty):not(.past) {
    background: rgba(27,58,92,0.03);
    color: var(--blue);
}

.cal-modern-day.selected {
    background: var(--blue);
    color: #fff !important;
}

.cal-modern-day.past {
    opacity: .15;
    cursor: not-allowed;
}

.cal-modern-day.empty { cursor: default; }

.cal-modern-day.today::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* Area & Time Layout */
.res-area-time-split {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.area-tab-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-tab {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    background: #fdfdfd;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: .95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.area-tab:hover { background: #f8f8f8; }
.area-tab.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.time-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.time-slot {
    padding: 15px 10px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    font-size: .9rem;
    transition: all 0.2s;
}

.time-slot:hover:not(.disabled) {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.time-slot.disabled {
    opacity: .2;
    cursor: not-allowed;
    background: #f9f9f9;
}

.time-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-nav button {
    background: none;
    border: none;
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
    cursor: pointer;
    opacity: .6;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Overlay & Contact Modal */
.res-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27,58,92,0.4);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn .3s ease;
}

.res-modal {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

.close-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: .3;
}

@media (max-width: 900px) {
    .res-area-time-split {
        grid-template-columns: 1fr;
    }
    .time-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    .res-step-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .time-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

