/* ============================================================
   BRAVADO PROMOTIONS â€” Premium Additions v3.1
   Layers on top of style.css (no !important, clean overrides)
   ============================================================ */

/* â”€â”€â”€ CSS Custom Properties Extensions â”€â”€â”€ */
:root {
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-green: #10b981;
  --accent-yellow: #f59e0b;
  --accent-red: #ef4444;
  --accent-cyan: #06b6d4;
  --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
  --gradient-accent: linear-gradient(135deg, #8b5cf6, #ec4899);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  --gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
  --gradient-success: linear-gradient(135deg, #10b981, #059669);
  --gradient-card: linear-gradient(135deg, rgba(99,102,241,0.04), rgba(139,92,246,0.02));
  --bg-glass: rgba(255,255,255,0.05);
  --border-subtle: rgba(226,232,240,0.5);
  --shadow-glow: 0 4px 20px rgba(99,102,241,0.15);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* â”€â”€â”€ 1. NAVIGATION â”€â”€â”€ */
.nav-link-admin {
  background: rgba(245,158,11,0.1);
  color: #d97706;
  font-weight: 600;
  border: 1px solid rgba(245,158,11,0.2);
}
.nav-link-admin:hover {
  background: rgba(245,158,11,0.2);
  color: #b45309;
}
.nav-link-admin i {
  color: #d97706;
}

/* â”€â”€â”€ 2. DRAWER (Mobile) â”€â”€â”€ */
.drawer-section-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.drawer-nav-item.drawer-admin {
  background: rgba(245,158,11,0.08);
  color: #d97706;
  font-weight: 600;
}
.drawer-nav-item.drawer-admin:hover {
  background: rgba(245,158,11,0.15);
}
.drawer-nav-item.drawer-logout {
  color: var(--error);
}
.drawer-nav-item.drawer-logout i {
  color: var(--error);
}

/* â”€â”€â”€ 3. AUTH PAGES â€” Premium â”€â”€â”€ */
.auth-page-enhanced {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--bg);
  position: relative;
}
.auth-page-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
.auth-card-enhanced {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}
.auth-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.auth-card-enhanced .auth-header {
  text-align: center;
  margin-bottom: 32px;
}
.auth-card-enhanced .auth-header .auth-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(99,102,241,0.25);
}
.auth-card-enhanced .auth-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  color: var(--text);
}
.auth-card-enhanced .auth-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}
.auth-card-enhanced .auth-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(16,185,129,0.05);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.auth-card-enhanced .auth-social-proof i {
  color: var(--success);
}
.auth-card-enhanced .auth-social-proof strong {
  color: var(--text);
}
.auth-card-enhanced .form-group {
  margin-bottom: 20px;
}
.auth-card-enhanced .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.auth-card-enhanced .form-group .form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.auth-card-enhanced .form-group .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
  background: var(--surface);
}
.auth-card-enhanced .btn-block {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: var(--radius);
  margin-top: 8px;
}
.auth-card-enhanced .auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.auth-card-enhanced .auth-footer a {
  color: var(--primary);
  font-weight: 600;
}
.auth-card-enhanced .auth-footer a:hover {
  color: var(--primary-dark);
}
.auth-card-enhanced .auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.auth-card-enhanced .auth-divider::before,
.auth-card-enhanced .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-card-enhanced .auth-divider span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.auth-card-enhanced .auth-alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-card-enhanced .auth-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.auth-card-enhanced .auth-alert-success {
  background: #f0fdf4;
  color: #065f46;
  border: 1px solid #bbf7d0;
}

/* â”€â”€â”€ 4. HOMEPAGE â€” Trust Bar â”€â”€â”€ */
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 0;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  opacity: 0.7;
}
.trust-bar-item i {
  font-size: 1.1rem;
}

/* â”€â”€â”€ 5. TESTIMONIALS â”€â”€â”€ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testimonial-card .quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
  font-family: serif;
}
.testimonial-card .stars {
  color: var(--accent-warm);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card .text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-card .author-info {
  line-height: 1.4;
}
.testimonial-card .author-name {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  color: var(--text);
}
.testimonial-card .author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}
.testimonial-card .verified-badge {
  font-size: 0.7rem;
  color: var(--success);
  display: block;
  margin-top: 2px;
}
.testimonial-card .verified-badge i {
  margin-right: 2px;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* â”€â”€â”€ 6. COMPARISON TABLE â”€â”€â”€ */
.comparison-section {
  background: var(--surface);
}
.comparison-table-wrap {
  max-width: 640px;
  margin: 0 auto;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-table th.bravado-col {
  color: var(--primary);
}
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text);
}
.comparison-table .check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
}
.comparison-table .cross {
  color: var(--error);
  font-weight: 700;
  font-size: 1.1rem;
}
.badge-bravado {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

/* â”€â”€â”€ 7. WALLET / DEPOSIT â€” Premium Additions â”€â”€â”€ */
.wallet-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.section-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 24px;
}
.section-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-card h3 i {
  color: var(--primary);
}
.section-card .section-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: -12px;
  margin-bottom: 20px;
}
.tx-pending .tx-amount .val {
  color: var(--accent-warm);
}
.tx-pending .tx-icon {
  background: rgba(245,158,11,0.12);
  color: var(--accent-warm);
}
.wallet-info-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(6,182,212,0.05);
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.wallet-info-card i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}
.wallet-info-card strong {
  color: var(--text);
}

/* â”€â”€â”€ 8. ORDER PAGE â€” Premium Additions â”€â”€â”€ */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.order-main {
  min-width: 0;
}
.order-header {
  margin-bottom: 28px;
}
.order-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.order-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.order-rate {
  background: rgba(99,102,241,0.08);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}
