/* ============================================================================
   FSIA — forms-master.css
   Shared registration-form styling: card, inputs (12px rounded, hairline
   borders, soft gold focus ring), labels, custom select chevron, sentence-case
   submit button, top-aligned consent panel, section titles, hero banner.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. FORM LAYOUT BASE — container, groups, rows, inputs, labels, sections
   ---------------------------------------------------------------------------- */
.stat-label {
  font-size: .9rem;
  opacity: .9
}

.form-section {
  padding: 60px 0
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: var(--primary);
  animation: customGlow 2.5s infinite;
  font-weight: 700;
  letter-spacing: 1px
}

.form-container {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  animation: cascadeIn 1s ease-out;
  border: 2px solid var(--primary);
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow: hidden
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  animation: shimmer 3s infinite
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1.5rem
}

.form-header h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: .5rem;
  animation: customGlow 2.5s infinite;
  font-weight: 700
}

.form-header p {
  color: var(--text-light);
  animation: slideInGraceful .8s ease-out .2s both;
  font-weight: 500
}

.form-group {
  margin-bottom: 1.8rem;
  animation: cascadeIn .6s ease-out;
  animation-fill-mode: both
}

.form-group:nth-child(1) {
  animation-delay: .1s
}

.form-group:nth-child(2) {
  animation-delay: .2s
}

.form-group:nth-child(3) {
  animation-delay: .3s
}

.form-group:nth-child(4) {
  animation-delay: .4s
}

.form-group:nth-child(5) {
  animation-delay: .5s
}

.form-group:nth-child(6) {
  animation-delay: .6s
}

.form-group label {
  display: block;
  margin-bottom: .8rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: .3px
}

.form-group .required {
  color: var(--accent);
  font-weight: 700
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e8e0dd;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: all .3s;
  outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .05);
  transform: translateY(-2px)
}

.form-group input::placeholder {
  color: #aaa
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-weight: 400
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.section-header {
  color: var(--primary);
  margin: 2rem 0 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: .5rem;
  animation: cascadeIn .6s ease-out;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: .8rem
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, .03);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  animation: cascadeIn .8s ease-out
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 0
}

.checkbox-group label {
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--text)
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 1.3rem;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  margin-top: 2rem;
  animation: cascadeIn .8s ease-out;
  animation-fill-mode: both;
  position: relative;
  overflow: hidden
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  animation: shimmer 2s infinite
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .25)
}

.submit-btn:active {
  transform: translateY(-1px)
}

/* 16px inputs stop iOS Safari from auto-zooming when a field is tapped */
@media(max-width:768px) {

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
    padding: .95rem 1rem
  }
}

/* ----------------------------------------------------------------------------
   2. FORM DESIGN UPGRADE — hairline borders, gold focus ring, consent panel,
      custom select chevron, refined submit button, section title
   ---------------------------------------------------------------------------- */
/* --- hero legibility + image polish (added) --- */
.hero {
  background: linear-gradient(135deg, rgba(8, 5, 12, .55), rgba(8, 5, 12, .28)), linear-gradient(135deg, var(--primary), var(--accent)) !important
}

.hero h1 {
  animation: none !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .6), 0 1px 4px rgba(0, 0, 0, .65);
  color: #fff !important;
  letter-spacing: .5px
}

.hero p {
  text-shadow: 0 1px 10px rgba(0, 0, 0, .6);
  opacity: 1 !important;
  color: #fff !important
}

.hero-stats .stat-number {
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

.hero-stats .stat-label {
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
  opacity: 1 !important;
  color: #fff !important
}

.banner-wrap {
  max-width: 760px;
  border: 3px solid rgba(255, 255, 255, .92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45), 0 0 0 1px rgba(212, 175, 55, .6) !important
}

.hero-portrait {
  width: 210px !important;
  height: 210px !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .4), 0 0 0 5px rgba(212, 175, 55, .95), 0 0 0 11px rgba(255, 255, 255, .16) !important
}

@media(max-width:640px) {
  .banner-wrap {
    max-width: 100%
  }

  .hero-portrait {
    width: 150px !important;
    height: 150px !important
  }
}

/* --- form design upgrade v2 (added) --- */
.form-container {
  border: 1px solid rgba(166, 9, 61, .1) !important;
  box-shadow: 0 24px 60px rgba(166, 9, 61, .13), 0 2px 10px rgba(0, 0, 0, .04) !important;
  padding: 2.6rem 2.4rem 2.8rem !important;
  border-radius: 20px !important;
  animation: formRise .6s ease both !important
}

