* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── CSS Variables  */
:root {
  /* Brand Accents */
  --red: #C0141C;
  --red-dark: #8B0E14;
  --red-light: #2a0a0b; 

  /* Core Backgrounds */
  --bg-body: #0f0f0f;      /* Main site background */
  --bg-card: #1e1e1e;      /* Pop-out sections and boxes */
  --bg-off: #141414;       /* Subtle section shifts */
  --bg-input: #252525;     /* Text boxes and dropdowns */

  /* Text Colors */
  --text-main: #f0f0f0;    /* Primary readable text */
  --text-muted: #888888;   /* Descriptive/small text */
  --text-label: #bbbbbb;   /* Form labels and subtitles */

  /* UI Elements */
  --border-color: #333333;
  --nav-height: 70px;
  --nav-bg: rgba(15, 15, 15, 0.97);
  --mobile-menu-bg: #1a1a1a;

  /* Admin Specific UI */
  --admin-card-bg: #1e1e1e;
  --admin-row-bg: #252525;
  --admin-topbar-bg: #1a1a1a;
  --stat-card-bg: #1e1e1e;
  --admin-form-card-bg: #1e1e1e;
  --table-header-bg: #252525;
  --table-hover-bg: rgba(192, 20, 28, 0.05);
  --gray-100: #2a2a2a;
  --success-card-bg: #1e1e1e;
  --checkbox-bg: #2a2a2a;
}

/* ── Base Body ── */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #f0f0f0;
  background: #0f0f0f;
  overflow-x: hidden;
  line-height: 1.6;
}
.page {
  display: none;
}
.page.active {
  display: block;
}
.btn-red {
  background-color: #C0141C;
  color: #ffffff;
  border: none;
  padding: 13px 30px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
.btn-red:hover {
  background-color: #8B0E14;
  transform: translateY(-2px);
}
.btn-outline {
  background-color: transparent;
  color: #f0f0f0;
  border: 2px solid #333333;
  padding: 13px 30px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover {
  border-color: #C0141C;
  color: #C0141C;
}
.full-width {
  width: 100%;
  margin-top: 8px;
  min-height: 46px;
}
.link-btn {
  background: none;
  border: none;
  color: #C0141C;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
  transition: letter-spacing 0.2s;
}
.link-btn:hover {
  letter-spacing: 0.5px;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
}
.section {
  padding: 90px 5%;
  background: #0f0f0f;
}
.bg-off {
  background-color: #141414 !important;
}
.text-center {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C0141C;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 15px;
  color: #888888;
  line-height: 1.75;
  margin-bottom: 46px;
}
footer {
  background: #0d0d0d;
  color: #888888;
  padding: 20px 5% 10px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333333;
}
.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 13px;
  color: #888888;
  max-width: 220px;
  margin-top: 8px;
  line-height: 1.5;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
}
.footer-col button {
  display: block;
  text-align: left;
  font-size: 11px;
  color: #888888;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.footer-col button:hover {
  color: #C0141C;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #444444;
  margin-top: 10px;
}
.footer-col button {
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-col h4 {
  font-size: 12px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 12px;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 2fr;
    gap: 30px;
  }
}