/* ═══════════════════════════════════════════════════
   NATURA RIDE — Admin Panel CSS
   Dark green theme matching the main site
═══════════════════════════════════════════════════ */

:root {
  --bg-deep:     #030A05;
  --bg-dark:     #07100A;
  --bg-card:     #0C1E0F;
  --bg-card2:    #0F2414;
  --border:      rgba(57, 255, 130, 0.12);
  --border-h:    rgba(57, 255, 130, 0.30);
  --accent:      #39FF82;
  --accent-glow: rgba(57, 255, 130, 0.18);
  --accent-soft: rgba(57, 255, 130, 0.07);
  --text-white:  #F2F8F4;
  --text-muted:  #7A9B85;
  --text-faint:  #3A5A44;
  --font-display: 'Unbounded', sans-serif;
  --font-body:    'Onest', sans-serif;
  --sidebar-w: 240px;
  --topbar-h:  62px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --transition: 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Status colors */
  --c-new:       #FFB547;
  --c-contacted: #4EA8FF;
  --c-confirmed: #39FF82;
  --c-cancelled: #FF5757;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }
code { font-family: monospace; background: var(--accent-soft); padding: 2px 6px; border-radius: 4px; color: var(--accent); font-size: 0.85em; }


/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.admin-body {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-w);
  background: var(--bg-deep);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 200;
  transition: transform var(--transition);
}

.admin-main {
  flex: 1;
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── Sidebar ─── */
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 22px 20px;
  border-bottom: 1px solid var(--border);
}

.logo-leaf { color: var(--accent); font-size: 1.2rem; }
.logo-text  { color: var(--text-white); }
.logo-accent { color: var(--accent); }

.sidebar-nav {
  flex: 1;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}

.snav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.snav-item i { width: 16px; text-align: center; flex-shrink: 0; font-size: 0.85rem; }
.snav-item:hover { background: var(--accent-soft); color: var(--text-white); }
.snav-item.active { background: var(--accent-soft); color: var(--accent); }
.snav-item.active i { color: var(--accent); }

.snav-badge {
  margin-left: auto;
  background: var(--c-new);
  color: #1a0a00;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  min-width: 22px;
  text-align: center;
}

.sidebar-bottom {
  padding: 10px;
  border-top: 1px solid var(--border);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  margin-bottom: 4px;
}

