/* ═══════════════════════════════════════════════════════════════
   EMIX — Inquiry.css  (redesigned & refined)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-gradient:         linear-gradient(135deg, #000000 0%, #DA3662 55%, #ffffff 100%);
  --crimson:             #7b1e3a;
  --neon-pink:           #ff2d78;
  --neon-pink-soft:      #ff6fa0;
  --neon-glow:           rgba(255, 45, 120, 0.35);
  --neon-glow-sm:        rgba(255, 45, 120, 0.15);
  --accent-pink:         #d6405f;
  --card-bg:             #221216;
  --input-bg:            #11080a;
  --border-color:        #442a2f;
  --text-primary:        #ffffff;
  --text-secondary:      #e8b4c8;
  --text-muted:          #b07090;
  --glass-bg:            rgba(8, 2, 5, 0.72);
  --glass-border:        rgba(255, 45, 120, 0.18);
  --glass-border-strong: rgba(255, 45, 120, 0.38);
  --shadow-card:         0 8px 32px rgba(0,0,0,0.55), 0 2px 8px rgba(255,45,120,0.08);
  --shadow-hover:        0 16px 48px rgba(0,0,0,0.7), 0 4px 16px rgba(255,45,120,0.22);
  --sidebar-w:           252px;
  --topbar-h:            72px;
  --radius-card:         20px;
  --radius-sm:           12px;
  --font-display:        'Montserrat', sans-serif;
  --font-body:           'Poppins', sans-serif;
  --transition:          0.28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  display: flex;
  flex-direction: column; /* ✅ FIX */
  min-height: 100vh;
  overflow-x: hidden; /* ✅ allow vertical scroll */
  position: relative;
}

body.inquiry-modal-open {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.35;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { border: none; cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-pink); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.main-content {
  margin-left: var(--sidebar-w);
  padding-top: var(--topbar-h);
  flex: 1; 
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.layout-wrapper { display: flex; flex: 1; overflow: hidden; }

.center-feed {
    flex: 1;
  overflow-y: auto;
  padding: 28px 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ════════════════════════════════════════════════════════════════
   PAGE HEADER
   ════════════════════════════════════════════════════════════════ */
.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.page-header-left { display: flex; flex-direction: column; gap: 8px; }

.page-title {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900; color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
  line-height: 1.1;
}

.page-subtitle {
  font-size: 14.5px;
  color: var(--text-secondary);
  font-weight: 500;
  opacity: 0.9;
}

/* ════════════════════════════════════════════════════════════════
   STATS + CTA ROW  — improved proportions
   ════════════════════════════════════════════════════════════════ */
.stats-cta-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: stretch;
}

/* ── Stat card ── */
.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 28px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--glass-border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* accent glow blob inside stat card */
.stat-card::after {
  content: "";
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,120,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.stat-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 16px rgba(255,45,120,0.2);
}

/* ── CTA card ── */
.cta-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.cta-card:hover {
  border-color: var(--glass-border-strong);
}

/* subtle diagonal stripe texture */
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,45,120,0.02) 20px,
    rgba(255,45,120,0.02) 21px
  );
  pointer-events: none;
}

.cta-text { position: relative; z-index: 1; }

.cta-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.cta-sublabel {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  opacity: 0.85;
}

.inquire-now-btn {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #c4104e 0%, #ff2d78 50%, #ff6fa3 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 20px rgba(255,45,120,0.42);
  white-space: nowrap;
  flex-shrink: 0;
}
.inquire-now-btn:hover {
  background-position: 0 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,45,120,0.6);
}

/* ════════════════════════════════════════════════════════════════
   INQUIRY DETAILS SECTION
   ════════════════════════════════════════════════════════════════ */
.inquiry-details-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}

.section-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── Inquiry list panel ── */
.inquiry-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.inquiry-list {
  display: flex;
  flex-direction: column;
}