.form-container::before {
  animation: none !important
}

.form-header {
  border-bottom: 1px solid rgba(166, 9, 61, .12) !important;
  padding-bottom: 1.3rem !important;
  margin-bottom: 2rem !important
}

.form-header h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.75rem !important;
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 4px 15px rgba(212, 175, 55, 0.2) !important;
  font-weight: 700 !important
}

.form-header p {
  color: #7A5E63 !important;
  font-size: .95rem !important;
  margin-top: .35rem !important
}

.section-header {
  border-bottom: 1px solid rgba(212, 175, 55, .4) !important;
  font-size: 1.05rem !important;
  padding-bottom: .55rem !important;
  margin: 2.2rem 0 1.3rem !important;
  animation: none !important;
  letter-spacing: .2px !important
}

.form-group {
  animation: none !important;
  margin-bottom: 1.4rem !important
}

.form-group label {
  color: #3A2226 !important;
  font-weight: 600 !important;
  font-size: .9rem !important;
  margin-bottom: .5rem !important;
  letter-spacing: 0 !important
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e6ddd9 !important;
  border-radius: 10px !important;
  padding: .9rem 1rem !important;
  background: #fdfbfa !important;
  transition: border-color .2s, box-shadow .2s !important;
  box-shadow: none !important
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 30%, transparent) !important;
  transform: none !important
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b9aeb0 !important
}

.form-group select {
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A5E63' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.6rem !important
}

.required {
  color: var(--accent) !important
}

.submit-btn {
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-radius: 99px !important;
  padding: 1.2rem !important;
  margin-top: 1.8rem !important;
  background: linear-gradient(135deg, #FF3366, #FF9933) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  animation: floatBtn 3s ease-in-out infinite !important;
}

@keyframes floatBtn {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.submit-btn::before {
  display: none !important;
}

.submit-btn:hover {
  transform: translateY(-6px) scale(1.03) !important;
  box-shadow: 0 15px 40px rgba(255, 51, 102, 0.5), inset 0 -3px 0 rgba(0, 0, 0, 0.1) !important;
  filter: brightness(1.1);
}

.submit-btn:active {
  transform: translateY(2px) scale(0.98) !important;
  box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3) !important;
}

.checkbox-group {
  background: rgba(212, 175, 55, .08) !important;
  border-left: 3px solid var(--accent) !important;
  border-radius: 10px !important;
  align-items: flex-start !important;
  padding: 1.1rem 1.2rem !important;
  margin-top: 1.6rem !important
}

.checkbox-group label {
  color: #3A2226 !important;
  font-weight: 500 !important
}

@keyframes formRise {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:640px) {
  .form-container {
    padding: 1.5rem 1.2rem 1.8rem !important
  }

  .form-header h2 {
    font-size: 1.45rem !important
  }
}

/* --- Registration Form title fix --- */
.section-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  text-align: center !important;
  font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  letter-spacing: .5px !important;
  margin-bottom: 2.4rem !important;
  animation: none !important;
  position: relative;
  display: block
}

.section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: .6rem auto 0
}

.section-header {
  color: var(--primary) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  border-bottom: 1.5px solid rgba(212, 175, 55, .5) !important;
  padding-bottom: .55rem !important;
  margin: 2.2rem 0 1.3rem !important;
  animation: none !important;
  letter-spacing: .2px !important;
  font-family: 'Poppins', sans-serif !important
}

/* ----------------------------------------------------------------------------
   3. HERO BANNER — animated wrap, Ken-Burns image, shine sweep
   ---------------------------------------------------------------------------- */
.banner-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .15);
  animation: bannerIn .9s cubic-bezier(.2, .7, .2, 1) both;
  line-height: 0
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center;
  animation: bannerKen 24s ease-in-out infinite alternate
}

.banner-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .38) 48%, transparent 66%);
  transform: translateX(-130%) skewX(-12deg);
  animation: bannerShine 2.8s ease .7s 1
}

@keyframes bannerIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.97)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes bannerKen {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.06)
  }
}

@keyframes bannerShine {
  to {
    transform: translateX(130%) skewX(-12deg)
  }
}

@media(prefers-reduced-motion:reduce) {
  .banner-img {
    animation: none
  }

  .banner-shine {
    display: none
  }
}

