/* ============================================
   Eagles Music Academy — Custom Styles
   Premium LMS Theme
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --gold: #d4a843;
  --gold-light: #f0dca0;
  --gold-dark: #b8922e;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --brand-50: #fdf8ed;
  --brand-100: #f7ebd0;
  --brand-200: #eed8a4;
  --brand-500: #d4a843;
  --brand-600: #c49630;
  --brand-700: #a67d22;
  --teal-deep: #0d4f4f;
  --emerald: #10b981;
  --cream: #fefcf6;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);
  --shadow-premium:
    0 20px 60px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 12px 40px rgba(15, 23, 42, 0.12);
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #334155;
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    #f8fafc 50%,
    #f0fdf4 100%
  );
  min-height: 100vh;
  line-height: 1.6;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: "Playfair Display", "Poppins", Georgia, serif;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 168, 67, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}

/* ---------- Top Navigation ---------- */
.nav-main {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.nav-main.scrolled {
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: "Playfair Display", "Poppins", Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  transition: var(--transition);
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.785);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--navy);
  background: rgba(212, 168, 67, 0.08);
}

.nav-links a.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.25);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
}

.btn-secondary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 10px;
}
.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(13, 79, 79, 0.7) 50%,
    rgba(212, 168, 67, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: "Playfair Display", "Poppins", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div {
  text-align: center;
}
.hero-stats .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-stats .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ---------- Section Containers ---------- */
.section {
  padding: 5rem 1.5rem;
}
.section-narrow {
  max-width: 80rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.section-label::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-image img {
  transform: scale(1.08);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent 60%);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
}

.card-badge-gold {
  background: rgba(212, 168, 67, 0.9);
  color: #fff;
}

.card-badge-free {
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
}

.card-body {
  padding: 1.5rem;
}

.card-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.card-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- Feature Cards ---------- */
.feature-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(
    135deg,
    var(--brand-50) 0%,
    var(--brand-100) 100%
  );
  color: var(--gold-dark);
}

.feature-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

/* ---------- Instructor Cards ---------- */
.instructor-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
  text-align: center;
}

.instructor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.instructor-banner {
  height: 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-deep) 100%);
  position: relative;
}

.instructor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #fff;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.instructor-avatar-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
}

.instructor-info {
  padding: 3.5rem 1.5rem 1.5rem;
}

.instructor-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.instructor-email {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.instructor-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.instructor-stat {
  padding: 0.75rem;
  border-radius: 10px;
  background: #f8fafc;
}

.instructor-stat-value {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.instructor-stat-label {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Pricing Cards ---------- */
.pricing-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 4px rgba(212, 168, 67, 0.1),
    var(--shadow-card);
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.25rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-amount small {
  font-size: 1rem;
  font-weight: 500;
  color: #94a3b8;
}

.pricing-description {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-top: 1.5rem;
  padding: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- Page Hero (Interior Pages) ---------- */
.page-hero {
  position: relative;
  padding: 4rem 1.5rem;
  overflow: hidden;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.page-hero-dark {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--teal-deep) 60%,
    var(--navy-light) 100%
  );
  color: #fff;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.7;
}

/* ---------- Glass Panels (Dashboard Containers) ---------- */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-premium);
}

/* ---------- Stat Cards ---------- */
.stat-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent, var(--gold));
  border-radius: 0;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: rgba(212, 168, 67, 0.1);
}

@supports (background: color-mix(in srgb, red 10%, transparent)) {
  .stat-card-icon {
    background: color-mix(in srgb, var(--accent, var(--gold)) 10%, transparent);
  }
}

.stat-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin: 0;
}

.stat-card-value {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

/* Dashboard welcome banner — prevent card hover lift */
.card[style*="0f172a"] {
  cursor: default;
}
.card[style*="0f172a"]:hover {
  transform: none;
  box-shadow: var(--shadow-card);
}

/* ---------- Tables ---------- */
.table-container {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding: 1.5rem;
}

.table-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.table-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.premium-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.premium-table thead th {
  padding: 0.875rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  background: #f8fafc;
  border-bottom: 2px solid #f1f5f9;
}

.premium-table tbody td {
  padding: 0.875rem 1.5rem;
  color: #475569;
  border-bottom: 1px solid #f8fafc;
}

.premium-table tbody tr {
  transition: background 0.2s;
}

.premium-table tbody tr:hover {
  background: #fefcf6;
}

/* ---------- Progress Bars ---------- */
.progress-bar {
  height: 8px;
  background: #f1f5f9;
  border-radius: 50px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  transition: width 0.6s ease;
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  color: var(--navy);
  background: #fff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Auth Pages ---------- */
.auth-container {
  max-width: 480px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.auth-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-premium);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-dark),
    var(--gold)
  );
}

.auth-title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