/* ── Empty state ── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  gap: 16px;
  text-align: center;
}

.empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,45,120,0.08);
  border: 2px solid rgba(255,45,120,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.empty-icon i {
  font-size: 32px;
  color: var(--neon-pink);
  opacity: 0.8;
}

.empty-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}

.empty-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.65;
  max-width: 360px;
}

.empty-sub strong {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ── Inquiry cards inside the panel ── */
.inquiry-card {
  padding: 26px 30px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.inquiry-card:last-child { border-bottom: none; }

/* left accent bar on hover */
.inquiry-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--neon-pink);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.inquiry-card:hover::before { opacity: 1; }

.inquiry-card:hover {
  background: rgba(255,45,120,0.03);
  padding-left: 32px;
}

.inquiry-card.has-notification::before { opacity: 1; }
.inquiry-card.has-notification { padding-left: 32px; }

.inquiry-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.inq-meta-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Status: [value] pair shown in the top-left of every inquiry card.
   "Status:" is white/bold; the [value] keeps its semantic colour via .inq-status-badge. */
.inq-status-pair {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.inq-status-key {
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inq-id-badge {
  background: rgba(255,45,120,0.12);
  border: 1px solid rgba(255,45,120,0.28);
  color: var(--neon-pink-soft);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

.inq-status-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 50px;
  flex-shrink: 0;
}

.status-pending   { background: rgba(255,180,0,0.15);   border: 1px solid rgba(255,180,0,0.35);  color: #ffd060; }
.status-responded { background: rgba(0,200,100,0.12);   border: 1px solid rgba(0,200,100,0.35);  color: #4ef0a0; }
.status-approved  { background: rgba(0,200,100,0.12);   border: 1px solid rgba(0,200,100,0.35);  color: #4ef0a0; }
.status-resolved  { background: rgba(86,198,255,0.14);  border: 1px solid rgba(86,198,255,0.34); color: #91deff; }
.status-closed    { background: rgba(150,150,150,0.16); border: 1px solid rgba(150,150,150,0.34); color: #d0d0d0; }
.status-cancelled { background: rgba(120,120,120,0.15); border: 1px solid rgba(120,120,120,0.3); color: #aaa; }
.status-declined  { background: rgba(255,60,60,0.12);   border: 1px solid rgba(255,60,60,0.3);   color: #ff7070; }

.inq-meta-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-muted);
}
.inq-meta-right i { font-size: 14px; }

.inquiry-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Title row: expand button + event type on left, status badge on right */
.inq-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.inq-event-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inq-expand-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,45,120,0.35);
  background: rgba(255,45,120,0.1);
  color: #ffd7e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.inquiry-card.open .inq-expand-btn i {
  transform: rotate(90deg);
}

.inq-expand-btn:hover {
  background: rgba(255,45,120,0.22);
}

.inq-event-type {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.inq-event-details {
  background: rgba(255,45,120,0.06);
  border: 1px solid rgba(255,45,120,0.16);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
}
.inq-event-details p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.5; }
.detail-label { font-weight: 700; color: #fff; margin-right: 6px; }

/* click hint */
.click-hint {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
  opacity: 0.5;
}

/* ── Expanded content ── */
.inquiry-expanded-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 28px;
  background: rgba(0,0,0,0.12);
}

.inquiry-card.open .inquiry-expanded-content {
  max-height: 2000px;
  opacity: 1;
  padding: 24px 28px 32px;
  border-top: 1px solid var(--glass-border);
  margin-top: 16px;
}

/* ── Chat bubbles ── */
.conversation-thread { display: flex; flex-direction: column; gap: 16px; }

.bubble {
  padding: 14px 18px;
  border-radius: 14px;
  max-width: 90%;
  line-height: 1.6;
  font-size: 14px;
}

.bubble small {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.user-bubble {
  align-self: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
}

.admin-bubble {
  align-self: flex-end;
  background: rgba(255,45,120,0.1);
  border: 1px solid var(--neon-pink);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,45,120,0.14);
}
.admin-bubble small { color: var(--neon-pink-soft); }

.quote-line {
  margin-top: 10px;
  font-size: 13px;
  color: #ffd7e6;
}

.waiting-notice {
  text-align: right;
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}

/* ── Friendly pending notice (shown while admin hasn't replied) ── */
.pending-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.18);
  color: var(--text-secondary);
}
.pending-notice i {
  font-size: 20px;
  color: var(--neon-pink-soft);
  margin-top: 2px;
  flex-shrink: 0;
}
.pending-notice p {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

/* ── Two side-by-side boxes inside the expanded dropdown ── */
.exp-boxes-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.exp-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 120px;
}
.exp-box-packages { border-left: 3px solid var(--neon-pink); }
.exp-box-message  { border-left: 3px solid #4ef0a0; }
.exp-box-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.exp-box-title i { color: var(--neon-pink-soft); font-size: 15px; }
.exp-box-message .exp-box-title i { color: #4ef0a0; }
.exp-box-body { display: flex; flex-direction: column; gap: 8px; }

.pkg-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
  line-height: 1.5;
}
.pkg-line-category {
  color: #fff;
  font-weight: 700;
}
.pkg-line-sep { color: var(--text-muted); }
.pkg-line-packages { color: var(--text-secondary); }

.pkg-loading,
.pkg-empty {
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pkg-loading i { animation: spin 1s linear infinite; }

.inq-message-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  white-space: pre-line;
}

@keyframes spin { to { transform: rotate(360deg); } }

.response-action-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.response-action-row .admin-bubble {
  width: min(760px, 100%);
  margin-right: auto;
  align-self: flex-start;
}

.customer-action-wrap {
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}

.customer-action-wrap-side {
  width: min(560px, 100%);
  margin-left: auto;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.customer-action-title {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.customer-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.customer-action-wrap-side .customer-action-buttons {
  flex-direction: column;
}

.customer-action-wrap-side .action-btn {
  width: 100%;
  justify-content: center;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  transition: all var(--transition);
}
.action-btn:hover { transform: translateY(-2px); }

.action-btn.action-agree {
  border-color: rgba(76,217,100,0.4);
  background: rgba(76,217,100,0.15);
}
.action-btn.action-agree:hover {
  background: rgba(76,217,100,0.28);
  box-shadow: 0 4px 18px rgba(76,217,100,0.3);
}

.action-btn.action-negotiate {
  border-color: rgba(255,173,51,0.42);
  background: rgba(255,173,51,0.16);
}
.action-btn.action-negotiate:hover {
  background: rgba(255,173,51,0.28);
  box-shadow: 0 4px 18px rgba(255,173,51,0.3);
}

.action-btn.action-cancel {
  border-color: rgba(255,90,120,0.45);
  background: rgba(255,90,120,0.16);
}
.action-btn.action-cancel:hover {
  background: rgba(255,90,120,0.28);
  box-shadow: 0 4px 18px rgba(255,90,120,0.3);
}

/* ── Reservation Form ── */
.reservation-form-wrap,
.payment-instruction-wrap {
  margin-top: 20px;
  border: 1px solid rgba(255,45,120,0.24);
  border-radius: 18px;
  padding: 22px 24px;
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
}

.res-form-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.res-form-header > i {
  font-size: 28px;
  color: var(--neon-pink-soft);
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 8px var(--neon-glow));
}

.res-form-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-pink-soft);
  margin-bottom: 4px;
}

.res-form-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.res-form-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Grid of read-only fields */
.reservation-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-bottom: 18px;
}

.res-field {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.res-field-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.res-field-value {
  font-size: 13.5px;
  color: #fff;
  font-weight: 600;
  word-break: break-word;
}

.res-field-highlight {
  border-color: rgba(255,45,120,0.28);
  background: rgba(255,45,120,0.07);
  grid-column: 1 / -1;
}

.res-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--neon-pink-soft);
  letter-spacing: -0.01em;
}

.reservation-next-btn,
.reservation-confirm-btn {
  width: 100%;
  height: 48px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.payment-title { text-align: center; font-size: 20px; margin-bottom: 14px; }
.payment-intro { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.payment-intro strong { color: #fff; }

.payment-body { display: grid; grid-template-columns: 180px 1fr; gap: 20px; margin-bottom: 18px; align-items: start; }
.qr-box {
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 12px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 11.5px; font-weight: 600;
  color: var(--text-muted); line-height: 1.5; padding: 14px;
}
.payment-steps { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; }
.payment-steps li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.payment-steps li::before { content: '●'; color: var(--neon-pink); flex-shrink: 0; font-size: 10px; margin-top: 4px; }
.payment-balance { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.payment-balance strong { color: #fff; }
.payment-contact {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 14px 18px;
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px;
}
.payment-contact p { font-size: 13px; color: var(--text-secondary); margin: 0; }
.payment-contact strong { color: #fff; }
.payment-note {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 12px 16px;
  font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 22px;
}
.btn-submit-final {
  display: block; width: 100%;
  background: var(--neon-pink); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 14px; border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(255,45,120,0.4); text-align: center;
}
.btn-submit-final:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,45,120,0.6); }

/* ── Payment Instruction ── */
.payment-steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.pay-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pay-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4104e, #ff2d78);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255,45,120,0.4);
}

.pay-step > div {
  padding-top: 4px;
}

.pay-step strong {
  display: block;
  font-size: 13.5px;
  color: #fff;
  margin-bottom: 4px;
}

.pay-step p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.payment-total-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(196,16,78,0.18) 0%, rgba(255,45,120,0.1) 100%);
  border: 1px solid rgba(255,45,120,0.32);
  margin-bottom: 16px;
}

.payment-total-banner span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.payment-total-banner strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--neon-pink-soft);
}

