/* ─── MetaMind SRCP — Shared Styles ─── */

:root {
  --teal:       #00B5B8;
  --teal-dark:  #008E91;
  --teal-light: #e0f7f7;
  --mint:       #F0FAFA;
  --navy:       #1A2E35;
  --white:      #ffffff;
}

* { box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--mint);
  color: var(--navy);
  margin: 0;
}

/* ── Dashed circle accent ── */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(0, 181, 184, 0.25);
  pointer-events: none;
}

/* ── Section banner ── */
.section-banner {
  background: var(--teal);
  padding: 2.2rem 1rem 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-banner h2 {
  color: var(--white);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.section-banner .underline {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  border-radius: 4px;
}

/* ── Form elements ── */
.form-label {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.form-control,
.form-select {
  border: 1.5px solid rgba(0, 181, 184, 0.35);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  padding: 0.6rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 181, 184, 0.12);
  outline: none;
}

/* ── Buttons ── */
.btn-teal {
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 2rem;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-assessment-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-weight: 800;
  border-radius: 50px;
  padding: 0.65rem 2rem;
  font-size: 0.95rem;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-assessment-outline:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* ── Footer ── */
footer {
  background: var(--navy);
  padding: 2.5rem 1rem;
  text-align: center;
}
footer .brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
footer .brand em { font-style: normal; color: var(--teal); }
footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0.4rem 0 0;
}
footer a { color: var(--teal); text-decoration: none; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up    { animation: fadeUp 0.7s ease both; }
.delay-1    { animation-delay: 0.15s; }
.delay-2    { animation-delay: 0.3s; }
.delay-3    { animation-delay: 0.45s; }

/* ════════════════════════════════════
   RESPONSIVE — shared components
   ════════════════════════════════════ */

@media (max-width: 768px) {
  .section-banner h2 { font-size: 1.5rem; }

  /* stack bootstrap rows on mobile where needed */
  .row.g-3 > [class*="col-md"],
  .row.g-4 > [class*="col-md"] {
    margin-bottom: 0;
  }

  /* buttons full width on small screens inside forms */
  .btn-teal-block { width: 100% !important; }
}