@media(max-width:640px) {
  .banner-wrap {
    border-radius: 12px
  }
}

.hero-emblem {
  width: 118px;
  height: 118px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18), inset 0 0 0 2px rgba(255, 255, 255, .35);
  color: var(--accent);
  animation: emblemPop .8s cubic-bezier(.34, 1.56, .64, 1) both
}

.hero-emblem svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .2))
}

@keyframes emblemPop {
  0% {
    opacity: 0;
    transform: scale(.4) translateY(-10px)
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

@media(max-width:640px) {
  .hero-emblem {
    width: 88px;
    height: 88px;
    margin-bottom: .9rem
  }

  .hero-emblem svg {
    width: 84px;
    height: 84px
  }
}

/* Extracted Forms Master CSS */

/* === Page-unique styles only — shared chrome & form CSS live in
   assets-new/css/main.css and assets-new/css/forms-master.css === */
:root {
  --primary: #A6093D;
  --accent: #D4AF37;
  --secondary: rgba(0, 0, 0, .05);
  --bg: #FFFBFD;
  --text: #333;
  --text-light: #666
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f0ff 0%, #fff0f7 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text)
}

a {
  text-decoration: none;
  color: inherit;
  transition: all .3s
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1100px, 94%);
  margin: 0 auto
}

/* CUSTOM ANIMATIONS - UNIQUE PER CATEGORY */
@keyframes diamondShimmer {

  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 0 rgba(212, 175, 55, 0))
  }

  50% {
    filter: brightness(1.12) drop-shadow(0 0 6px rgba(212, 175, 55, .5))
  }
}

@keyframes shimmerFlow {
  shimmerFlow_KEYFRAMES
}

@keyframes slideInGraceful {
  from {
    opacity: 0;
    transform: translateY(-50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes cascadeIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes customGlow {

  0%,
  100% {
    text-shadow: 0 2px 16px rgba(0, 0, 0, .6)
  }

  50% {
    text-shadow: 0 2px 24px rgba(0, 0, 0, .7)
  }
}

@keyframes hoverLift {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

header {
  background: linear-gradient(135deg, #f5f0ff, #fff0f7);
  border-bottom: 2px solid var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  animation: slideInGraceful .8s ease-out
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 0
}

.logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem
}

.logo img {
  width: 50px;
  animation: diamondShimmer 4s ease-in-out infinite
}

.nav-links {
  display: flex;
  gap: 2rem
}

.nav-links a {
  color: var(--text);
  font-weight: 500
}

.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-2px)
}

.hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: slideInGraceful 1s ease-out
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 5%;
  font-size: 3rem;
  opacity: .15;
  animation: diamondShimmer 6s infinite
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 5%;
  font-size: 3rem;
  opacity: .15;
  animation: diamondShimmer 8s 1s infinite
}

.hero-content {
  position: relative;
  z-index: 1
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  animation: customGlow 2.5s infinite;
  letter-spacing: 2px;
  font-weight: 700
}

.hero p {
  font-size: 1.2rem;
  opacity: .95;
  margin-bottom: 2rem;
  animation: slideInGraceful .8s ease-out .2s both
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap
}

.stat {
  animation: cascadeIn .8s ease-out;
  animation-fill-mode: both
}

.stat:nth-child(1) {
  animation-delay: .3s
}

.stat:nth-child(2) {
  animation-delay: .5s
}

.stat:nth-child(3) {
  animation-delay: .7s
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  color: var(--accent)
}

.stat-label {
  font-size: .9rem;
  opacity: .9
}

.form-section {
  padding: 60px 0
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: var(--primary);
  animation: customGlow 2.5s infinite;
  font-weight: 700;
  letter-spacing: 1px
}

.form-container {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  animation: cascadeIn 1s ease-out;
  border: 2px solid var(--primary);
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow: hidden
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  animation: shimmer 3s infinite
}

@keyframes shimmer {
  0% {
    background-position: -100%
  }

  50% {
    background-position: 100%
  }

  100% {
    background-position: -100%
  }
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1.5rem
}

.form-header h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: .5rem;
  animation: customGlow 2.5s infinite;
  font-weight: 700
}

.form-header p {
  color: var(--text-light);
  animation: slideInGraceful .8s ease-out .2s both;
  font-weight: 500
}

.form-group {
  margin-bottom: 1.8rem;
  animation: cascadeIn .6s ease-out;
  animation-fill-mode: both
}