.reservation-modal-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reservation-modal-actions .submit-btn,
.reservation-modal-actions .btn-submit-final,
.reservation-modal-actions .ghost-btn {
  margin-top: 0;
  min-height: 46px;
}

.direct-negotiate-copy {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 8px;
}

.manual-contact-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.manual-contact-title i {
  color: var(--neon-pink-soft);
  font-size: 18px;
}

.manual-contact-sub {
  margin: 0 0 12px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.direct-negotiate-copy p {
  margin: 0;
  font-size: 12.5px;
  color: #fff;
}

.direct-negotiate-copy a {
  color: var(--neon-pink-soft);
  text-decoration: none;
}

.direct-negotiate-copy a:hover {
  text-decoration: underline;
}

/* ════════════════════════════════════════════════════════════════
   MODAL OVERLAY
   ════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 14px;
}
.modal-overlay.open { display: flex; }

.modal-overlay.is-flow {
  z-index: 1200;
}

.modal-box {
  background: #160810;
  border: 1px solid rgba(255,45,120,0.28);
  border-radius: 24px;
  padding: 34px 32px;
  width: 100%; max-width: 680px;
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  box-shadow:
    0 0 0 1px rgba(255,45,120,0.06) inset,
    0 24px 64px rgba(0,0,0,0.8),
    0 0 80px rgba(255,45,120,0.12);
  animation: modalIn 0.3s cubic-bezier(.22,.68,0,1.1);
}

.action-modal-box.flow-modal {
  width: min(860px, 95vw);
  max-width: 860px;
}

.action-modal-box.result-modal {
  width: min(500px, 92vw);
  max-width: 500px;
  padding-top: 26px;
}

.flow-modal .modal-header {
  margin-bottom: 18px;
}

.flow-modal .modal-close-btn {
  width: 34px;
  height: 34px;
}

.flow-modal-body {
  padding-top: 4px;
}

.flow-modal-body .reservation-sheet {
  max-height: calc(100vh - 240px);
  overflow: auto;
}

.reservation-sheet {
  padding-top: 2px;
}

.reservation-sheet-head {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 12px;
}

.reservation-sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-bottom: 14px;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.summary-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.summary-label i {
  color: var(--neon-pink-soft);
  font-size: 13px;
}

.summary-value {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
}

.summary-item-price {
  grid-column: 1 / -1;
  border: 1px solid rgba(255,45,120,0.35);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255,45,120,0.1);
}

.summary-item-price .summary-value {
  color: var(--neon-pink-soft);
  font-size: 1.45rem;
}

.payment-sheet .res-form-header {
  margin-bottom: 14px;
}

.action-modal-btn {
  min-height: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

#actionModalBody.is-centered {
  text-align: center;
}

#actionModalBody.is-centered .submit-btn {
  width: auto;
  min-width: 170px;
  margin: 6px auto 0;
}

.action-thankyou {
  padding: 8px 4px 4px;
}

.action-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.action-modal-actions .submit-btn,
.action-modal-actions .ghost-btn {
  margin-top: 0;
}

.action-modal-actions.stack-buttons {
  grid-template-columns: 1fr;
}

.action-modal-actions.stack-buttons #actionModalSecondaryBtn {
  order: 1;
}

.action-modal-actions.stack-buttons #actionModalPrimaryBtn {
  order: 2;
}

.modal-overlay.hide-header .modal-header {
  display: none;
}

.inquiry-wizard-box {
  width: min(860px, 95vw);
  max-width: 860px;
  max-height: calc(100vh - 20px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.inquiry-wizard-box.is-thankyou {
  width: min(480px, 92vw);
  max-width: 480px;
  padding: 22px 20px;
  max-height: min(440px, calc(100vh - 20px));
}

.inquiry-wizard-box.is-thankyou .submit-btn {
  width: auto;
  min-width: 160px;
  height: 40px;
  font-size: 12.5px;
  margin-top: 4px;
}

.inquiry-wizard-box::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* Compact visual scale for cleaner, less awkward form density */
.inquiry-wizard-box .modal-header {
  margin-bottom: 20px;
}

.inquiry-wizard-box .modal-title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.inquiry-wizard-box .modal-subtitle {
  margin-top: 6px;
  font-size: 12px;
}

.inquiry-wizard-box .inquiry-steps {
  gap: 8px;
  margin-bottom: 18px;
}

.inquiry-wizard-box .step-chip {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.inquiry-wizard-box .step-copy {
  font-size: 11px;
}

.inquiry-wizard-box .step-panel-copy {
  margin-bottom: 14px;
}

.inquiry-wizard-box .step-panel-copy h3 {
  font-size: 18px;
}

.inquiry-wizard-box .step-panel-copy p {
  font-size: 12px;
  line-height: 1.55;
}

.inquiry-wizard-box .form-grid {
  gap: 14px;
}

.inquiry-wizard-box .form-group {
  gap: 6px;
}

.inquiry-wizard-box .form-group label {
  font-size: 11px;
}

.inquiry-wizard-box .form-group input,
.inquiry-wizard-box .form-group textarea,
.inquiry-wizard-box .form-group select {
  padding: 11px 13px;
  font-size: 13px;
  border-radius: 10px;
}

.inquiry-wizard-box .select-trigger-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 17px;
}

.inquiry-wizard-box .picker-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  font-size: 15px;
}

