/* BigJackpot.ca - Modern Canadian Lottery Platform */
/* Electric Blue & Vibrant Purple Design System */

:root {
  --bjp-electric: #0066ff;
  --bjp-electric-dark: #0047b3;
  --bjp-electric-light: #3385ff;
  --bjp-purple: #8b4dff;
  --bjp-purple-light: #a573ff;
  --bjp-purple-dark: #6b2fdd;
  --bjp-pearl: #fafbfc;
  --bjp-frost: #f0f4f8;
  --bjp-obsidian: #1a1d24;
  --bjp-graphite: #3d4451;
  --bjp-steel: #6b7280;
  --bjp-divider: #dfe3e8;
  --bjp-white: #ffffff;
  --bjp-success: #059669;
  --bjp-warning: #ea580c;
  --bjp-error: #dc2626;
  --bjp-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --bjp-shadow-sm: 0 3px 10px rgba(0, 102, 255, 0.08);
  --bjp-shadow-md: 0 10px 30px rgba(0, 102, 255, 0.12);
  --bjp-shadow-lg: 0 20px 50px rgba(0, 102, 255, 0.18);
  --bjp-gradient-main: linear-gradient(135deg, #0066ff 0%, #8b4dff 100%);
  --bjp-gradient-accent: linear-gradient(135deg, #8b4dff 0%, #c44dff 100%);
  --bjp-radius-xs: 4px;
  --bjp-radius-sm: 8px;
  --bjp-radius-md: 12px;
  --bjp-radius-lg: 18px;
  --bjp-radius-xl: 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bjp-frost);
  color: var(--bjp-obsidian);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--bjp-obsidian);
  letter-spacing: -0.02em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--bjp-electric);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--bjp-purple);
}

/* Compliance Banner */
.bjp-compliance-top {
  background: var(--bjp-obsidian);
  color: var(--bjp-white);
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.4;
  border-bottom: 3px solid var(--bjp-electric);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Sidebar Navigation */
.bjp-nav-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: var(--bjp-white);
  box-shadow: 3px 0 15px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.bjp-nav-header {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--bjp-divider);
}

.bjp-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.bjp-logo-img {
  width: 48px;
  height: 48px;
  border-radius: var(--bjp-radius-sm);
}

.bjp-brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--bjp-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bjp-nav-menu {
  flex: 1;
  padding: 1.25rem 0;
  overflow-y: auto;
}

.bjp-nav-item {
  display: block;
  padding: 0.85rem 1.5rem;
  color: var(--bjp-graphite);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.bjp-nav-item:hover,
.bjp-nav-item.active {
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.06) 0%, transparent 100%);
  color: var(--bjp-electric);
  border-left-color: var(--bjp-electric);
}

.bjp-nav-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--bjp-divider);
}

.bjp-auth-btns {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bjp-btn-signin,
.bjp-btn-signup {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--bjp-radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.bjp-btn-signin {
  color: var(--bjp-electric);
  background: transparent;
  border: 2px solid var(--bjp-divider);
}

.bjp-btn-signin:hover {
  border-color: var(--bjp-electric);
  background: rgba(0, 102, 255, 0.04);
}

.bjp-btn-signup {
  background: var(--bjp-gradient-main);
  color: var(--bjp-white);
  border: none;
}

.bjp-btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: var(--bjp-shadow-sm);
  color: var(--bjp-white);
}

/* Mobile Toggle */
.bjp-mobile-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
  background: var(--bjp-gradient-main);
  border: none;
  cursor: pointer;
  padding: 0.65rem;
  border-radius: var(--bjp-radius-sm);
  box-shadow: var(--bjp-shadow-md);
}

.bjp-hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bjp-white);
  border-radius: 2px;
  position: relative;
}

.bjp-hamburger::before,
.bjp-hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--bjp-white);
  border-radius: 2px;
  left: 0;
  transition: 0.25s ease;
}

.bjp-hamburger::before { top: -7px; }
.bjp-hamburger::after { top: 7px; }

/* Main Content */
.bjp-main-content {
  margin-left: 280px;
  min-height: 100vh;
}

