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

:root {
  --red:        #cc1111;
  --red-bright: #e82020;
  --red-dark:   #8a0000;
  --white:      #ffffff;
  --off-white:  #f5f5f5;
  --dark:       #0d0000;
  --card-bg:    rgba(255,255,255,0.96);
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,0,0,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  border-bottom: 1px solid rgba(200,0,0,0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
}

.logo img { height: 40px; width: auto; }

.logo-badge {
  background: var(--red);
  border-radius: 6px;
  padding: 3px 7px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--white);
}

.logo-badge svg { width: 14px; height: 14px; fill: var(--white); }

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

nav ul a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color .2s;
}
nav ul a:hover { color: #ff6666; }
nav ul a.active { color: var(--red-bright); }

.btn-nav {
  background: var(--red);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.btn-nav:hover { background: var(--red-bright); }
.btn-nav svg { width: 16px; height: 16px; fill: white; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 40% 50%, #8a0000 0%, #3a0000 45%, #0d0000 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,80,80,0.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,120,120,0.3) 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px;
  background-position: 0 0, 30px 30px;
  animation: sparkle 8s linear infinite;
  opacity: 0.4;
}

@keyframes sparkle {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}

.hero-wave {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 36px;
  max-width: 420px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 24px rgba(180,0,0,0.5);
}
.btn-cta:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn-cta svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

.hero-mascot {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.mascot-placeholder {
  width: 340px;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-svg { width: 100%; height: 100%; }

/* ── FEATURE CARDS ── */
.cards-section {
  position: relative;
  z-index: 5;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, #5a0000 0%, #1a0000 60%, #0d0000 100%);
  padding: 0 40px 60px;
}

.cards-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transform: translateY(-40px);
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 28px 24px;
  color: #111;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: #111;
}

.card ul { list-style: none; padding: 0; }
.card ul li {
  font-size: 0.88rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.card ul li::before {
  content: '●';
  color: var(--red);
  font-size: 0.55rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── ENGAGEMENT SECTION ── */
.engagement {
  background: radial-gradient(ellipse 80% 100% at 50% 50%, #6a0000 0%, #1a0000 60%, #0d0000 100%);
  padding: 60px 40px 80px;
  text-align: center;
}

.engagement h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 40px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.engagement-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.engagement-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.engagement-list li .bullet-icon {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.engagement-list li .bullet-icon svg { width: 12px; height: 12px; fill: white; }

/* ── FOOTER ── */
footer {
  background: #0a0000;
  border-top: 1px solid rgba(200,0,0,0.2);
}

.footer-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color .2s;
}
.footer-links a:hover { color: #ff6666; }

.footer-legal {
  background: #060000;
  padding: 14px 40px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* ── CONTACT PAGE ── */
.contact-hero {
  background: radial-gradient(circle at 70% 30%, #4a0000 0%, var(--dark) 60%);
  padding: 80px 40px 140px;
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.08;
  pointer-events: none;
}

.contact-hero .hero-glow {
  position: absolute;
  right: 10%;
  top: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(185,0,0,0.35) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.contact-hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.contact-hero-text { flex: 1; }

.contact-hero-text h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.contact-hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
}

.contact-hero-mascot {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.contact-hero-mascot img { max-height: 420px; object-fit: contain; }

.contact-form-wrap {
  max-width: 900px;
  margin: -60px auto 0;
  padding: 0 20px 80px;
  position: relative;
  z-index: 5;
}

.contact-form-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.3);
}

.contact-form-card .form-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-form-card .form-icon {
  background: var(--off-white);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-card .form-icon svg { width: 24px; height: 24px; fill: var(--red); }

.contact-form-card .form-header h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: #111;
}

.contact-form-card .form-header p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 6px;
}

.form-group label .required { color: var(--red); }

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #111;
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,17,17,0.1);
}

.form-group.has-error label,
.checkbox-group.has-error label {
  color: #c62828;
}

.form-group.has-error input,
.form-group.has-error textarea,
.checkbox-group.has-error input[type="checkbox"] {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.12);
}

.field-error {
  margin-top: 6px;
  color: #c62828;
  font-size: 0.8rem;
  font-weight: 700;
}

.checkbox-group .field-error {
  flex-basis: 100%;
  margin-top: 0;
}

.form-group textarea { min-height: 130px; resize: vertical; }
.form-group.full { grid-column: 1 / -1; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--red); flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.85rem; color: #555; line-height: 1.5;
}

.checkbox-group label a { color: var(--red); text-decoration: none; }
.checkbox-group label a:hover { text-decoration: underline; }

.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 24px rgba(180,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn-submit svg { width: 20px; height: 20px; fill: white; transform: rotate(45deg); }

.form-note { text-align: center; font-size: 0.85rem; color: #888; margin-top: 16px; font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { max-width: 100%; }
  .hero-mascot { display: none; }
  .cards-wrap { grid-template-columns: 1fr; }
  nav ul { gap: 18px; }
}

@media (max-width: 768px) {
  .contact-hero { padding: 40px 20px 100px; }
  .contact-hero-wrap { flex-direction: column; text-align: center; }
  .contact-hero-text p { max-width: 100%; }
  .contact-hero-mascot { display: none; }
  .contact-form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 0 16px; }
  .hero-content { padding: 60px 20px 100px; }
  .cards-section { padding: 0 16px 40px; }
  .engagement { padding: 40px 20px 60px; }
  .footer-links { gap: 30px; padding: 20px; }
}