.inquiry-wizard-box .package-builder {
  gap: 12px;
  margin-bottom: 14px;
}

.inquiry-wizard-box .package-row {
  border-radius: 14px;
  padding: 14px;
}

.inquiry-wizard-box .package-row-grid {
  gap: 12px;
}

.inquiry-wizard-box .package-hint {
  margin-top: 8px;
  font-size: 11px;
}

.inquiry-wizard-box .step-actions {
  margin-top: 18px;
}

.inquiry-wizard-box .step-actions .submit-btn,
.inquiry-wizard-box .step-actions .ghost-btn {
  min-width: 160px;
  min-height: 42px;
}

.inquiry-wizard-box .submit-btn {
  height: 46px;
  font-size: 13px;
}

.inquiry-wizard-box textarea {
  min-height: 88px;
}

@keyframes modalIn {
  from { opacity:0; transform:translateY(20px) scale(0.96); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* ── Modal header ── */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.modal-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-pink-soft);
  margin-bottom: 8px;
}

.modal-subtitle {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.modal-close-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close-btn:hover {
  background: rgba(255,45,120,0.15);
  border-color: rgba(255,45,120,0.4);
  color: #fff;
  transform: rotate(90deg);
}

.inquiry-steps {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.inquiry-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.inquiry-step.is-active,
.inquiry-step.is-complete {
  color: #fff;
}

.step-chip {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  transition: all var(--transition);
}

.inquiry-step.is-active .step-chip,
.inquiry-step.is-complete .step-chip {
  background: linear-gradient(135deg, #ff2d78, #ff6fa0);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(255,45,120,0.35);
}

.step-copy {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.step-line {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.step-panel { display: none; }
.step-panel.is-active { display: block; }

.step-panel-copy {
  margin-bottom: 20px;
}

.step-panel-copy h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.step-panel-copy p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

.form-status {
  margin-bottom: 18px;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  border: 1px solid rgba(255,45,120,0.2);
  background: rgba(255,45,120,0.08);
  color: #ffd3e2;
}

.hidden {
  display: none !important;
}

.inquiry-grid {
  margin-bottom: 0;
}

/* ── Form grid ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 12px;
}

.form-group.full  { grid-column: 1 / -1; }
.form-group.half  { grid-column: span 1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.field-optional {
  color: var(--text-muted);
  font-size: 10px;
}

.field-required {
  color: #ff5f7d;
  font-size: 13px;
  font-weight: 800;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 13px 16px; color: #fff; font-size: 14px;
  font-family: var(--font-body); outline: none; resize: vertical;
  transition: all 0.25s ease;
  color-scheme: dark;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 13px 16px; color: #fff; font-size: 14px;
  font-family: var(--font-body); outline: none; resize: vertical;
  transition: all 0.25s ease;
  color-scheme: dark;
}

.form-group select {
  appearance: none;
  resize: none;
}

.select-shell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select-trigger-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 45, 120, 0.35);
  background: linear-gradient(145deg, rgba(255,45,120,0.2), rgba(255,45,120,0.06));
  color: #ffe3ec;
  font-size: 20px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.select-trigger-btn i {
  transition: transform 0.2s ease;
}

.select-trigger-btn.is-open i {
  transform: rotate(180deg);
}

.select-trigger-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255,45,120,0.28);
}

.select-shell select {
  flex: 1;
  background: #1a080d;
  color: #fff;
  color-scheme: dark;
}

.select-shell select option {
  background: #1a080d;
  color: #fff;
  font-family: var(--font-body);
  padding: 10px 14px;
}

.select-shell select option:checked,
.select-shell select option:hover {
  background: #3d0d1e;
  color: #ff6fa0;
}

.select-shell select option:disabled {
  color: #7a4a5e;
  background: #1a080d;
}

.picker-input-wrap {
  position: relative;
  width: 100%;
}

.picker-input-wrap input {
  width: 100%;
  padding-right: 54px;
}

.picker-input-wrap .picker-display-input {
  background: #1a080d;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.native-picker-anchor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.picker-icon-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 11px;
  border: 1px solid rgba(255, 45, 120, 0.35);
  background: linear-gradient(145deg, rgba(255,45,120,0.2), rgba(255,45,120,0.06));
  color: #ffe3ec;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
  z-index: 2;
}

.picker-icon-btn:hover {
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 8px 18px rgba(255,45,120,0.28);
}

.readonly-field {
  background: rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.78);
  cursor: default;
}

.field-note {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.field-error-message {
  color: #ff728e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.field-error {
  border-color: rgba(255,45,120,0.75) !important;
  box-shadow: 0 0 0 4px rgba(255,45,120,0.12);
}

input[type="date"],
input[type="time"],
select,
.form-group select,
.select-shell select { color-scheme: dark; }

input[type="time"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-clear-button,
input[type="time"]::-webkit-inner-spin-button {
  display: none;
}

input[type="time"] {
  letter-spacing: 0.06em;
  font-weight: 600;
}

.package-builder {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}

.package-row {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
}

.package-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.package-row-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.package-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.package-hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.ghost-btn {
  min-height: 48px;
  border-radius: 14px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}

.ghost-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,45,120,0.3);
}

.add-package-btn {
  margin-bottom: 22px;
}

.add-package-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.6);
}

.add-package-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.package-remove-btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 12px;
}

.package-notes-field {
  margin-top: 8px;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.step-actions-end {
  justify-content: flex-end;
}

.step-actions .submit-btn,
.step-actions .ghost-btn {
  width: auto;
  min-width: 190px;
  margin-top: 0;
}

.inquiry-summary-card {
  margin-top: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,45,120,0.18);
  background: rgba(255,45,120,0.06);
  padding: 18px 20px;
}

.inquiry-summary-card h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.inquiry-summary-list {
  display: grid;
  gap: 8px;
}

.inquiry-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.inquiry-summary-item strong {
  color: #fff;
  font-weight: 700;
}

/* ── Submit button ── */
.submit-btn {
  width: 100%;
  height: 52px;
  background: linear-gradient(90deg, #c4104e 0%, #ff2d78 50%, #ff6fa3 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 14px;
  margin-top: 12px;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 24px rgba(255,45,120,0.4);
}
.submit-btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  pointer-events: none;
}
.submit-btn:hover:not(:disabled) {
  background-position: 0 0;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,45,120,0.56);
}
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── Thank you ── */
.thankyou-inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 14px;
  padding: 8px 0;
  max-width: 360px;
  margin: 0 auto;
}

.success-icon-container { margin-bottom: 12px; }

.success-circle {
  width: 64px; height: 64px;
  border: 3px solid var(--neon-pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--neon-pink);
  box-shadow: 0 0 40px rgba(255,45,120,0.35);
  animation: scaleIn 0.4s cubic-bezier(.22,.68,0,1.2);
}
@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-circle svg { width: 28px; height: 28px; }

.thankyou-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 900; color: #fff;
  letter-spacing: -0.02em;
}
.thankyou-msg { font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.thankyou-sub {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.55; max-width: 320px;
  margin-bottom: 6px;
}

/* ════════════════════════════════════════════════════════════════
   NOTIFICATION SYSTEM
   ════════════════════════════════════════════════════════════════ */
.notification-container {
  position: relative;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}

.notif-btn {
  background: transparent;
  color: var(--text-primary);
  font-size: 22px;
  position: relative;
  padding: 8px;
  transition: var(--transition);
}
.notif-btn:hover { color: var(--neon-pink); }

.notif-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--neon-pink); color: white;
  font-size: 10px; font-weight: 900;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #000;
  box-shadow: 0 0 12px rgba(255,45,120,0.6);
  z-index: 10;
}

.pulse-animation { animation: badge-pulse 2s infinite; }

@keyframes badge-pulse {
  0%   { box-shadow: 0 0 0 0px rgba(255,45,120,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,45,120,0); }
  100% { box-shadow: 0 0 0 0px rgba(255,45,120,0); }
}

#notifDropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px); right: 0;
  width: 320px;
  background: #0f0508;
  border: 1px solid var(--neon-pink);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(0,0,0,0.85);
  z-index: 10000;
  overflow: hidden;
}
#notifDropdown.show { display: flex; flex-direction: column; }