/* Hero Section */
.bjp-hero-section {
  background: var(--bjp-white);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.bjp-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(139, 77, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.bjp-hero-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bjp-hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(139, 77, 255, 0.1) 100%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bjp-electric);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.bjp-hero-h1 {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.bjp-hero-gradient-text {
  background: var(--bjp-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.25rem;
}

.bjp-hero-desc {
  font-size: 1.15rem;
  color: var(--bjp-graphite);
  max-width: 680px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.bjp-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.bjp-btn-primary,
.bjp-btn-outline {
  padding: 1rem 2rem;
  border-radius: var(--bjp-radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.bjp-btn-primary {
  background: var(--bjp-gradient-main);
  color: var(--bjp-white);
  border: none;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.bjp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 102, 255, 0.4);
  color: var(--bjp-white);
}

.bjp-btn-outline {
  background: transparent;
  color: var(--bjp-electric);
  border: 2px solid var(--bjp-electric);
}

.bjp-btn-outline:hover {
  background: var(--bjp-electric);
  color: var(--bjp-white);
}

/* Section Base */
.bjp-section {
  padding: 5rem 2rem;
}

.bjp-section-alt {
  background: var(--bjp-white);
}

.bjp-container {
  max-width: 1180px;
  margin: 0 auto;
}

.bjp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.bjp-section-h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.bjp-section-h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--bjp-gradient-main);
  border-radius: 2px;
}

.bjp-section-subtitle {
  font-size: 1.1rem;
  color: var(--bjp-graphite);
  margin-top: 1.5rem;
}

.bjp-section-desc {
  font-size: 1rem;
  color: var(--bjp-steel);
  margin-top: 1rem;
  line-height: 1.7;
}

/* Visual Modes Grid */
.bjp-modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.bjp-mode-card {
  background: var(--bjp-white);
  border-radius: var(--bjp-radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--bjp-shadow-sm);
  border: 2px solid var(--bjp-divider);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bjp-mode-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bjp-shadow-md);
  border-color: var(--bjp-electric);
}

.bjp-mode-card.popular {
  border-color: var(--bjp-purple);
  border-width: 3px;
}

.bjp-popular-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bjp-gradient-accent);
  color: var(--bjp-white);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bjp-mode-number {
  font-size: 2.75rem;
  font-weight: 800;
  background: var(--bjp-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.bjp-mode-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bjp-obsidian);
  margin-bottom: 0.65rem;
}

.bjp-mode-features {
  font-size: 0.9rem;
  color: var(--bjp-steel);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.bjp-mode-link {
  display: inline-block;
  color: var(--bjp-electric);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--bjp-purple);
  text-underline-offset: 4px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.bjp-mode-link:hover {
  color: var(--bjp-purple);
  text-decoration-color: var(--bjp-electric);
}

/* How It Works - Timeline Layout */
.bjp-timeline {
  position: relative;
  padding: 2rem 0;
}

.bjp-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--bjp-electric) 0%, var(--bjp-purple) 100%);
  transform: translateX(-50%);
}

.bjp-timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: center;
}

.bjp-timeline-item:nth-child(even) .bjp-timeline-content {
  order: 3;
  text-align: left;
}

.bjp-timeline-item:nth-child(even) .bjp-timeline-empty {
  order: 1;
}

.bjp-timeline-content {
  order: 1;
  text-align: right;
  padding: 1.75rem;
  background: var(--bjp-white);
  border-radius: var(--bjp-radius-md);
  box-shadow: var(--bjp-shadow-sm);
  border: 1px solid var(--bjp-divider);
}

.bjp-timeline-empty {
  order: 3;
}

.bjp-timeline-marker {
  width: 60px;
  height: 60px;
  background: var(--bjp-gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bjp-white);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
  order: 2;
}

.bjp-timeline-h3 {
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
  color: var(--bjp-obsidian);
}

.bjp-timeline-text {
  font-size: 0.95rem;
  color: var(--bjp-graphite);
  line-height: 1.7;
  margin: 0;
}

/* Game Logic Box */
.bjp-logic-box {
  max-width: 820px;
  margin: 3rem auto 0;
  background: var(--bjp-white);
  border-radius: var(--bjp-radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--bjp-divider);
  box-shadow: var(--bjp-shadow-sm);
}