.user-avatar {
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-info { display: flex; flex-direction: column; overflow: hidden; }
.user-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-role { font-size: 0.72rem; color: var(--text-muted); }

.logout-item { color: #FF5757 !important; }
.logout-item:hover { background: rgba(255,87,87,0.08) !important; }

/* ─── Topbar ─── */
.admin-topbar {
  height: var(--topbar-h);
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sidebar-toggle {
  display: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 6px;
  transition: color var(--transition);
}
.sidebar-toggle:hover { color: var(--accent); }

.topbar-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  flex: 1;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.topbar-link:hover { color: var(--accent); }


/* ════════════════════════════════════════
   FLASH MESSAGES
════════════════════════════════════════ */
.flash-container { padding: 16px 28px 0; display: flex; flex-direction: column; gap: 8px; }

.flash {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

.flash-success { background: rgba(57, 255, 130, 0.1); border: 1px solid rgba(57, 255, 130, 0.25); color: var(--accent); }
.flash-info    { background: rgba(78, 168, 255, 0.1); border: 1px solid rgba(78, 168, 255, 0.25); color: #4EA8FF; }
.flash-error, .flash-warning { background: rgba(255, 87, 87, 0.1); border: 1px solid rgba(255, 87, 87, 0.25); color: #FF5757; }

.flash-close {
  margin-left: auto;
  color: inherit;
  opacity: 0.6;
  font-size: 1.1rem;
  line-height: 1;
}
.flash-close:hover { opacity: 1; }


/* ════════════════════════════════════════
   STATS CARDS
════════════════════════════════════════ */
.stats-row {
  display: flex;
  gap: 14px;
  padding: 24px 28px 0;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 120px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  cursor: pointer;
}

.stat-card:hover, .stat-card.active {
  border-color: var(--border-h);
  background: var(--accent-soft);
}

.stat-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.stat-icon.all       { background: rgba(120,120,120,0.15); color: var(--text-muted); }
.stat-icon.new       { background: rgba(255,181,71,0.15);  color: var(--c-new); }
.stat-icon.contacted { background: rgba(78,168,255,0.15);  color: var(--c-contacted); }
.stat-icon.confirmed { background: rgba(57,255,130,0.12);  color: var(--c-confirmed); }
.stat-icon.cancelled { background: rgba(255,87,87,0.12);   color: var(--c-cancelled); }

.stat-info { display: flex; flex-direction: column; }
.stat-count {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}
.stat-name { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }


/* ════════════════════════════════════════
   TABLE TOOLBAR
════════════════════════════════════════ */
.table-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px 14px;
  flex-wrap: wrap;
}

.search-form { display: flex; gap: 10px; flex: 1; min-width: 200px; }

.search-wrap {
  position: relative;
  flex: 1;
}

.search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  font-size: 0.85rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 36px 9px 36px;
  color: var(--text-white);
  font-size: 0.88rem;
  transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--border-h); }
.search-input::placeholder { color: var(--text-faint); }

.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.search-clear:hover { color: var(--accent); }

.search-btn {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white);
  transition: var(--transition);
  white-space: nowrap;
}
.search-btn:hover { border-color: var(--accent); color: var(--accent); }

.result-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}


/* ════════════════════════════════════════
   TABLE
════════════════════════════════════════ */
.table-wrap {
  padding: 0 28px 40px;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.admin-table thead th {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.admin-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.admin-table tbody tr:hover { background: var(--accent-soft); }
.booking-row.row-new { border-left: 3px solid var(--c-new); }

.admin-table td {
  padding: 13px 14px;
  font-size: 0.87rem;
  vertical-align: middle;
}

.td-id { font-family: var(--font-display); font-size: 0.75rem; color: var(--text-faint); }

.customer-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.customer-avatar {
  width: 34px; height: 34px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.customer-name { display: block; font-weight: 600; color: var(--text-white); }
.customer-email { display: block; font-size: 0.75rem; color: var(--text-muted); }

.phone-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-weight: 600;
  transition: color var(--transition);
}
.phone-link:hover { color: var(--text-white); }
.phone-link i { font-size: 0.8rem; }

.td-date { font-size: 0.82rem; color: var(--text-muted); }
.time-dim { font-size: 0.75rem; color: var(--text-faint); }

/* Status badge */
.status-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.status-new       { background: rgba(255,181,71,0.15);  color: var(--c-new);       border: 1px solid rgba(255,181,71,0.3); }
.status-contacted { background: rgba(78,168,255,0.15);  color: var(--c-contacted); border: 1px solid rgba(78,168,255,0.3); }
.status-confirmed { background: rgba(57,255,130,0.12);  color: var(--c-confirmed); border: 1px solid rgba(57,255,130,0.3); }
.status-cancelled { background: rgba(255,87,87,0.1);    color: var(--c-cancelled); border: 1px solid rgba(255,87,87,0.25); }

/* Inline status select */
.status-select {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  font-size: 0.82rem;
  color: var(--text-white);
  cursor: pointer;
  transition: border-color var(--transition);
}
.status-select:focus, .status-select:hover { border-color: var(--border-h); }

/* Action buttons */
.td-actions { display: flex; gap: 6px; align-items: center; }
.td-update form { display: inline; }

.action-btn {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}

.view-btn {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  color: var(--accent);
}
.view-btn:hover { background: var(--accent); color: var(--bg-deep); }

.delete-btn {
  background: rgba(255, 87, 87, 0.08);
  border: 1px solid rgba(255, 87, 87, 0.2);
  color: #FF5757;
}
.delete-btn:hover { background: #FF5757; color: #fff; }


/* ════════════════════════════════════════
   EMPTY STATE
════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 3rem;
  color: var(--text-faint);
  margin-bottom: 16px;
  display: block;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.empty-state p { font-size: 0.88rem; color: var(--text-faint); }


/* ════════════════════════════════════════
   MODAL
════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 5, 0.85);
  backdrop-filter: blur(8px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-h);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card2);
}

.modal-head h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.modal-close {
  width: 32px; height: 32px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }

.modal-body { padding: 24px; }

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.modal-item { display: flex; flex-direction: column; gap: 4px; }

.mi-label {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mi-label i { color: var(--accent); }

.mi-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-white);
}

.modal-message-wrap { margin-bottom: 20px; }
.modal-message {
  margin-top: 8px;
  font-size: 0.87rem;
  color: var(--text-muted);
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  min-height: 50px;
  line-height: 1.65;
}

.modal-update { border-top: 1px solid var(--border); padding-top: 18px; }
.modal-update h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.modal-update-row { margin-bottom: 10px; }

.modal-update .status-select { width: 100%; padding: 10px 12px; }

.modal-update textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-white);
  font-size: 0.87rem;
  resize: vertical;
  margin-bottom: 14px;
  transition: border-color var(--transition);
}
.modal-update textarea:focus { border-color: var(--border-h); }
.modal-update textarea::placeholder { color: var(--text-faint); }


/* ════════════════════════════════════════
   LOGIN PAGE
════════════════════════════════════════ */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.login-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.login-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.login-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(57,255,130,0.1) 0%, transparent 70%);
  top: -20%; left: -10%;
}

.login-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(57,255,130,0.07) 0%, transparent 70%);
  bottom: -10%; right: -5%;
}

.login-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,130,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,130,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.login-card {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 38px;
  width: 100%;
  max-width: 420px;
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.login-topbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 12px 20px;
}

/* Push button to right */
.login-topbar .topbar-actions {
    display: flex;
    justify-content: flex-end;
}

.login-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.login-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.login-form { display: flex; flex-direction: column; gap: 16px; }

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

.al-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.al-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.al-input-wrap i.fa-user,
.al-input-wrap i.fa-lock {
  position: absolute;
  left: 14px;
  color: var(--text-faint);
  font-size: 0.85rem;
  pointer-events: none;
}

