/* ═══════════════════════════════════════════════════════════════
   CodeTechSolutions Consultation — Light Theme
   Palette: Teal #0F766E · Slate #102A43 · Gray #F5F7F9
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #F5F7F9;
  --bg-2:        #E9EEF2;
  --bg-card:     #FFFFFF;
  --bg-card-h:   #F0F9F8;
  --bg-input:    #FFFFFF;
  --primary:     #0F766E;
  --primary-h:   #0B5E58;
  --primary-l:   #5EEAD4;
  --header-bg:   #0F3D3E;
  --footer-bg:   #0B2E2F;
  --text:        #102A43;
  --text-2:      #334E68;
  --text-3:      #627D98;
  --border:      #E5E9EF;
  --border-h:    #B0BEC5;
  --divider:     #E2E8F0;
  --success:     #166534;
  --error:       #B91C1C;
  --warning:     #92400E;
  --shadow:      0 1px 3px rgba(15,23,42,.05);
  --shadow-lg:   0 4px 16px rgba(15,23,42,.08);
  --r:           8px;
  --r-lg:        12px;
}

html { font-size: 14px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #B0BEC5; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #90A4AE; }
::selection { background: rgba(15,118,110,.15); color: var(--text); }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-h); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--r); font-weight: 600; font-size: .875rem;
  border: none; cursor: pointer; transition: all .2s ease;
  font-family: inherit; line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn:active:not(:disabled) { transform: scale(.98); }

.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(15,118,110,.2); }
.btn-primary:hover:not(:disabled) { background: var(--primary-h); box-shadow: 0 4px 16px rgba(15,118,110,.3); transform: translateY(-1px); }

.btn-cyan { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(15,118,110,.15); }
.btn-cyan:hover:not(:disabled) { background: var(--primary-h); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--border-h); }
.btn-outline:hover:not(:disabled) { background: var(--bg-card-h); border-color: var(--primary); }

.btn-danger { background: #FEE2E2; color: var(--error); border: 1px solid #FECACA; }
.btn-danger:hover:not(:disabled) { background: #FCA5A5; color: #7F1D1D; }

.btn-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.btn-success:hover:not(:disabled) { background: #BBF7D0; }

.btn-secondary { background: #E2E8F0; color: var(--text); border: 1px solid #B0BEC5; }
.btn-secondary:hover:not(:disabled) { background: #CBD5E1; }

.btn-sm { padding: 6px 14px !important; font-size: .82rem !important; min-height: auto !important; }
.btn-lg { padding: 13px 28px; font-size: .95rem; }

/* ─── Fade-in ─── */
.step-content { animation: fadeUp .35s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Divider ─── */
.glow-divider { height: 1px; border: none; margin: 24px 0; background: var(--divider); }

/* ─── Inputs ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; margin-bottom: 7px; font-size: .78rem;
  font-weight: 600; color: var(--text-2); letter-spacing: .3px;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 16px; border-radius: var(--r);
  background: var(--bg-input); border: 1px solid var(--border);
  color: var(--text); font-family: inherit; font-size: .875rem;
  transition: border-color .25s, box-shadow .25s; outline: none;
}
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: var(--border-h); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,118,110,.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-select {
  appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23627D98' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-select option { background: var(--bg-card); }
.form-textarea { min-height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ─── Cards ─── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow); transition: border-color .25s;
}
.card:hover { border-color: var(--border-h); }
.card-glass {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-lg);
}

/* ─── Stat Card ─── */
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: all .25s; box-shadow: var(--shadow);
}
.stat-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.stat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.stat-icon.cyan  { background: #ECFEFF; color: #0F766E; }
.stat-icon.yellow { background: #FEF3C7; color: #92400E; }
.stat-icon.green { background: #DCFCE7; color: #166534; }
.stat-icon.red   { background: #FEE2E2; color: #B91C1C; }
.stat-value { font-size: 1.5rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.stat-label { font-size: .78rem; color: var(--text-3); margin-top: 2px; }

/* ─── Tables ─── */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--bg-card); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--bg-2); }
th { padding: 13px 18px; text-align: left; font-size: .72rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; }
td { padding: 14px 18px; font-size: .85rem; border-top: 1px solid var(--border); white-space: nowrap; color: var(--text-2); }
tbody tr { transition: background .15s; }
tbody tr:hover { background: var(--bg-card-h); }

/* ─── Badges ─── */
.badge {
  display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 9999px; font-size: .72rem; font-weight: 600; letter-spacing: .3px;
}
.badge-pending   { background: #FEF3C7; color: #92400E; }
.badge-submitted { background: #EFF6FF; color: #2563EB; }
.badge-verified  { background: #DCFCE7; color: #166534; }
.badge-confirmed { background: #DCFCE7; color: #166534; }
.badge-rescheduled { background: #FEF3C7; color: #92400E; }
.badge-rejected  { background: #FEE2E2; color: #B91C1C; }

/* ─── Toast ─── */
.toast {
  position: fixed; bottom: 24px; right: 24px; padding: 14px 22px;
  border-radius: var(--r); font-size: .85rem; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 9999;
  transform: translateY(100px); opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.toast-error   { background: #FEE2E2; color: #B91C1C; border: 1px solid #FECACA; }

/* ─── Spinner ─── */
.spinner {
  width: 22px; height: 22px; border: 2.5px solid rgba(15,118,110,.15);
  border-top-color: var(--primary); border-radius: 50%;
  animation: spin .7s linear infinite; display: inline-block;
}
.spinner-cyan { border-top-color: var(--primary); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Modal ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,.4);
  backdrop-filter: blur(4px); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); width: 100%; max-width: 620px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 64px rgba(15,23,42,.15);
  animation: modalIn .2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin: 0; }
.modal-close { background: none; border: none; color: var(--text-3); cursor: pointer; font-size: 1.5rem; line-height: 1; padding: 4px; }
.modal-close:hover { color: var(--error); }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; }
.modal-section { background: var(--bg-card-h); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 20px; }

/* ─── Stepper ─── */
.stepper {
  display: flex; align-items: center; margin-bottom: 36px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 32px; box-shadow: var(--shadow);
}
.step {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; color: var(--text-3); font-weight: 500;
  flex-shrink: 0;
}
.step-line {
  flex: 1; height: 2px; background: var(--divider);
  margin: 0 12px; border-radius: 1px; transition: background .3s;
}
.step-line.done { background: linear-gradient(90deg, #166534, #86EFAC); }
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  background: var(--bg-2); border: 2px solid var(--border);
  flex-shrink: 0; transition: all .3s;
}
.step.active { color: var(--primary); }
.step.active .step-num {
  background: #ECFEFF; border-color: var(--primary); color: var(--primary);
  box-shadow: 0 0 8px rgba(15,118,110,.15);
}
.step.done { color: #166534; }
.step.done .step-num { background: #DCFCE7; border-color: #166534; color: #166534; }

/* ─── Login Page ─── */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: var(--bg);
}
.login-page::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,118,110,.06) 0%, transparent 70%);
  animation: pulse-slow 8s ease-in-out infinite;
}
.login-page::after {
  content: ''; position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,61,62,.04) 0%, transparent 70%);
  animation: pulse-slow 10s ease-in-out infinite 3s;
}
@keyframes pulse-slow { 0%,100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.1); opacity: 1; } }

.login-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,118,110,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,118,110,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.login-card { position: relative; z-index: 2; width: 100%; max-width: 400px; padding: 0 20px; }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo-img {
  width: 72px; height: 72px; object-fit: contain; margin-bottom: 16px;
  filter: drop-shadow(0 4px 16px rgba(15,118,110,.15));
}
.login-logo h1 { font-size: 1.3rem; font-weight: 700; color: var(--text); }
.login-logo h1 span { color: var(--primary); }
.login-logo p { font-size: .8rem; color: var(--text-3); margin-top: 4px; }

.login-box { padding: 32px; }
.login-box h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.login-box .sub { font-size: .82rem; color: var(--text-2); margin-bottom: 24px; }

.login-footer { text-align: center; margin-top: 28px; font-size: .8rem; color: var(--text-3); }
.login-footer a { color: var(--primary); font-weight: 500; }

.error-msg {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--r);
  background: #FEE2E2; border: 1px solid #FECACA;
  color: var(--error); font-size: .82rem; margin-bottom: 16px;
}

/* ─── App Layout ─── */
.app-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 28px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.app-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .95rem; color: #FFFFFF; }
.app-logo-img { width: 34px; height: 34px; object-fit: contain; border-radius: 6px; }
.app-logo span { color: var(--primary-l); }
.app-user { display: flex; align-items: center; gap: 12px; font-size: .82rem; color: #D1D5DB; }
.app-user strong { color: #FFFFFF; }
.app-user .btn-outline { color: #D1D5DB; border-color: rgba(255,255,255,.2); }
.app-user .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); color: #fff; }

/* ─── Admin Sidebar ─── */
.admin-layout { display: flex; min-height: calc(100vh - 56px); }
.sidebar {
  width: 220px; background: var(--bg-card); border-right: 1px solid var(--border);
  padding: 20px 0; flex-shrink: 0; box-shadow: 2px 0 8px rgba(15,23,42,.03);
}
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; color: var(--text-2); font-size: .85rem; font-weight: 500;
  transition: all .15s; border-left: 3px solid transparent;
}
.sidebar-nav li a:hover { background: var(--bg-card-h); color: var(--text); }
.sidebar-nav li a.active { color: var(--primary); background: rgba(15,118,110,.04); border-left-color: var(--primary); }
.sidebar-nav li a svg { width: 18px; height: 18px; opacity: .7; }
.sidebar-nav li a.active svg { opacity: 1; }
.main-content { flex: 1; padding: 28px 32px; overflow-y: auto; background: var(--bg); }
.main-content h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }

/* ─── Book Page ─── */
.book-container { max-width: 900px; margin: 36px auto; padding: 0 24px; }
.book-container h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.book-container .sub { color: var(--text-2); font-size: .85rem; margin-bottom: 28px; }

.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow-lg); max-width: 680px; margin: 0 auto;
}