.bjp-logic-text {
  color: var(--bjp-graphite);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.bjp-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.bjp-feature-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.06) 0%, rgba(139, 77, 255, 0.06) 100%);
  border-radius: var(--bjp-radius-sm);
  font-weight: 600;
  color: var(--bjp-obsidian);
  font-size: 0.9rem;
  border: 1px solid rgba(0, 102, 255, 0.15);
}

.bjp-feature-icon {
  font-size: 1.25rem;
}

/* Footer */
.bjp-footer {
  background: var(--bjp-obsidian);
  color: var(--bjp-white);
  padding: 4rem 2rem 1.75rem;
}

.bjp-footer-container {
  max-width: 1180px;
  margin: 0 auto;
}

.bjp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.bjp-footer-brand h4 {
  color: var(--bjp-white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.bjp-footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.75;
}

.bjp-footer-logo-img {
  width: 80px;
  height: 80px;
  border-radius: var(--bjp-radius-sm);
  margin-bottom: 1rem;
  background: var(--bjp-white);
}

.bjp-footer h5 {
  color: var(--bjp-purple-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.bjp-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bjp-contact-list p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0;
}

.bjp-contact-list a {
  color: var(--bjp-electric-light);
}

.bjp-contact-list a:hover {
  color: var(--bjp-purple-light);
}

/* Responsible Gaming Section */
.bjp-responsible-section {
  margin: 2.5rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--bjp-radius-md);
  border-left: 4px solid var(--bjp-purple);
}

.bjp-responsible-section h5 {
  margin-bottom: 1rem;
}

.bjp-responsible-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.bjp-rg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-start;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--bjp-radius-sm);
}

.bjp-rg-badges a {
  display: block;
  transition: transform 0.25s ease;
}

.bjp-rg-badges a:hover {
  transform: scale(1.05);
}

.bjp-rg-badges img {
  height: 48px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.bjp-rg-badges .bjp-age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bjp-rg-badges .bjp-age-badge img {
  height: 65px;
  width: auto;
  max-width: 85px;
}

.bjp-help-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.bjp-help-resources a {
  background: var(--bjp-electric);
  color: var(--bjp-white);
  padding: 0.65rem 1.15rem;
  border-radius: var(--bjp-radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.bjp-help-resources a:hover {
  background: var(--bjp-purple);
  color: var(--bjp-white);
}

/* Footer Links */
.bjp-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.bjp-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.bjp-footer-links a:hover {
  color: var(--bjp-purple-light);
}

.bjp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.bjp-footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.bjp-footer-bottom p + p {
  margin-top: 0.5rem;
}

/* Footer Disclaimer */
.bjp-footer-disclaimer {
  margin: 2.5rem 0 1.75rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--bjp-radius-md);
  border-left: 4px solid var(--bjp-electric);
}

.bjp-footer-disclaimer p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.bjp-footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.bjp-footer-disclaimer strong {
  color: var(--bjp-purple-light);
  font-weight: 700;
}

.bjp-age-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--bjp-electric);
  color: var(--bjp-white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  border: 3px solid var(--bjp-purple);
}

/* Cookie Consent */
.bjp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bjp-obsidian);
  color: var(--bjp-white);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: none;
}

.bjp-cookie-banner.visible {
  display: block;
}

.bjp-cookie-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bjp-cookie-message {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.bjp-cookie-message a {
  color: var(--bjp-purple-light);
  text-decoration: underline;
}

.bjp-cookie-btns {
  display: flex;
  gap: 0.75rem;
}

.bjp-btn-cookie-accept {
  background: var(--bjp-gradient-main);
  color: var(--bjp-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--bjp-radius-sm);
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.bjp-btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.4);
}

/* Page Styles */
.bjp-page-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.bjp-page-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--bjp-divider);
}

.bjp-page-header h1 {
  margin-bottom: 0.5rem;
}

.bjp-page-meta {
  color: var(--bjp-steel);
  font-size: 0.95rem;
  font-weight: 600;
}

.bjp-page-body {
  background: var(--bjp-white);
  border-radius: var(--bjp-radius-md);
  padding: 2.5rem;
  box-shadow: var(--bjp-shadow-sm);
  border: 1px solid var(--bjp-divider);
}

.bjp-content-block {
  margin-bottom: 2.5rem;
}

