.register-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.register-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.register-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.register-hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.register-hero-content {
  position: relative;
  z-index: 10;
  max-width: 50rem;
  padding: 8rem 2rem 4rem;
  animation: fadeUp 1s ease 0.2s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.register-hero-content h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.25rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.register-hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-style: italic;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.register-hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.register-hero-buttons .btn {
  min-width: 180px;
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
}

@media (max-width: 768px) {
  .register-hero-content h1 {
    font-size: 2.25rem;
  }
  .register-hero-content p {
    font-size: 1rem;
  }
  .register-hero-content {
    padding: 7rem 1.5rem 3rem;
  }
}

.pricing-section {
  padding: 5rem 2rem 2rem;
  max-width: 75rem;
  margin: 0 auto;
}

.pricing-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-style: italic;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .pricing-section {
    padding: 3rem 1.5rem 1rem;
  }
}

.pricing-card {
  border-radius: 1.25rem;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.pricing-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
  color: white;
}

.pricing-card .includes-label {
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: auto;
  padding-bottom: 2rem;
}

.pricing-card ul li {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
}

.pricing-card ul li::before {
  content: "\2022";
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pricing-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.pricing-card-date {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card-date sup {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.pricing-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.pricing-card.gold-dark {
  background: linear-gradient(145deg, #8b7535, #6b5a28, #5a4b20);
}

.pricing-card.gold-light {
  background: linear-gradient(145deg, #c5a84a, #b8983e, #a88b35);
}

.pricing-circle.gold {
  background: linear-gradient(135deg, #7a6a2e, #5c4f1e);
  box-shadow: 0 4px 15px rgba(90, 75, 32, 0.5);
}

.pricing-card.blue-dark {
  background: linear-gradient(145deg, #3b7db8, #2e6a9e, #256090);
}

.pricing-card.blue-light {
  background: linear-gradient(145deg, #5ba3d9, #4a92c8, #3d82b8);
}

.pricing-circle.blue {
  background: linear-gradient(135deg, #2e6a9e, #1e5580);
  box-shadow: 0 4px 15px rgba(30, 85, 128, 0.5);
}

.waiver-section {
  padding: 5rem 2rem;
  max-width: 75rem;
  margin: 0 auto;
}

.waiver-box1 {
  text-align: center;
  margin-bottom: 4rem;
  width: 80%;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  font-size: 22px;
  font-weight: 900;
}

.waiver-box {
  border: 3px solid #1e5580;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 4rem;
  width: 80%;
  margin: 0 auto 4rem;
  padding: 2rem 2.5rem;
}

.waiver-box p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.waiver-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .waiver-box {
    padding: 1.5rem 1.25rem;
  }
  .waiver-box p {
    font-size: 1.05rem;
  }
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3.5rem;
  background: linear-gradient(135deg, #c5a84a, #8b7535);
  color: white;
  border-radius: 9999px;

  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 14px rgba(197, 168, 74, 0.4);
  text-decoration: none;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #8b7535, #6b5a28);
  box-shadow: 0 6px 20px rgba(139, 117, 53, 0.5);
  transform: translateY(-2px);
}

.contact-emails {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-emails a {
  font-size: 1rem;
  font-weight: 600;
  color: #8b7535;
  transition: color 0.3s ease;
}

.contact-emails a:hover {
  color: #6b5a28;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

.reg-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reg-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