.price-display {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: var(--r-lg);
  background: #ECFEFF; border: 1px solid #A7F3D0; margin-bottom: 24px;
}
.price-display .label { font-size: .82rem; color: var(--text-2); font-weight: 500; }
.price-display .amount { font-size: 1.35rem; font-weight: 800; color: var(--primary); }

/* ─── Terms ─── */
.terms-box {
  max-height: 340px; overflow-y: auto;
  padding: 22px; border-radius: var(--r-lg);
  background: var(--bg); border: 1px solid var(--border);
  font-size: .82rem; color: var(--text-2); line-height: 1.7; margin-bottom: 18px;
  scrollbar-width: thin; scrollbar-color: #B0BEC5 transparent;
}
.terms-box::-webkit-scrollbar { width: 6px; }
.terms-box::-webkit-scrollbar-track { background: transparent; }
.terms-box::-webkit-scrollbar-thumb { background: #B0BEC5; border-radius: 3px; }
.terms-box h4 { color: var(--text); margin: 16px 0 6px; font-size: .85rem; }
.terms-box h4:first-child { margin-top: 0; }
.terms-check { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.terms-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }
.terms-check label { font-size: .82rem; color: var(--text-2); cursor: pointer; }

/* ─── Payment ─── */
.qr-container { text-align: center; margin: 24px 0; }
.qr-container img {
  width: 210px; height: 210px; border-radius: var(--r-lg);
  border: 2px solid var(--border); padding: 8px; background: #fff;
  box-shadow: var(--shadow-lg);
}
.payment-info {
  display: grid; grid-template-columns: auto 1fr; gap: 6px 16px;
  font-size: .82rem; margin: 16px 0;
}
.payment-info dt { color: var(--text-3); }
.payment-info dd { color: var(--text); font-weight: 500; }

/* ─── Screenshot Upload ─── */
.screenshot-upload {
  border: 2px dashed var(--border); border-radius: var(--r-lg);
  padding: 20px; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s; margin-bottom: 16px; position: relative;
}
.screenshot-upload:hover { border-color: var(--primary); background: var(--bg-card-h); }
.screenshot-upload.has-file { border-color: var(--primary); border-style: solid; background: var(--bg-card-h); }
.screenshot-upload input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.screenshot-upload .upload-icon { font-size: 2rem; margin-bottom: 8px; }
.screenshot-upload .upload-text { font-size: .82rem; color: var(--text-3); }
.screenshot-upload .upload-text strong { color: var(--primary); }

/* ─── UPI Deep Link (mobile/tablet only) ─── */
.upi-deeplink {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px dashed var(--border);
}
/* Hide on desktop (>1024px) */
@media (min-width: 1025px) {
  .upi-deeplink { display: none !important; }
}
.btn-upi {
  background: linear-gradient(135deg, #097939, #0F766E);
  color: #fff; font-weight: 600; border: none;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 24px; border-radius: var(--r); font-size: .95rem;
  cursor: pointer; transition: all .2s; box-shadow: 0 2px 8px rgba(9,121,57,.2);
}
.btn-upi:hover { background: linear-gradient(135deg, #0a8a42, #0e6b63); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(9,121,57,.3); }
.upi-apps { margin-top: 16px; text-align: center; }
.upi-apps-label {
  display: block; font-size: .75rem; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; font-weight: 500;
}
.upi-app-logos {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.upi-app-logo {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,.06); transition: transform .2s, box-shadow .2s;
  overflow: hidden; padding: 2px;
}
.upi-app-logo:hover { transform: translateY(-2px); box-shadow: 0 3px 8px rgba(0,0,0,.1); }
.upi-app-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.screenshot-preview {
  max-width: 100%; max-height: 200px; border-radius: var(--r);
  border: 1px solid var(--border); margin-top: 12px;
}

/* ─── Screenshot in Admin ─── */
.screenshot-inline {
  max-width: 100%; max-height: 400px; border-radius: var(--r);
  border: 1px solid var(--border); margin-top: 8px;
  box-shadow: var(--shadow); cursor: pointer; transition: transform .2s;
}
.screenshot-inline:hover { transform: scale(1.02); }

/* ─── Status ─── */
.status-card { text-align: center; padding: 48px 28px; }
.status-icon { font-size: 3.5rem; margin-bottom: 18px; }
.status-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.status-card p { color: var(--text-2); font-size: .85rem; max-width: 360px; margin: 0 auto; }
.meeting-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 12px 24px; border-radius: var(--r);
  background: #ECFEFF; border: 1px solid #A7F3D0;
  color: var(--primary); font-weight: 600; font-size: .9rem;
}
.meeting-link:hover { background: #CCFBF1; }

/* ─── Booking Tabs ─── */
.booking-tabs {
  display: flex; gap: 0; margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  background: var(--bg-card); border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 0 8px;
  border: 1px solid var(--border); border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.booking-tab {
  padding: 14px 24px; font-size: .85rem; font-weight: 600;
  color: var(--text-3); cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all .2s; background: none;
  border-top: none; border-left: none; border-right: none;
  font-family: inherit;
}
.booking-tab:hover { color: var(--text-2); background: var(--bg-card-h); }
.booking-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ─── Detail List ─── */
.detail-grid {
  display: grid; grid-template-columns: 140px 1fr; gap: 10px 16px; font-size: .85rem;
}
.detail-grid dt { color: var(--text-3); font-weight: 500; }
.detail-grid dd { color: var(--text); }

/* ─── Booking Cards ─── */
.booking-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 24px;
  margin-bottom: 16px; transition: border-color .2s, box-shadow .2s;
  box-shadow: var(--shadow);
}
.booking-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.booking-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; flex-wrap: wrap; gap: 8px;
}
.booking-card-type { font-weight: 700; font-size: 1.05rem; color: var(--primary); }
.booking-card-body {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px 24px; margin-bottom: 14px;
}
.booking-card-detail { display: flex; flex-direction: column; gap: 2px; }
.booking-detail-label { font-size: .78rem; color: var(--text-3); letter-spacing: .3px; }
.booking-card-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 12px; border-top: 1px solid var(--border);
}

/* ─── Reschedule ─── */
.reschedule-info {
  background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: var(--r);
  padding: 12px 16px; font-size: .82rem; color: #1E40AF; margin-top: 12px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .sidebar { display: none; }
  .main-content { padding: 20px 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr !important; }
  .form-row { grid-template-columns: 1fr; }
  .stepper { padding: 12px 16px; }
  .step span { display: none; }
  .step-line { margin: 0 6px; }
  .modal { margin: 12px; max-width: calc(100% - 24px); }
  .book-container { padding: 0 12px; margin: 20px auto; }
  .booking-card-body { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 20px 16px; }
  .app-header { padding: 0 14px; height: 54px; gap: 8px; }
  .app-logo { font-size: .82rem; gap: 6px; min-width: 0; }
  .app-logo-img { width: 28px; height: 28px; }
  .app-user { gap: 8px; font-size: .75rem; min-width: 0; }
  .app-user > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 120px; }
  .booking-tabs { padding: 0 4px; }
  .booking-tab { padding: 12px 16px; font-size: .8rem; }
  .price-display { padding: 12px 16px; }
  .price-display .amount { font-size: 1.15rem; }
  .qr-container img { width: 180px; height: 180px; }
  .detail-grid { grid-template-columns: 110px 1fr; }
  .terms-box { max-height: 250px; padding: 16px; }
  .payment-info { font-size: .78rem; }
  .booking-card { padding: 16px; }
  .booking-card-actions { gap: 6px; }
  .booking-card-actions .btn { font-size: .75rem; padding: 6px 10px; }
  h2 { font-size: 1.1rem !important; }
  .sub { font-size: .8rem !important; }
}
@media (max-width: 480px) {
  .app-header { padding: 0 10px; }
  .app-user > span { max-width: 80px; }
  .stat-grid { grid-template-columns: 1fr !important; }
  .booking-card-body { grid-template-columns: 1fr; }
  .form-card { padding: 16px 12px; }
  .modal { margin: 8px; max-width: calc(100% - 16px); }
  .stepper { padding: 10px 12px; }
  .qr-container img { width: 160px; height: 160px; }
  .step-num { width: 28px; height: 28px; font-size: .7rem; }
}
@media (max-width: 600px) {
  .modal { max-width: 100%; margin: 0 8px; }
}

/* ─── Utility ─── */
.text-cyan { color: var(--primary); }
.text-yellow { color: #92400E; }
.text-success { color: #166534; }
.text-error { color: var(--error); }
.text-muted { color: var(--text-3); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hidden { display: none !important; }
.w-full { width: 100%; }

/* Lucide icon spin animation */
.spin-icon { animation: spin 1.5s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