.bjp-content-block:last-child {
  margin-bottom: 0;
}

.bjp-content-block h2 {
  color: var(--bjp-electric);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bjp-divider);
}

.bjp-content-block h3 {
  color: var(--bjp-obsidian);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.bjp-content-block p {
  color: var(--bjp-graphite);
  line-height: 1.8;
}

.bjp-content-block ul,
.bjp-content-block ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.bjp-content-block li {
  color: var(--bjp-graphite);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.bjp-content-block a {
  color: var(--bjp-electric);
  font-weight: 700;
}

/* Form Styles */
.bjp-form-wrap {
  max-width: 500px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: var(--bjp-white);
  border-radius: var(--bjp-radius-lg);
  box-shadow: var(--bjp-shadow-md);
  border: 1px solid var(--bjp-divider);
}

.bjp-form-title {
  text-align: center;
  color: var(--bjp-obsidian);
  margin-bottom: 0.5rem;
}

.bjp-form-group {
  margin-bottom: 1.25rem;
}

.bjp-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--bjp-obsidian);
  font-size: 0.95rem;
}

.bjp-form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--bjp-divider);
  border-radius: var(--bjp-radius-sm);
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: inherit;
  background: var(--bjp-white);
}

.bjp-form-input:focus {
  outline: none;
  border-color: var(--bjp-electric);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.bjp-form-submit {
  width: 100%;
  background: var(--bjp-gradient-main);
  color: var(--bjp-white);
  border: none;
  padding: 1rem;
  border-radius: var(--bjp-radius-sm);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bjp-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.bjp-form-submit:disabled {
  background: var(--bjp-steel);
  cursor: not-allowed;
  transform: none;
}

.bjp-form-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.bjp-form-footer a {
  color: var(--bjp-electric);
  font-weight: 700;
}

.bjp-form-alert {
  padding: 1rem;
  border-radius: var(--bjp-radius-sm);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.bjp-form-alert.success {
  background: #d1fae5;
  color: var(--bjp-success);
  border: 2px solid var(--bjp-success);
}

.bjp-form-alert.error {
  background: #fee2e2;
  color: var(--bjp-error);
  border: 2px solid var(--bjp-error);
}

/* Contact Grid */
.bjp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.bjp-contact-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bjp-frost);
  border-radius: var(--bjp-radius-sm);
  transition: transform 0.2s ease;
  border: 1px solid var(--bjp-divider);
}

.bjp-contact-item:hover {
  transform: translateY(-3px);
}

.bjp-contact-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.bjp-contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.bjp-contact-item p {
  font-size: 0.95rem;
  margin: 0;
}

.bjp-contact-item a {
  color: var(--bjp-electric);
  font-weight: 700;
}

/* Contact Box */
.bjp-contact-panel {
  background: var(--bjp-frost);
  padding: 1.5rem;
  border-radius: var(--bjp-radius-sm);
  border-left: 4px solid var(--bjp-electric);
  margin-top: 1rem;
}

.bjp-contact-panel p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .bjp-nav-sidebar {
    transform: translateX(-100%);
  }

  .bjp-nav-sidebar.active {
    transform: translateX(0);
  }

  .bjp-mobile-toggle {
    display: block;
  }

  .bjp-main-content {
    margin-left: 0;
  }

  .bjp-hero-h1 {
    font-size: 2.5rem;
  }

  .bjp-modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bjp-timeline::before {
    left: 30px;
  }

  .bjp-timeline-item {
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
  }

  .bjp-timeline-content {
    order: 2 !important;
    text-align: left !important;
  }

  .bjp-timeline-empty {
    display: none;
  }

  .bjp-features-list {
    grid-template-columns: 1fr;
  }

  .bjp-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .bjp-section {
    padding: 3rem 1.25rem;
  }

  .bjp-hero-section {
    padding: 4rem 1.25rem 3rem;
  }

  .bjp-hero-h1 {
    font-size: 2rem;
  }

  .bjp-hero-actions {
    flex-direction: column;
  }

  .bjp-modes-grid {
    grid-template-columns: 1fr;
  }

  .bjp-contact-grid {
    grid-template-columns: 1fr;
  }

  .bjp-footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .bjp-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .bjp-cookie-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

/* Utility */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 1rem; }