.al-input-wrap input {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 42px;
  font-size: 0.92rem;
  color: var(--text-white);
  transition: border-color var(--transition);
}

.al-input-wrap input:focus { border-color: var(--border-h); }
.al-input-wrap input::placeholder { color: var(--text-faint); }

.toggle-pw {
  position: absolute;
  right: 12px;
  color: var(--text-faint);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.toggle-pw:hover { color: var(--accent); }

.al-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  margin-top: 4px;
}
.al-btn:hover { box-shadow: 0 6px 24px rgba(57,255,130,0.35); transform: translateY(-1px); }

.login-hint {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 18px;
  text-align: center;
}


/* ════════════════════════════════════════
   BOOKING PAGE (public)
════════════════════════════════════════ */
.booking-page {
  min-height: 100vh;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.booking-page-bg { position: absolute; inset: 0; pointer-events: none; }

.bp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.bp-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(57,255,130,0.1) 0%, transparent 70%);
  top: -10%; left: -10%;
}

.bp-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(57,255,130,0.07) 0%, transparent 70%);
  bottom: 0; right: -5%;
}

.bp-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,130,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,130,0.03) 1px, transparent 1px);
  background-size: 55px 55px;
}

.booking-page-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.bp-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.bp-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.bp-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Steps */
.bp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.bp-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
}

.step-num {
  width: 36px; height: 36px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.bp-step.active .step-num {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.step-connector {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin-left: 18px;
}

.step-text h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}

.step-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Contact strip */
.bp-contact-strip { }

.bp-contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.bp-call {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
  transition: var(--transition);
}

.bp-call i { color: var(--accent); }
.bp-call:hover { border-color: var(--border-h); transform: translateX(4px); }

/* Form card */
.bp-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.bp-form-head {
  background: var(--accent);
  padding: 22px 28px;
}

.bp-form-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 4px;
  color: var(--bg-deep);
}

.bp-form-logo .logo-leaf { color: var(--bg-deep); opacity: 0.7; }
.bp-form-logo .logo-text { color: var(--bg-deep); }
.bp-form-logo .logo-accent { color: var(--bg-deep); }

.bp-form-head p {
  font-size: 0.82rem;
  color: rgba(3,10,5,0.6);
}

.bp-form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bp-form-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.bp-section-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.bp-field { display: flex; flex-direction: column; gap: 6px; }
.bp-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.req { color: var(--accent); }
.optional { color: var(--text-faint); font-weight: 400; }

.bp-field-row { display: flex; flex-direction: column; gap: 14px; }
.bp-field-row.two-col { flex-direction: row; }
.bp-field-row.two-col .bp-field { flex: 1; }

.field-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.field-input-wrap i {
  position: absolute;
  left: 14px;
  color: var(--text-faint);
  font-size: 0.85rem;
  pointer-events: none;
  transition: color var(--transition);
}

.field-input-wrap input,
.field-input-wrap textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px 12px 40px;
  font-size: 0.9rem;
  color: var(--text-white);
  transition: border-color var(--transition);
}

.field-input-wrap:has(textarea) { align-items: flex-start; }
.field-input-wrap:has(textarea) i { top: 13px; }
.field-input-wrap textarea { resize: vertical; min-height: 80px; }

.field-input-wrap input::placeholder,
.field-input-wrap textarea::placeholder { color: var(--text-faint); }

.field-input-wrap input:focus,
.field-input-wrap textarea:focus { border-color: var(--border-h); }

.field-input-wrap:focus-within i { color: var(--accent); }

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

/* Checkbox */
.bp-consent {
  margin-bottom: 18px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-submit {
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.2s ease;
}
.btn-submit:hover { box-shadow: 0 6px 24px rgba(57,255,130,0.35); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }


/* ════════════════════════════════════════
   ADMIN MANAGE PAGES (admins.html)
════════════════════════════════════════ */
.admins-layout {
  padding: 24px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.add-admin-card, .admins-list-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.add-admin-card h3, .admins-list-card h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.add-admin-card h3 i,
.admins-list-card h3 i { color: var(--accent); }

.add-admin-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admins-table-wrap { overflow-x: auto; }
.admins-table-wrap .admin-table { min-width: 700px; }

.you-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
}


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .admin-main {
    margin-left: 0;
  }
  .sidebar-toggle {
    display: flex;
  }
  .booking-page-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bp-field-row.two-col {
    flex-direction: column;
  }
  .stats-row {
    flex-wrap: wrap;
  }
  .stat-card {
    min-width: calc(50% - 7px);
  }
}

@media (max-width: 480px) {
  .login-card { padding: 28px 22px; }
  .modal-grid { grid-template-columns: 1fr; }
  .table-wrap, .admins-table-wrap { padding: 0 16px 40px; }
  .stats-row { padding: 16px 16px 0; }
  .table-toolbar { padding: 14px 16px 10px; }
  .admin-topbar { padding: 0 16px; }
  .admins-layout { padding: 16px 16px 32px; }
}