.form-group:nth-child(1) {
  animation-delay: .1s
}

.form-group:nth-child(2) {
  animation-delay: .2s
}

.form-group:nth-child(3) {
  animation-delay: .3s
}

.form-group:nth-child(4) {
  animation-delay: .4s
}

.form-group:nth-child(5) {
  animation-delay: .5s
}

.form-group:nth-child(6) {
  animation-delay: .6s
}

.form-group label {
  display: block;
  margin-bottom: .8rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: .3px
}

.form-group .required {
  color: var(--accent);
  font-weight: 700
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e8e0dd;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: all .3s;
  outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .05);
  transform: translateY(-2px)
}

.form-group input::placeholder {
  color: #aaa
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-weight: 400
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.section-header {
  color: var(--primary);
  margin: 2rem 0 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: .5rem;
  animation: cascadeIn .6s ease-out;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: .8rem
}

.requirements {
  background: linear-gradient(135deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .01));
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  border-left: 4px solid var(--accent);
  animation: cascadeIn .8s ease-out
}

.requirements h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  animation: customGlow 2.5s infinite
}

.req-list {
  list-style: none;
  padding: 0
}

.req-list li {
  padding: .8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
  animation: cascadeIn .6s ease-out;
  animation-fill-mode: both;
  font-weight: 500
}

.req-list li:nth-child(1) {
  animation-delay: .2s
}

.req-list li:nth-child(2) {
  animation-delay: .3s
}

.req-list li:nth-child(3) {
  animation-delay: .4s
}

.req-list li:nth-child(4) {
  animation-delay: .5s
}

.req-list li:nth-child(5) {
  animation-delay: .6s
}

.req-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  animation: diamondShimmer 3s infinite
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, .03);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  animation: cascadeIn .8s ease-out
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 0
}

.checkbox-group label {
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--text)
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 1.3rem;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  margin-top: 2rem;
  animation: cascadeIn .8s ease-out;
  animation-fill-mode: both;
  position: relative;
  overflow: hidden
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  animation: shimmer 2s infinite
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .25)
}

.submit-btn:active {
  transform: translateY(-1px)
}

.info-box {
  background: linear-gradient(135deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .01));
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  border-left: 4px solid var(--accent);
  animation: cascadeIn .8s ease-out .2s both
}

.info-box h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
  animation: customGlow 2.5s infinite
}

.info-box p {
  color: var(--text-light);
  margin-bottom: .5rem;
  font-weight: 500
}

.info-box a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline
}

.info-box a:hover {
  color: var(--accent)
}

footer {
  background: linear-gradient(135deg, var(--text), #555);
  color: #fff;
  padding: 3rem 0;
  margin-top: 5rem;
  text-align: center;
  font-size: .9rem;
  animation: slideInGraceful 1s ease-out
}

footer p {
  margin: .5rem 0;
  opacity: .9
}

footer a {
  color: var(--accent);
  font-weight: 600
}

@media(max-width:768px) {
  .hero {
    padding: 44px 0 36px
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    line-height: 1.22;
    padding: 0 .4rem
  }

  .hero p {
    font-size: .96rem;
    padding: 0 .6rem
  }

  .hero-stats {
    gap: 1.4rem
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .form-container {
    padding: 1.6rem 1.2rem;
    border-radius: 16px
  }

  .section-title {
    font-size: 1.6rem
  }

  .form-header h2 {
    font-size: 1.45rem
  }

  .section-header {
    font-size: 1.1rem;
    margin: 1.6rem 0 1.1rem
  }

  .form-group {
    margin-bottom: 1.3rem
  }

  .form-group label {
    font-size: .95rem;
    margin-bottom: .55rem
  }

  .submit-btn {
    width: 100%;
    padding: 1.15rem;
    font-size: 1.02rem
  }

  .checkbox-group {
    padding: 1.1rem;
    align-items: flex-start
  }

  .checkbox-group input {
    margin-top: .15rem;
    flex-shrink: 0
  }

  .requirements,
  .info-box {
    padding: 1.4rem
  }

  .nav-links {
    display: none
  }
}

/* 16px inputs stop iOS Safari from auto-zooming when a field is tapped */
@media(max-width:768px) {

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
    padding: .95rem 1rem
  }
}

/* very small phones */
@media(max-width:380px) {
  .hero h1 {
    font-size: 1.5rem
  }

  .form-container {
    padding: 1.3rem 1rem
  }

  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap
  }
}