.notif-header {
  padding: 14px 18px;
  background: rgba(255,45,120,0.1);
  border-bottom: 1px solid var(--glass-border);
  font-size: 11px; font-weight: 800;
  color: var(--neon-pink-soft);
  letter-spacing: 1px;
}

.notif-item {
  padding: 16px 18px;
  display: flex; gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 0.2s;
}
.notif-item:hover { background: rgba(255,45,120,0.08); }

.notif-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%; margin-top: 5px; flex-shrink: 0;
}

.notif-content strong { display: block; font-size: 13.5px; color: #fff; margin-bottom: 3px; }
.notif-content p { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; }

.notif-dot {
  color: var(--neon-pink); font-size: 14px; margin-right: 8px;
  text-shadow: 0 0 10px var(--neon-pink);
  animation: pulse-glow 1.5s infinite;
}
@keyframes pulse-glow {
  0%   { opacity: 1; transform: scale(1); }
  50%  { opacity: 0.4; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.ri-loader-4-line { display: inline-block; animation: spin 2s linear infinite; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) { 
  .center-feed { margin-right: 0; }
}

@media (max-width: 1024px) { 
  :root { --sidebar-w: 68px; }
}

@media (max-width: 768px) {
  :root { --sidebar-w: 65px; --topbar-h: 64px; }
  body { overflow-y: auto; }
  .main-content { 
    margin-left: var(--sidebar-w); 
    margin-top: 0; 
    padding-top: var(--topbar-h);
    height: auto; 
    overflow: visible; 
  }
  .layout-wrapper { overflow: visible; }
  .center-feed { 
    margin-right: 0; 
    overflow-y: visible; 
    height: auto; 
    padding: 24px 16px 40px; 
    gap: 20px; 
  }
  .page-title { font-size: 28px; }
  .stats-cta-row { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; align-items: flex-start; padding: 24px; }
  .inq-title-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .inq-event-details { width: 100%; }
  .inq-event-type { font-size: 22px; }
  .reservation-form-grid { grid-template-columns: 1fr; }
  .res-field-highlight { grid-column: 1 / -1; }
  .response-action-row { display: flex; flex-direction: column; }
  .response-action-row .admin-bubble { width: 100%; }
  .customer-action-wrap-side {
    width: 100%;
    margin-left: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .customer-action-buttons { flex-direction: column; }
  .action-btn { width: 100%; justify-content: center; }
  .modal-box { padding: 24px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.half { grid-column: 1 / -1; }
  .package-row-grid { grid-template-columns: 1fr; }
  .step-actions { flex-direction: column-reverse; align-items: stretch; }
  .step-actions .submit-btn,
  .step-actions .ghost-btn { width: 100%; min-width: 0; }
  .inquiry-steps { grid-template-columns: 1fr; gap: 10px; }
  .step-line { display: none; }
  .inquiry-expanded-content { padding: 0 16px; }
  .inquiry-card.open .inquiry-expanded-content { padding: 18px 16px 24px; }
  .exp-boxes-row { grid-template-columns: 1fr; gap: 12px; }
  .payment-body { grid-template-columns: 1fr; }
  .qr-box { aspect-ratio: auto; height: 120px; }
  .reservation-modal-actions { grid-template-columns: 1fr; }
  .reservation-sheet-grid { grid-template-columns: 1fr; }
  .action-modal-actions { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  :root { --sidebar-w: 65px; --topbar-h: 60px; }
  .main-content { padding-top: var(--topbar-h); }
  .page-title { font-size: 24px; }
  .stats-cta-row { grid-template-columns: 1fr; }
  .inquiry-card-top { flex-direction: column; align-items: flex-start; }
  .stat-number { font-size: 44px; }
  .modal-box { padding: 20px 12px; }
  .inquiry-wizard-box {
    width: min(100%, 100vw - 12px);
    max-height: calc(100vh - 8px);
  }
  .inquiry-wizard-box .modal-title {
    font-size: 1.35rem;
  }
  .inquiry-wizard-box .step-copy {
    font-size: 10.5px;
  }
  .inquiry-summary-item { flex-direction: column; }
} 