/* ============================================
   Inflated Expectations — Design System
   Color Palette:
     Primary (teal):   #0D5C63
     Accent (coral):   #FF6B6B
     Cream bg:         #FFF8F0
     Charcoal text:    #2D3436
     Sage:             #A8D5BA
     White:            #FFFFFF
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2D3436;
  background: #FFF8F0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: #0D5C63; text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1 {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #2D3436;
}
h2 {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2D3436;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2D3436;
}
h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2D3436;
}
p {
  margin-bottom: 0.75rem;
  font-weight: 400;
}
small {
  font-size: 0.875rem;
  color: #636E72;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.grid { display: grid; gap: 1.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-primary {
  background: #0D5C63;
  color: #fff;
  border-color: #0D5C63;
}
.btn-primary:hover { background: #094B51; border-color: #094B51; }

.btn-secondary {
  background: transparent;
  color: #0D5C63;
  border-color: #0D5C63;
}
.btn-secondary:hover { background: rgba(13, 92, 99, 0.06); }

.btn-accent {
  background: #FF6B6B;
  color: #fff;
  border-color: #FF6B6B;
}
.btn-accent:hover { background: #E85D5D; border-color: #E85D5D; }

.btn-danger {
  background: #E74C3C;
  color: #fff;
  border-color: #E74C3C;
}
.btn-danger:hover { background: #C0392B; border-color: #C0392B; }

.btn-success {
  background: #27AE60;
  color: #fff;
  border-color: #27AE60;
}
.btn-success:hover { background: #219A52; border-color: #219A52; }

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
  border-radius: 10px;
}

.btn-block { width: 100%; }

/* --- Cards --- */
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(45, 52, 54, 0.06), 0 1px 3px rgba(45, 52, 54, 0.04);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(45, 52, 54, 0.1), 0 2px 6px rgba(45, 52, 54, 0.06);
}
.card-body { padding: 1.5rem; }

