/* ============================================================
           ROOT VARIABLES - Dark Theme (same as previous pages)
           ============================================================ */
:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2234;
  --bg-card-hover: #1f2a40;
  --bg-input: #0d1524;
  --bg-hover: #243049;
  --text-primary: #f0f4ff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #2a3650;
  --border-light: #1e2a42;
  --accent-gold: #f0c13d;
  --accent-gold-dark: #d4a832;
  --accent-gold-light: #f8d97a;
  --gradient-gold: linear-gradient(135deg, #f0c13d, #d4a832);
  --gradient-dark: linear-gradient(135deg, #0a0e17, #111827);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(240, 193, 61, 0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: calc(14px + 0.2vw);
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
} */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-dark);
}

/* ============================================================
           HERO SECTION — with banner image
           ============================================================ */
.el-hero {
  position: relative;
  padding: clamp(60px, 10vh, 100px) 20px clamp(40px, 6vh, 60px);
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* banner image — covers entire hero */
.el-hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45) saturate(1.1);
  transition: filter 0.4s ease;
}
/* subtle gradient overlay for readability */
.el-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(10, 14, 23, 0.4) 0%,
    rgba(10, 14, 23, 0.75) 90%
  );
  z-index: 1;
  pointer-events: none;
}
.el-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.el-hero-badge {
  display: inline-block;
  background: rgba(240, 193, 61, 0.15);
  color: var(--accent-gold);
  padding: clamp(4px, 0.5vw, 8px) clamp(14px, 1.5vw, 24px);
  border-radius: 50px;
  font-size: clamp(0.7rem, 0.8vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(240, 193, 61, 0.2);
  margin-bottom: clamp(12px, 1.5vw, 20px);
  backdrop-filter: blur(2px);
  background: rgba(10, 14, 23, 0.5);
}
.el-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: clamp(12px, 1.5vw, 20px);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.el-hero h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
.el-hero p {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto clamp(20px, 2.5vw, 32px);
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.el-hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 50px);
  flex-wrap: wrap;
  margin-top: clamp(16px, 2vw, 24px);
}
.el-hero-stats .stat-item {
  text-align: center;
  background: rgba(10, 14, 23, 0.45);
  backdrop-filter: blur(4px);
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid rgba(240, 193, 61, 0.1);
}
.el-hero-stats .stat-item .number {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
}
.el-hero-stats .stat-item .label {
  font-size: clamp(0.65rem, 0.7vw, 0.8rem);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
           CONTAINER
           ============================================================ */
.el-container {
  max-width: 1200px;
  /* margin: 0 auto; */
  padding: clamp(20px, 3vw, 40px) clamp(16px, 2vw, 24px);
}

/* ============================================================
           SECTION HEADERS
           ============================================================ */
.el-section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: clamp(8px, 1vw, 12px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
}
.el-section-title i {
  color: var(--accent-gold);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
}
.el-section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  margin-bottom: clamp(24px, 3vw, 36px);
  padding-left: clamp(0px, 1vw, 4px);
}

/* ============================================================
           GRID CARDS
           ============================================================ */
.el-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(30px, 4vw, 48px);
}
.el-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.el-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.el-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.el-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}
.el-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.el-card:hover::before {
  opacity: 1;
}
.el-card .el-card-icon {
  width: clamp(48px, 5vw, 60px);
  height: clamp(48px, 5vw, 60px);
  border-radius: 50%;
  background: rgba(240, 193, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  color: var(--accent-gold);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  border: 1px solid rgba(240, 193, 61, 0.15);
  flex-shrink: 0;
}
.el-card h3 {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: clamp(6px, 0.8vw, 10px);
}
.el-card p {
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: var(--text-secondary);
  line-height: 1.7;
}
.el-card ul {
  list-style: none;
  padding: 0;
  margin: clamp(8px, 1vw, 12px) 0 0;
}
.el-card ul li {
  padding: clamp(4px, 0.5vw, 6px) 0;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--border-color);
}
.el-card ul li:last-child {
  border-bottom: none;
}
.el-card ul li i {
  color: var(--accent-gold);
  margin-top: 4px;
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  flex-shrink: 0;
}