.order-range {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 6px 0;
}
.order-section {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.order-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.order-section-title i {
  color: var(--primary);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.package-card {
  position: relative;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}
.package-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 2px 8px rgba(99,102,241,0.08);
}
.package-card.active {
  border-color: var(--primary);
  background: rgba(99,102,241,0.04);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.package-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.package-qty {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}
.package-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.package-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 4px;
}
.package-custom {
  border-style: dashed;
  border-color: var(--border);
  background: var(--bg);
}
.package-custom-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.package-custom-arrow {
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 4px;
}
.qty-controls {
  display: grid;
  gap: 16px;
}
.qty-input-group {
  display: flex;
  align-items: center;
  gap: 0;
}
.qty-input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  transition: border-color 0.2s ease;
}
.qty-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.qty-suffix {
  padding: 14px 16px;
  background: var(--surface-hover);
  border: 2px solid var(--border);
  border-left: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.link-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.link-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.order-submit {
  padding: 16px;
  font-size: 1.05rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(99,102,241,0.25);
}
.order-auth-prompt {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.order-auth-prompt p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.order-auth-actions {
  display: flex;
  gap: 12px;
}
.order-auth-actions .btn {
  flex: 1;
}

/* Order Summary Sidebar */
.order-sidebar {
  position: sticky;
  top: 88px;
}
.order-summary-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.order-summary-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.order-summary-card h3 i {
  color: var(--primary);
}
.summary-rows {
  display: grid;
  gap: 12px;
}
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.summary-label {
  color: var(--text-secondary);
}
.summary-value {
  font-weight: 600;
  color: var(--text);
  text-align: right;
  max-width: 60%;
}
.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}
.summary-total {
  font-size: 1rem;
  padding-top: 4px;
}
.summary-total .summary-label {
  font-weight: 700;
  color: var(--text);
}
.summary-total .summary-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}
.summary-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.summary-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.summary-badge i {
  color: var(--success);
}
.summary-deposit-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px;
  background: rgba(99,102,241,0.05);
  border: 1px solid rgba(99,102,241,0.1);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.summary-deposit-notice i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}
.summary-deposit-notice p {
  flex: 1;
}

/* â”€â”€â”€ 9. TICKET DETAIL PAGE â”€â”€â”€ */
.ticket-detail-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.td-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 20px;
}
.td-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.td-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
}
.td-info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.td-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.td-info strong {
  color: var(--text);
  font-weight: 600;
}
.td-message {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}
.td-message-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reply-list {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.reply-item {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.15s ease;
}
.reply-item.staff {
  border-left: 3px solid var(--primary);
  background: rgba(99,102,241,0.02);
}
.reply-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.reply-staff-badge {
  background: var(--gradient-primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
}
.reply-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}
.reply-form-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.reply-form-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reply-form-card h3 i {
  color: var(--primary);
}
.reply-form-card textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.6;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.reply-form-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.ticket-closed-banner {
  text-align: center;
  padding: 24px;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}
.ticket-closed-banner i {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.ticket-closed-banner p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* â”€â”€â”€ 10. PUBLIC SUPPORT PAGE â”€â”€â”€ */
.support-public-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.support-intro-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.support-intro-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}
.support-intro-card i {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.support-intro-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.support-intro-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.support-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.support-opt {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s ease;
}
.support-opt:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.support-opt i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.support-opt h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.support-opt p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* â”€â”€â”€ 11. EMPTY STATES â”€â”€â”€ */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-xl);
}
.empty-state i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
  opacity: 0.5;
}
.empty-state h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.empty-state p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.empty-state .btn {
  border-radius: var(--radius);
}

/* â”€â”€â”€ 12. ORDERS PAGE â”€â”€â”€ */
.orders-page {
  padding: 32px 20px 80px;
}
.orders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.orders-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
}

/* â”€â”€â”€ 13. TICKETS PAGE â”€â”€â”€ */
.tickets-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.tc-last-reply {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tc-last-reply i {
  font-size: 0.7rem;
}

/* â”€â”€â”€ 14. CREATE TICKET PAGE â”€â”€â”€ */
.create-ticket-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.create-ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.create-ticket-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
}
.order-select-group {
  display: grid;
  gap: 8px;
}

/* â”€â”€â”€ 15. SERVICE CARD PRICING ENHANCEMENTS â”€â”€â”€ */
.svc-card-starting {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.svc-card-starting strong {
  color: var(--primary);
  font-size: 1.1rem;
}
.svc-card-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.svc-example {
  font-size: 0.75rem;
  background: var(--surface-hover);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 500;
  border: 1px solid var(--border);
}

/* â”€â”€â”€ 16. SERVICE DETAIL PAGE ENHANCEMENTS â”€â”€â”€ */
.service-header-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.svc-badge-detail {
  font-size: 0.7rem;
  background: var(--gradient-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.svc-rate-secondary {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  background: var(--surface-hover);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.service-starting-price {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.service-starting-price strong {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
}
.service-range-detail {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.range-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.range-item i {
  color: var(--primary);
  font-size: 0.85rem;
}

/* â”€â”€â”€ 17. MODAL â”€â”€â”€ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.modal-content {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.modal-content.modal-lg {
  max-width: 800px;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}
.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: all 0.15s ease;
}
.modal-close:hover {
  background: var(--surface-hover);
  color: var(--text);
}
.modal-body {
  padding: 24px;
}
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.modal-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cat-tab {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid var(--border-subtle);
  background: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all