/* ==========================================================================
   7Star Telecom - Custom Stylesheet (Orange & White Corporate Theme)
   ========================================================================== */

:root {
  --primary: #ea580c; /* Corporate Orange */
  --primary-hover: #c2410c;
  --primary-light: #ffedd5;
  --primary-glow: rgba(234, 88, 12, 0.15);
  
  --bg-primary: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  
  --status-new: #3b82f6;      /* Blue */
  --status-opened: #06b6d4;   /* Cyan */
  --status-pending: #f59e0b;  /* Amber */
  --status-resolved: #10b981; /* Emerald */
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Custom Navigation Header */
.custom-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Orange Buttons & Highlights */
.btn-orange {
  background-color: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-orange:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-outline-orange {
  color: var(--primary);
  border: 1px solid var(--primary);
  background-color: transparent;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-outline-orange:hover {
  color: #ffffff;
  background-color: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.text-orange {
  color: var(--primary) !important;
}

.bg-orange-light {
  background-color: var(--primary-light) !important;
}

/* Stepper Component */
.step-indicator-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 1.5rem;
}

.step-indicator-bar::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.indicator-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  z-index: 2;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  border-color: var(--primary);
  color: #ffffff;
  background-color: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
}

.indicator-dot.completed {
  border-color: var(--primary);
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Choice Cards */
.choice-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.choice-card:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.choice-icon {
  font-size: 2.5rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.choice-card:hover .choice-icon {
  color: var(--primary);
}

/* Status Badges */
.badge-status {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  display: inline-block;
}

.badge-new,
.badge-unopened {
  background-color: #dc2626 !important; /* High-Visibility Bright Red */
  color: #ffffff !important;
  border: 1px solid #b91c1c;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.25);
}

.badge-opened {
  background-color: #ef4444 !important; /* Vivid Red */
  color: #ffffff !important;
  border: 1px solid #dc2626;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.25);
}

.badge-pending {
  background-color: #ea580c !important; /* Deep Amber Red */
  color: #ffffff !important;
  border: 1px solid #c2410c;
  box-shadow: 0 2px 4px rgba(234, 88, 12, 0.25);
}

.badge-resolved {
  background-color: rgba(16, 185, 129, 0.15) !important;
  color: #047857 !important;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 600;
}

/* Audit Log Timeline */
.audit-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.audit-item {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  border-left: 2px solid var(--border-color);
}

.audit-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

/* General Layout Items */
.wizard-card {
  min-height: 420px;
}

/* Wizard Steps */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  background-color: #ffffff;
  color: var(--text-muted);
}