/* ============================================================
           CTA SECTION
           ============================================================ */
.el-cta {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 50px) clamp(24px, 3vw, 40px);
  text-align: center;
  border: 1px solid var(--border-color);
  margin-top: clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
}
.el-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
.el-cta h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: clamp(8px, 1vw, 12px);
}
.el-cta p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto clamp(20px, 2.5vw, 30px);
}
.el-cta .btn-group {
  display: flex;
  gap: clamp(10px, 1.5vw, 16px);
  justify-content: center;
  flex-wrap: wrap;
}
.el-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(10px, 1.2vw, 14px) clamp(24px, 2.5vw, 36px);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.el-btn-primary {
  background: var(--gradient-gold);
  color: #000000;
}
.el-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 193, 61, 0.3);
}
.el-btn-secondary {
  background: var(--bg-input);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}
.el-btn-secondary:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--accent-gold);
}

/* ============================================================
           QUICK NAV
           ============================================================ */
.el-quick-nav {
  position: sticky;
  bottom: clamp(16px, 2vw, 24px);
  display: flex;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 10px);
  flex-wrap: wrap;
  background: var(--bg-card);
  padding: clamp(10px, 1.2vw, 14px) clamp(14px, 1.8vw, 20px);
  border-radius: 50px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  margin: clamp(20px, 3vw, 32px) auto 0;
  max-width: 90%;
  backdrop-filter: blur(12px);
  background: rgba(26, 34, 52, 0.95);
  z-index: 10;
}
.el-quick-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  font-weight: 500;
  padding: clamp(4px, 0.5vw, 6px) clamp(10px, 1.2vw, 16px);
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.el-quick-nav a:hover {
  color: var(--accent-gold);
  background: var(--bg-hover);
}
.el-quick-nav a i {
  margin-right: 4px;
  font-size: clamp(0.6rem, 0.7vw, 0.7rem);
}

/* ============================================================
           RESPONSIVE
           ============================================================ */
@media (min-width: 1400px) {
  html {
    font-size: calc(15px + 0.2vw);
  }
  .el-container {
    max-width: 1300px;
  }
}
@media (max-width: 992px) {
  .el-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }
  .el-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  }
}
@media (max-width: 768px) {
  html {
    font-size: calc(13px + 0.3vw);
  }
  .el-hero {
    padding: clamp(40px, 8vh, 60px) 16px clamp(30px, 5vh, 40px);
    min-height: 50vh;
  }
  .el-hero-stats {
    gap: clamp(16px, 3vw, 30px);
  }
  .el-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .el-grid-2 {
    grid-template-columns: 1fr;
  }
  .el-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .el-card {
    padding: clamp(16px, 2.5vw, 20px);
  }
  .el-quick-nav {
    border-radius: var(--radius-md);
    padding: clamp(8px, 1.2vw, 12px) clamp(10px, 1.5vw, 16px);
    max-width: 95%;
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .el-quick-nav::-webkit-scrollbar {
    height: 2px;
  }
  .el-quick-nav::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
  }
  .el-cta .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .el-cta .btn-group .el-btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: calc(12px + 0.4vw);
  }
  .el-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .el-hero p {
    font-size: clamp(0.85rem, 2.8vw, 0.95rem);
  }
  .el-grid-3 {
    grid-template-columns: 1fr;
  }
  .el-hero-stats .stat-item {
    padding: 4px 12px;
  }
}
@media (max-width: 360px) {
  html {
    font-size: calc(11px + 0.5vw);
  }
  .el-hero h1 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }
  .el-container {
    padding: clamp(12px, 2vw, 16px);
  }
  .el-quick-nav a {
    font-size: clamp(0.55rem, 2vw, 0.65rem);
    padding: clamp(3px, 0.5vw, 4px) clamp(6px, 1.2vw, 10px);
  }
}
::selection {
  background: var(--accent-gold);
  color: #000000;
}
::-moz-selection {
  background: var(--accent-gold);
  color: #000000;
}
:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}
