:root{
--bg: #0f261f;         /* deep green */
--card: #222426;       /* card dark */
--muted: #8b9a95;
--accent: #13b8b0;     /* turquoise */
--accent-2: #0db3a9;
--panel: #1b1f1f;
--glass: rgba(255,255,255,0.02);
--radius: 12px;
--max-width: 1200px;
--container-pad: 20px;
--text: #d9e6e2;
}

* { box-sizing: border-box; }
  html,body { height:100%; margin:0; font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; background: var(--bg); color:var(--text); }

/* Container */
.container { width:100%; max-width:var(--max-width); margin:0 auto; padding:0 var(--container-pad); }

/* Header */
.site-header { background: rgba(0,0,0,0.15); border-bottom: 1px solid rgba(255,255,255,0.03); }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:18px 0; }
.brand { font-weight:700; font-size:1.15rem; color:var(--text); }
.site-nav a { color: var(--muted); text-decoration:none; margin-left:18px; font-size:0.95rem; }
.site-nav a.active { color: white; text-decoration:underline; }

/* Hero */
.hero { text-align:center; padding:44px 0 10px; }
.hero h1 { margin:0; font-size:1.9rem; color:var(--text); }
.subtitle { margin:8px 0 18px; color:var(--muted); }

/* Booking layout */
.booking-layout { display:grid; gap:24px; grid-template-columns: 1fr 320px; padding-bottom:56px; align-items:start; }

/* Cards */
.card { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.05)); border-radius:var(--radius); padding:22px; box-shadow: 0 8px 20px rgba(0,0,0,0.6); border:1px solid rgba(255,255,255,0.02); }
.form-card { min-height: 520px; }
.summary-card { position: sticky; top: 96px; height:fit-content; }

/* Progress top */
.progress-top { margin-bottom:14px; position:relative; }
.step-bubbles { display:flex; gap:24px; justify-content:space-around; margin-bottom:6px; }
.bubble { width:36px; height:36px; border-radius:50%; background:#23312b; display:flex; align-items:center; justify-content:center; color:var(--muted); font-weight:700; box-shadow: inset 0 -3px rgba(0,0,0,0.4); }
.bubble.active { background:var(--accent); color:#042824; box-shadow:0 6px 20px rgba(10,10,10,0.45); }
.step-labels { display:flex; gap:14px; justify-content:space-around; color:var(--muted); font-size:0.9rem; }
.step-labels span { opacity:0.7; }
.step-labels span.active { color: var(--text); font-weight:600; opacity:1; }

/* progress line under bubbles */
.progress-line { height:4px; background: rgba(255,255,255,0.03); border-radius:4px; margin-top:16px; position:relative; overflow:hidden; }
.progress-fill { height:100%; background:linear-gradient(90deg,var(--accent), var(--accent-2)); width:0%; transition:width .35s ease; }

/* Form styling */
form h2 { margin:0 0 6px; color:var(--text); font-size:1.1rem; text-align:center; }
.muted { color:var(--muted); font-size:0.92rem; text-align:center; margin-bottom:14px; }

label { display:block; margin:12px 0 6px; color:var(--muted); font-size:0.85rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], select, textarea {
width:100%;
padding:12px 14px;
border-radius:8px;
border:1px solid rgba(255,255,255,0.04);
background: rgba(10,10,10,0.12);
color:var(--text);
outline:none;
}
textarea { resize:vertical; min-height:70px; }

/* form steps */
.form-step { display:none; animation:fadeIn .35s ease both; }
.form-step.active { display:block; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* Confirm box */
.confirm-box { background: var(--panel); padding:14px; border-radius:8px; color:var(--muted); display:flex; flex-direction:column; gap:8px; margin-bottom:12px; }
.confirm-box div { display:flex; justify-content:space-between; color:var(--text); }

/* Buttons */
.form-actions { display:flex; justify-content:space-between; gap:12px; margin-top:14px; }
.btn { padding:10px 18px; border-radius:10px; border:0; cursor:pointer; font-weight:600; }
.btn-primary { background: linear-gradient(180deg,var(--accent), var(--accent-2)); color:#042824; }
.btn-secondary { background:transparent; border:1px solid rgba(255,255,255,0.06); color:var(--muted); }
.btn-confirm { background: linear-gradient(180deg,#0db3a9,#069787); color:#fff; }

/* Form message */
.form-message { margin-top:12px; padding:12px 14px; border-radius:8px; color:var(--text); background: rgba(13,179,176,0.08); display:none; }

/* Summary card */
.summary-card h3 { margin:0 0 12px; color:var(--text); }
.summary-row { display:flex; justify-content:space-between; padding:10px 8px; border-bottom:1px solid rgba(255,255,255,0.02); color:var(--muted); }
.total-row { font-weight:700; color:var(--text); font-size:1.05rem; padding-top:14px; }
.small { font-size:0.85rem; color:var(--muted); }

/* Footer */
.site-footer { padding:18px 0; text-align:center; border-top:1px solid rgba(255,255,255,0.02); color:var(--muted); }

/* Responsive */
@media (max-width: 980px) {
.booking-layout { grid-template-columns: 1fr; }
.summary-card { position: static; order: 2; margin-top:12px; }
.form-card { order: 1; }
.step-bubbles { gap:12px; }
.step-labels { display:flex; gap:14px; justify-content:space-around; color:var(--muted); font-size:0.6rem; }
}
@media (max-width:420px){
.brand { font-size:1rem; }
.hero h1 { font-size:1.4rem; }
.bubble { width:30px;height:30px;font-size:0.95rem; }
.step-labels { font-size:0.75rem; gap:8px; }
.form-actions { flex-direction:column-reverse; }
.btn { width:100%; }
}
::selection { background: rgba(13,179,176); }
::placeholder { color: rgba(255,255,255,0.25); }
::webkit-input-placeholder{ color: rgba(255,255,255,); }
::moz-placeholder{ color: rgba(255,255,255,0.25); }
::ms-input-placeholder{ color: rgba(255,255,255,0.25); }

::backdrop{background:rgba(0,0,0,0.6)}
/* end of stylesheet */
/* Time modal */
.time-modal { position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:2000; }
.time-modal[aria-hidden="false"] { display:flex; }
.time-modal__backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.45); }
.time-modal__panel { position:relative; background:linear-gradient(180deg, rgb(12 38 39), #000000); padding:18px; border-radius:12px; width:320px; box-shadow:0 12px 40px rgba(0,0,0,0.6); border:1px solid rgba(255,255,255,0.02); z-index:2; color:var(--text); }
.time-controls select { padding:10px 12px; border-radius:8px; background: rgba(10,10,10,0.12); color:var(--text); border:1px solid rgba(255,255,255,0.03); }

/* Overlay on success (Book Another) */
.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background: rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1200;
  padding:20px;
}
.form-overlay .panel {
  background: #042824;
  color: #e6fff9;
  padding:22px;
  border-radius:10px;
  text-align:center;
  width:100%;
  max-width:480px;
}
.form-overlay .panel .actions { margin-top:14px; display:flex; gap:10px; justify-content:center; }