/* ---------- Sidebar (Dashboard) ---------- */
.sidebar {
  width: 270px;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 200;
  background: linear-gradient(180deg, #0c1222 0%, #0f172a 40%, #111d35 100%);
  display: flex;
  flex-direction: column;
  transform: translateX(0);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.sidebar.collapsed {
  width: 72px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  padding: 3px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #fff;
  /* box-shadow: 0 4px 14px rgba(255, 255, 255, 0.875); */
}

.sidebar-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-logo-text {
  overflow: hidden;
  white-space: nowrap;
  transition:
    opacity 0.25s,
    width 0.3s;
}

.sidebar-logo-text span:first-child {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.15;
}

.sidebar-logo-text span:last-child {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.sidebar.collapsed .sidebar-logo-text {
  width: 0;
  opacity: 0;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  margin: 0.5rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.sidebar-user-info {
  overflow: hidden;
  white-space: nowrap;
  transition:
    opacity 0.25s,
    width 0.3s;
}

.sidebar-user-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
}

.sidebar-user-role {
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: block;
}

.sidebar.collapsed .sidebar-user-info {
  width: 0;
  opacity: 0;
}

.sidebar.collapsed .sidebar-user {
  justify-content: center;
  padding: 0.75rem;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.5rem 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.sidebar-nav::-webkit-scrollbar {
  width: 4px;
}
.sidebar-nav::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.sidebar-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.25);
  padding: 1rem 0.75rem 0.5rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 0.25s;
}

.sidebar.collapsed .sidebar-label {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.sidebar-link.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
  font-weight: 600;
}

.sidebar-link .icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  opacity: 0.8;
}

.sidebar-link.active .icon {
  opacity: 1;
}

.sidebar-link-label {
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    opacity 0.25s,
    width 0.3s;
}

.sidebar.collapsed .sidebar-link-label {
  width: 0;
  opacity: 0;
}

.sidebar.collapsed .sidebar-link {
  justify-content: center;
  padding: 0.7rem;
}

.sidebar-footer {
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-footer a:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
}

.sidebar.collapsed .sidebar-footer a {
  justify-content: center;
}

.sidebar.collapsed .sidebar-footer .sidebar-link-label {
  width: 0;
  opacity: 0;
}

.sidebar-toggle {
  position: absolute;
  top: 1.35rem;
  right: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.7rem;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sidebar-toggle:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.sidebar.collapsed .sidebar-toggle {
  transform: rotate(180deg);
}

/* Sidebar overlay for mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 190;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile sidebar toggle button (hamburger) */
.sidebar-mobile-toggle {
  display: none;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 280;
  box-shadow: 0 6px 24px rgba(212, 168, 67, 0.4);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.sidebar-mobile-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

.sidebar-mobile-toggle.active {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.4);
}

/* Tooltip for collapsed sidebar */
.sidebar.collapsed .sidebar-link {
  position: relative;
}

.sidebar.collapsed .sidebar-link::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.sidebar.collapsed .sidebar-link:hover::after {
  opacity: 1;
}

/* ---------- Contact Info ---------- */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f8fafc;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  margin-top: 0.15rem;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, var(--navy) 0%, #050d1a 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 80rem;
  margin: 0 auto;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- Alerts ---------- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-success {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.alert-error {
  background: linear-gradient(135deg, #fef2f2, #fecaca);
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ---------- CTA / Banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: 4rem 2.5rem;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--teal-deep) 60%,
    var(--navy-light) 100%
  );
  color: #fff;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.12) 0%,
    transparent 70%
  );
}

.cta-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  position: relative;
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ---------- Grid Utilities ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ---------- Dashboard Layout ---------- */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.dashboard-main {
  flex: 1;
  min-width: 0;
  margin-left: 270px;
  padding: 1.5rem 2rem 2rem;
  transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-layout.sidebar-collapsed .dashboard-main {
  margin-left: 72px;
}

/* Dashboard breadcrumb / top bar */
.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.dashboard-topbar-title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.dashboard-topbar-breadcrumb {
  font-size: 0.8rem;
  color: #94a3b8;
}

.dashboard-topbar-breadcrumb a {
  color: var(--gold-dark);
  text-decoration: none;
}

/* ---------- Mobile Hamburger ---------- */
.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--navy);
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.animate-fade-up:nth-child(2) {
  animation-delay: 0.1s;
}
.animate-fade-up:nth-child(3) {
  animation-delay: 0.2s;
}
.animate-fade-up:nth-child(4) {
  animation-delay: 0.3s;
}
.animate-fade-up:nth-child(5) {
  animation-delay: 0.4s;
}
.animate-fade-up:nth-child(6) {
  animation-delay: 0.5s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }

  /* Sidebar off-canvas on tablet */
  .sidebar {
    transform: translateX(-100%);
    width: 270px !important;
  }
  .sidebar.mobile-open {
    transform: translateX(0);
  }
  .sidebar.collapsed {
    width: 270px !important;
  }
  .sidebar.collapsed .sidebar-link-label,
  .sidebar.collapsed .sidebar-logo-text,
  .sidebar.collapsed .sidebar-user-info,
  .sidebar.collapsed .sidebar-label {
    width: auto;
    opacity: 1;
    height: auto;
    padding: revert;
    margin: revert;
  }
  .sidebar.collapsed .sidebar-link,
  .sidebar.collapsed .sidebar-user,
  .sidebar.collapsed .sidebar-footer a {
    justify-content: flex-start;
    padding: revert;
  }
  .sidebar-toggle {
    display: none;
  }
  .sidebar-mobile-toggle {
    display: flex;
  }
  .sidebar-overlay.active {
    display: block;
  }
  .dashboard-main {
    margin-left: 0 !important;
    padding: 1.25rem;
  }
  .dashboard-layout.sidebar-collapsed .dashboard-main {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 90;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 70vh;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .section {
    padding: 3rem 1rem;
  }
  .page-hero {
    padding: 3rem 1rem;
  }
  .auth-card {
    padding: 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .dashboard-main {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .nav-container {
    padding: 0.625rem 1rem;
  }
  .hero-content {
    padding: 2.5rem 1rem;
  }
  .sidebar-mobile-toggle {
    bottom: 1rem;
    right: 1rem;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(212, 168, 67, 0.2);
  color: var(--navy);
}

/* ---------- Status Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-success {
  background: #ecfdf5;
  color: #065f46;
}
.badge-warning {
  background: #fffbeb;
  color: #92400e;
}
.badge-info {
  background: #eff6ff;
  color: #1e40af;
}
.badge-danger {
  background: #fef2f2;
  color: #991b1b;
}