/* --- Forms --- */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: #2D3436;
}
.form-group .hint {
  font-size: 0.8rem;
  color: #636E72;
  margin-top: 0.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid #DFE6E9;
  border-radius: 8px;
  background: #fff;
  color: #2D3436;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #0D5C63;
  box-shadow: 0 0 0 3px rgba(13, 92, 99, 0.12);
}
input.invalid, select.invalid, textarea.invalid {
  border-color: #E74C3C;
}
input.invalid:focus, select.invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}
.field-error {
  color: #E74C3C;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23636E72' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

textarea {
  resize: vertical;
  min-height: 5rem;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.35rem;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  cursor: pointer;
}
.radio-group input[type="radio"] {
  width: auto;
  appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}

/* --- Alerts --- */
.alert {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}
.alert-success { background: #E8F8F0; border-color: #A8D5BA; color: #1B6B3A; }
.alert-error   { background: #FDF0EF; border-color: #F5C6C0; color: #922B21; }
.alert-warning { background: #FFF9E6; border-color: #F9E79F; color: #7D6608; }
.alert-info    { background: #E8F4F5; border-color: #AED6D9; color: #0D5C63; }

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-blue   { background: #E0F0F1; color: #0D5C63; }
.badge-orange { background: #FFE8E8; color: #C0392B; }
.badge-green  { background: #DEF2E6; color: #1B6B3A; }
.badge-red    { background: #FDE8E5; color: #922B21; }
.badge-yellow { background: #FFF9E6; color: #7D6608; }
.badge-gray   { background: #F0F0F0; color: #636E72; }
.badge-purple { background: #F0E6FF; color: #6C3483; }

/* Status badges for bookings */
.badge-pending   { background: #FFF9E6; color: #7D6608; }
.badge-confirmed { background: #DEF2E6; color: #1B6B3A; }
.badge-completed { background: #E0F0F1; color: #0D5C63; }
.badge-cancelled { background: #F0F0F0; color: #636E72; }

/* --- Loading Spinner --- */
.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
.spinner-dark {
  border-color: rgba(13, 92, 99, 0.15);
  border-top-color: #0D5C63;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 92, 99, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #2D3436;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}
.logo .bounce-icon {
  width: 2rem;
  height: 2rem;
  background: #0D5C63;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}
.logo:hover { text-decoration: none; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-nav a {
  font-weight: 500;
  color: #636E72;
  font-size: 0.9rem;
}
.header-nav a:hover { color: #0D5C63; text-decoration: none; }
.header-phone {
  font-weight: 700 !important;
  color: #2D3436 !important;
}
.header-cta {
  background: #FF6B6B;
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s;
}
.header-cta:hover { background: #E85D5D; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: #0D5C63;
  color: #fff;
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative shapes - circles and organic blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -40px;
  width: 380px;
  height: 380px;
  background: rgba(168, 213, 186, 0.12);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: 15%;
  width: 280px;
  height: 280px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 50%;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 480px;
}
.hero .btn {
  font-size: 1.05rem;
  padding: 0.95rem 2rem;
}

/* --- Hero decorative panel --- */
.hero-decor {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-decor .decor-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.hero-decor .decor-circle:nth-child(1) {
  width: 240px;
  height: 240px;
  background: #A8D5BA;
  top: 10%;
  right: 10%;
  animation: drift 8s ease-in-out infinite;
}
.hero-decor .decor-circle:nth-child(2) {
  width: 160px;
  height: 160px;
  background: #FF6B6B;
  bottom: 15%;
  right: 30%;
  animation: drift 6s ease-in-out infinite reverse;
}
.hero-decor .decor-circle:nth-child(3) {
  width: 100px;
  height: 100px;
  background: #FFF8F0;
  top: 30%;
  right: 45%;
  animation: drift 10s ease-in-out infinite;
}
.hero-decor .decor-circle:nth-child(4) {
  width: 60px;
  height: 60px;
  background: #A8D5BA;
  bottom: 30%;
  right: 5%;
  animation: drift 7s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(8px, -12px); }
  66% { transform: translate(-6px, 8px); }
}

/* Legacy hero shapes (kept for book.html etc.) */
.hero-shapes {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  z-index: 1;
  opacity: 0.2;
}
.hero-shapes .shape {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}
.hero-shapes .shape:nth-child(1) { background: #A8D5BA; animation-delay: 0s; }
.hero-shapes .shape:nth-child(2) { background: #FF6B6B; animation-delay: 0.5s; width: 30px; height: 30px; }
.hero-shapes .shape:nth-child(3) { background: #FFF8F0; animation-delay: 1s; width: 50px; height: 50px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid rgba(13, 92, 99, 0.06);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #636E72;
}
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E8F4F5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #0D5C63;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   Section Titles
   ============================================ */
.section {
  padding: 4.5rem 0;
}
.section-alt {
  background: #fff;
}
.section-title {
  margin-bottom: 2.5rem;
}
.section-title h2 {
  margin-bottom: 0.5rem;
}
.section-title p {
  color: #636E72;
  max-width: 520px;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.6;
}
.section-title.centered {
  text-align: center;
}
.section-title.centered p {
  margin: 0 auto;
}

/* ============================================
   Unit Cards Grid
   ============================================ */
.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.unit-card {
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.unit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 52, 54, 0.12), 0 4px 8px rgba(45, 52, 54, 0.06);
}

.unit-card .unit-image {
  height: 10px;
  display: block;
  position: relative;
  font-size: 0;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}
.unit-card .unit-image .category-float {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 14px 0 8px 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
}

.unit-card .card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.unit-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.unit-card .unit-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  color: #636E72;
  padding: 0.75rem 0;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}
.unit-card .unit-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.unit-card .unit-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0D5C63;
  margin: 0.75rem 0;
  letter-spacing: -0.01em;
}
.unit-card .unit-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #636E72;
}

/* Category color bands */
.cat-standard    { background: #0D5C63; }
.cat-combo       { background: #FF6B6B; }
.cat-water       { background: #2980B9; }
.cat-interactive { background: #D4A039; }
.cat-glow        { background: #8E44AD; }
.cat-default     { background: #636E72; }

/* --- Availability Mini Calendar --- */
.avail-cal {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: #FAFAF8;
  border: 1px solid #E8E6E1;
  border-radius: 10px;
}
.mc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.mc-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: #2D3436;
}
.mc-nav {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #0D5C63;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
}
.mc-nav:hover { background: #E8F4F5; }
.mc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}
.mc-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #B2BEC3;
  padding: 0.15rem 0;
  text-transform: uppercase;
}
.mc-day {
  font-size: 0.75rem;
  padding: 0.3rem 0;
  border-radius: 6px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
}
.mc-empty { visibility: hidden; }
.mc-past {
  color: #DFE6E9;
}
.mc-booked {
  background: #FEE2E2;
  color: #B91C1C;
  font-weight: 600;
  text-decoration: line-through;
}
.mc-open {
  background: #DCFCE7;
  color: #166534;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.mc-open:hover {
  background: #A8D5BA;
  transform: scale(1.15);
  text-decoration: none;
}
.mc-today {
  box-shadow: inset 0 0 0 2px #0D5C63;
}
.mc-legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: #636E72;
}
.mc-leg-open, .mc-leg-booked {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 0.2rem;
}
.mc-leg-open { background: #DCFCE7; border: 1px solid #A8D5BA; }
.mc-leg-booked { background: #FEE2E2; border: 1px solid #FECACA; }

.avail-toggle {
  margin-top: 0.5rem;
}

/* Legacy category classes from old data */
.cat-bounce-house   { background: #0D5C63; }
.cat-combo          { background: #FF6B6B; }
.cat-water-slide    { background: #2980B9; }
.cat-obstacle       { background: #D4A039; }
.cat-interactive    { background: #8E44AD; }
.cat-toddler        { background: #27AE60; }

/* ============================================
   How It Works — Timeline Flow
   ============================================ */
.how-it-works {
  background: #fff;
}
.flow-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 2rem 0;
}
.flow-node {
  flex: 1;
  max-width: 260px;
  text-align: center;
  position: relative;
  padding: 0 1.5rem;
}
.flow-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0D5C63;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}
.flow-node h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.flow-node p {
  font-size: 0.9rem;
  color: #636E72;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}
/* Connecting line */
.flow-connector {
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 2px;
  background: #DFE6E9;
  z-index: 1;
}
.flow-node:last-child .flow-connector { display: none; }

/* Legacy steps-grid (kept for compatibility) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.step-item .step-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: #E8F4F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}
.step-item .step-number {
  display: inline-block;
  background: #0D5C63;
  color: #fff;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
}
.step-item h3 { margin-bottom: 0.4rem; }
.step-item p { color: #636E72; font-size: 0.9rem; }

/* ============================================
   About / Why Us
   ============================================ */
.about-section {
  padding: 4.5rem 0;
}
.about-content {
  max-width: 680px;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2D3436;
  font-weight: 300;
}
.about-content p strong {
  font-weight: 600;
}
.about-points {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #2D3436;
  line-height: 1.5;
}
.about-point-marker {
  width: 8px;
  height: 8px;
  background: #FF6B6B;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* ============================================
   Service Area
   ============================================ */
.service-area {
  background: #fff;
}
.service-area-inner {
  max-width: 680px;
}
.service-area-inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #636E72;
  font-weight: 300;
}
.service-area-inner p strong {
  color: #2D3436;
  font-weight: 600;
}

/* Legacy area tags (compatibility) */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.area-tag {
  background: rgba(13, 92, 99, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0D5C63;
}
.delivery-note {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #0D5C63;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
  max-width: 680px;
  display: grid;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid #E8E8E8;
}
.faq-item:first-child {
  border-top: 1px solid #E8E8E8;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #2D3436;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  line-height: 1.4;
  gap: 1rem;
}
.faq-question:hover {
  color: #0D5C63;
}
.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.faq-toggle::before {
  content: '+';
  font-size: 1.1rem;
  font-weight: 600;
  color: #636E72;
  line-height: 1;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: #0D5C63;
}
.faq-item.open .faq-toggle::before {
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: #636E72;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #2D3436;
  color: #B2BEC3;
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 800;
}
.footer-brand p {
  font-size: 0.9rem;
  color: #B2BEC3;
  margin-bottom: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
}
.footer-links h4 {
  color: #fff;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
  color: #B2BEC3;
  font-size: 0.9rem;
  font-weight: 300;
}
.footer-links a:hover { color: #fff; }
.footer-links li:not(:has(a)) {
  color: #B2BEC3;
  font-size: 0.9rem;
  font-weight: 300;
}
.licensed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(168, 213, 186, 0.15);
  color: #A8D5BA;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: #636E72;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================
   Booking Page Layout
   ============================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
}
.booking-main { min-width: 0; }
.booking-sidebar {
  position: sticky;
  top: 5rem;
}

/* --- Unit Summary --- */
.unit-summary {
  margin-bottom: 1.5rem;
}
.unit-summary h2 { margin-bottom: 0.25rem; }
.unit-summary .unit-desc {
  color: #636E72;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.unit-summary .unit-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.unit-summary .unit-specs span {
  background: #F0F0F0;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}
.unit-prices {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
}
.unit-prices .price-item {
  font-size: 0.9rem;
  color: #636E72;
}
.unit-prices .price-item strong {
  font-size: 1.1rem;
  color: #2D3436;
  display: block;
}

/* --- Form Steps --- */
.form-step {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(45, 52, 54, 0.04);
}
.form-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #F0F0F0;
}
.step-badge {
  width: 2rem;
  height: 2rem;
  background: #0D5C63;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* --- Calendar Widget --- */
.calendar {
  user-select: none;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-header h3 {
  font-size: 1.05rem;
}
.calendar-nav {
  background: none;
  border: 1px solid #DFE6E9;
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  font-size: 1rem;
  color: #636E72;
  transition: background 0.15s;
  font-family: inherit;
}
.calendar-nav:hover { background: #F0F0F0; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}
.calendar-grid .day-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #B2BEC3;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.calendar-grid .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 500;
  position: relative;
}
.calendar-grid .day:hover:not(.disabled):not(.unavailable) {
  background: #E8F4F5;
  color: #0D5C63;
}
.calendar-grid .day.today {
  border: 2px solid #0D5C63;
}
.calendar-grid .day.selected {
  background: #0D5C63;
  color: #fff;
}
.calendar-grid .day.disabled {
  color: #DFE6E9;
  cursor: not-allowed;
}
.calendar-grid .day.unavailable {
  color: #DFE6E9;
  cursor: not-allowed;
  text-decoration: line-through;
  background: #FDF0EF;
}
.calendar-grid .day.empty {
  cursor: default;
}
.calendar-grid .day.weekend {
  color: #FF6B6B;
}
.calendar-grid .day.weekend.selected {
  color: #fff;
  background: #FF6B6B;
}

.date-price-note {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: #E8F4F5;
  border-radius: 8px;
  font-size: 0.9rem;
}
.date-price-note strong {
  color: #0D5C63;
}

/* --- Order Summary --- */
.order-summary {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(45, 52, 54, 0.04);
  border: 2px solid #E8E8E8;
}
.order-summary h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #F0F0F0;
}
.order-line {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}
.order-line.subtle {
  color: #636E72;
  font-size: 0.9rem;
}
.order-divider {
  border: none;
  border-top: 1px solid #E8E8E8;
  margin: 0.75rem 0;
}
.order-total {
  font-size: 1.15rem;
  font-weight: 700;
}
.order-deposit {
  background: #E8F4F5;
  margin: 0.75rem -1.5rem -1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 0 0 12px 12px;
}
.order-deposit .order-line { font-weight: 600; color: #0D5C63; }
.order-deposit .order-line.balance { font-weight: 400; color: #636E72; font-size: 0.85rem; }

/* ============================================
   Success Page
   ============================================ */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.success-card {
  max-width: 600px;
  width: 100%;
  text-align: center;
}
.success-card .card-body { padding: 2.5rem 2rem; }

.success-icon {
  width: 5rem;
  height: 5rem;
  background: #DEF2E6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-icon::after {
  content: '';
  display: block;
  width: 2rem;
  height: 3rem;
  border: 4px solid #27AE60;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-4px);
}
.success-ref {
  background: #F0F0F0;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
  margin: 0.75rem 0 1.5rem;
}

.whats-next {
  text-align: left;
  margin: 2rem 0;
}
.whats-next h3 { margin-bottom: 0.75rem; }
.whats-next li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #636E72;
}
.whats-next li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #0D5C63;
  border-radius: 50%;
}

/* ============================================
   Waiver Page
   ============================================ */
.waiver-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.waiver-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(45, 52, 54, 0.04);
}
.waiver-content h2 { margin-bottom: 0.25rem; }
.waiver-content h4 { margin: 1.25rem 0 0.5rem; }
.waiver-text {
  background: #FFF8F0;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 1rem;
}
.safety-rules {
  columns: 2;
  column-gap: 2rem;
  margin: 0.75rem 0;
}
.safety-rules li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  break-inside: avoid;
}
.safety-rules li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.4rem;
  height: 0.4rem;
  background: #E74C3C;
  border-radius: 50%;
}

/* --- Participants --- */
.participant-row {
  display: grid;
  grid-template-columns: 1fr 80px 40px;
  gap: 0.5rem;
  align-items: end;
  margin-bottom: 0.5rem;
}
.participant-row .btn-remove {
  background: none;
  border: 1px solid #DFE6E9;
  border-radius: 6px;
  color: #E74C3C;
  font-size: 1.2rem;
  cursor: pointer;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-family: inherit;
}
.participant-row .btn-remove:hover {
  background: #FDF0EF;
}

/* --- Signature Pad --- */
.signature-container {
  margin: 1rem 0;
}
.signature-pad-wrapper {
  border: 2px solid #DFE6E9;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.signature-pad-wrapper canvas {
  display: block;
  width: 100%;
  cursor: crosshair;
  touch-action: none;
}
.signature-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #B2BEC3;
  font-size: 0.9rem;
  pointer-events: none;
}
.signature-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

/* --- Agreement Checkbox --- */
.agreement-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #FFF9E6;
  border: 1px solid #F9E79F;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.agreement-check input[type="checkbox"] {
  width: auto;
  appearance: auto;
  -webkit-appearance: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
  cursor: pointer;
}
.agreement-check label {
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============================================
   Admin Dashboard
   ============================================ */

/* --- Login --- */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF8F0;
  padding: 1rem;
}
.login-card {
  max-width: 400px;
  width: 100%;
}
.login-card .card-body { padding: 2rem; }
.login-card h2 { text-align: center; margin-bottom: 0.5rem; }
.login-card p { text-align: center; color: #636E72; margin-bottom: 1.5rem; }

/* --- Admin Layout --- */
.admin-header {
  background: #2D3436;
  color: #fff;
  padding: 0.75rem 0;
}
.admin-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header .logo { color: #fff; }
.admin-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-user span { font-size: 0.9rem; color: #B2BEC3; }
.btn-logout {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}
.btn-logout:hover { background: rgba(255,255,255,0.2); }

/* --- Tabs --- */
.admin-tabs {
  background: #fff;
  border-bottom: 1px solid #E8E8E8;
}
.admin-tabs .container {
  display: flex;
  gap: 0;
}
.admin-tab {
  padding: 0.85rem 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: #636E72;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  font-family: inherit;
}
.admin-tab:hover { color: #2D3436; }
.admin-tab.active {
  color: #0D5C63;
  border-bottom-color: #0D5C63;
}

/* Alias .tab for compatibility */
.tab { composes: admin-tab; }
.tab.active { composes: admin-tab active; }

.admin-content {
  padding: 1.5rem 0 3rem;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* --- Stats Cards --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(45, 52, 54, 0.04);
}
.stat-card .stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #636E72;
  margin-bottom: 0.35rem;
}
.stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2D3436;
}

/* --- Bookings Table --- */
.table-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.filter-btns {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  background: #F0F0F0;
  border: 1px solid #E8E8E8;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 500;
  color: #636E72;
  transition: all 0.15s;
  font-family: inherit;
}
.filter-btn:hover { background: #E8E8E8; }
.filter-btn.active {
  background: #0D5C63;
  color: #fff;
  border-color: #0D5C63;
}
.month-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.month-nav span {
  font-weight: 600;
  min-width: 140px;
  text-align: center;
}

.table-wrap {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45, 52, 54, 0.04);
}
/* Alias admin-table for compatibility */
.admin-table { width: 100%; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  text-align: left;
  padding: 0.85rem 1rem;
  background: #FFF8F0;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #636E72;
  border-bottom: 1px solid #E8E8E8;
  white-space: nowrap;
}
.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #F0F0F0;
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #FEFCF9; }

.table-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #B2BEC3;
}

/* --- Booking Detail Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 52, 54, 0.5);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: #fff;
  border-radius: 14px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transform: translateY(20px);
  transition: transform 0.2s ease;
}
.modal-overlay.active .modal {
  transform: translateY(0);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #E8E8E8;
}
.modal-header h3 { margin: 0; }
.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #B2BEC3;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  font-family: inherit;
}
.modal-close:hover { color: #636E72; }
.modal-body { padding: 1.5rem; }
.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #E8E8E8;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.modal-content { padding: 1.5rem; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.detail-item label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #B2BEC3;
  margin-bottom: 0.2rem;
}
.detail-item span {
  font-size: 0.95rem;
}
.detail-section {
  margin-bottom: 1.5rem;
}
.detail-section h4 {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F0F0F0;
}

/* --- Admin Calendar --- */
.admin-calendar {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(45, 52, 54, 0.04);
}
.admin-calendar .calendar-grid .day {
  aspect-ratio: auto;
  min-height: 80px;
  padding: 0.35rem;
  align-items: flex-start;
  justify-content: flex-start;
  border: 1px solid #F0F0F0;
  border-radius: 4px;
  font-size: 0.8rem;
  flex-direction: column;
}
.admin-calendar .calendar-grid .day .day-number {
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.admin-calendar .calendar-grid .day .booking-dot {
  width: 100%;
  padding: 0.15rem 0.3rem;
  border-radius: 3px;
  font-size: 0.65rem;
  margin-bottom: 0.1rem;
  color: #fff;
  background: #0D5C63;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-calendar .calendar-grid .day.blocked {
  background: #FDF0EF;
}
.admin-calendar .calendar-grid .day .block-mark {
  color: #E74C3C;
  font-weight: 700;
  font-size: 0.75rem;
}

/* --- Inventory Management --- */
.inventory-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.inventory-list {
  display: grid;
  gap: 0.75rem;
}
.inventory-item {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 8px rgba(45, 52, 54, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.inventory-item .item-info {
  flex: 1;
  min-width: 0;
}
.inventory-item .item-info h4 { margin-bottom: 0.2rem; }
.inventory-item .item-info p {
  font-size: 0.85rem;
  color: #636E72;
  margin: 0;
}
.inventory-item .item-actions {
  display: flex;
  gap: 0.5rem;
}
.inventory-item.inactive {
  opacity: 0.6;
}

/* --- Inline Edit Form --- */
.unit-edit-form {
  background: #FFF8F0;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 0.75rem;
}
.unit-edit-form .form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-sidebar {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-decor { display: none; }
  .hero { padding: 3.5rem 0 4rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero { padding: 3rem 0 3.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.05rem; }
  .hero-shapes { display: none; }

  .section { padding: 3rem 0; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flow-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-left: 2rem;
  }
  .flow-node {
    text-align: left;
    max-width: none;
    padding: 0 0 0 1rem;
  }
  .flow-dot {
    margin: 0 0 0.5rem 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .flow-connector { display: none; }

  .units-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .safety-rules {
    columns: 1;
  }

  .table-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .data-table {
    font-size: 0.8rem;
  }
  .data-table th,
  .data-table td {
    padding: 0.6rem 0.5rem;
  }

  .admin-tabs .container {
    overflow-x: auto;
  }

  .header-nav {
    gap: 0.75rem;
  }
  .header-nav .nav-desktop { display: none; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .participant-row {
    grid-template-columns: 1fr 70px 36px;
  }

  .unit-edit-form .form-row-3 {
    grid-template-columns: 1fr;
  }

  .admin-calendar .calendar-grid .day {
    min-height: 50px;
    font-size: 0.7rem;
  }

  .trust-items {
    gap: 1rem 2rem;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 0.95rem; }
  .btn-lg {
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }
  .form-step { padding: 1.25rem; }
  .order-summary { padding: 1rem; }
  .order-deposit {
    margin: 0.75rem -1rem -1rem;
    padding: 0.85rem 1rem;
  }
  .unit-prices {
    flex-direction: column;
    gap: 0.5rem;
  }
  .waiver-content { padding: 1.25rem; }
  .modal { margin: 0.5rem; }
  .modal-body { padding: 1rem; }

  .trust-items {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* --- Utility: no-scroll on body when modal is open --- */
body.modal-open { overflow: hidden; }

/* --- Print styles for waiver --- */
@media print {
  .site-header, .site-footer, .btn, .signature-actions { display: none; }
  .waiver-content { box-shadow: none; border: 1px solid #ccc; }
}
