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

body {
  font-family: "Bebas Neue", cursive;
  line-height: 1.6;
  overflow-x: hidden;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
}

*:focus {
  outline: none !important;
}

.form-text {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  margin-top: 5px !important;
  font-family: "Bebas Neue", cursive;
}

.text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

.phone-example {
  color: #FFD700 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin-top: 6px !important;
  font-family: "Bebas Neue", sans-serif !important;
  display: block !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3) !important;
}

.hero-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.08'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 30s ease-in-out infinite;
  z-index: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
  animation: glow 15s ease-in-out infinite alternate;
}
.hero-section .hero-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .hero-section .hero-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
    padding: 0 30px;
    max-width: 1600px;
    margin: 0 auto;
  }
}
.hero-section .hero-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .hero-section .hero-image {
    width: 100%;
    max-width: 700px;
  }
}
.hero-section .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .hero-section .hero-image img {
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  }
}
.hero-section .hero-image:hover img {
  transform: scale(1.02);
}
@media (max-width: 992px) {
  .hero-section .hero-image:hover img {
    transform: scale(1.02);
  }
}
.hero-section .hero-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 16px 80px;
}
@media (max-width: 992px) {
  .hero-section .hero-content {
    width: 100%;
    padding: 60px 40px;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-content {
    padding: 40px 20px;
  }
}
.hero-section .hero-content .hero-title {
  font-size: 5.2rem;
  font-weight: 700;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}
@media (max-width: 1200px) {
  .hero-section .hero-content .hero-title {
    font-size: 5.5rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-title {
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-content .hero-title {
    font-size: 3.2rem;
  }
}
.hero-section .hero-content .hero-subtitle {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.8rem;
  }
}
.hero-section .hero-content .hero-description {
  font-size: 1.4rem;
  margin-bottom: 16px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 500px;
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-description {
    font-size: 1.5rem;
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-content .hero-description {
    font-size: 1.3rem;
  }
}
.hero-section .hero-content .hero-button {
  background: #FFD700;
  border: none;
  border-radius: 50px;
  padding: 20px 50px;
  font-family: "Bebas Neue", cursive;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  padding: 22px 55px;
  width: auto;
  align-self: center;
}
.hero-section .hero-content .hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  color: #1a1a1a;
}
.hero-section .hero-content .hero-button .arrow {
  font-size: 28px;
  transition: transform 0.3s ease;
}
.hero-section .hero-content .hero-button:hover .arrow {
  transform: translateX(8px);
}

.about-section {
  background: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
.about-section .about-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
  position: relative;
  z-index: 2;
  align-items: center;
}
@media (max-width: 992px) {
  .about-section .about-container {
    flex-direction: column;
    gap: 60px;
    padding: 0 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .about-section .about-container {
    padding: 0 30px;
    gap: 50px;
  }
}
.about-section .about-left {
  flex: 1;
  max-width: 500px;
}
.about-section .about-left .about-title {
  font-size: 4rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .about-section .about-left .about-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 992px) {
  .about-section .about-left .about-title {
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .about-section .about-left .about-title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .about-section .about-left .about-title {
    font-size: 2.5rem;
  }
}
.about-section .about-right {
  flex: 1;
  max-width: 700px;
  text-align: left;
}
@media (max-width: 992px) {
  .about-section .about-right {
    text-align: center;
  }
}
.about-section .about-right .about-description {
  /*font-family: 'Inter', sans-serif;*/
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 768px) {
  .about-section .about-right .about-description {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .about-section .about-right .about-description {
    font-size: 1.3rem;
  }
}
.about-section .about-right .about-details {
  /*font-family: 'Inter', sans-serif;*/
  font-size: 1.6rem;
  color: #222;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 768px) {
  .about-section .about-right .about-details {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .about-section .about-right .about-details {
    font-size: 1.2rem;
  }
}
.about-section .about-right .about-details .about-highlight {
  font-weight: 700;
  font-style: italic;
  margin-top: 30px;
  font-size: 1.7rem;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .about-section .about-right .about-details .about-highlight {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .about-section .about-right .about-details .about-highlight {
    font-size: 1.3rem;
  }
}

.registration-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.registration-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.06'%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 35s ease-in-out infinite reverse;
  z-index: 1;
}
.registration-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%), radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
  z-index: 1;
  animation: glow 20s ease-in-out infinite alternate;
}
.registration-section .registration-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .registration-section .registration-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
    padding: 0 30px;
    max-width: 1600px;
    margin: 0 auto;
  }
}
.registration-section .registration-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 80px;
}
@media (max-width: 992px) {
  .registration-section .registration-form {
    width: 100%;
    padding: 60px 40px;
  }
}
@media (max-width: 768px) {
  .registration-section .registration-form {
    padding: 40px 20px;
  }
}
.registration-section .registration-form .form-title {
  font-size: 5rem;
  font-weight: 700;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 60px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
@media (max-width: 768px) {
  .registration-section .registration-form .form-title {
    font-size: 3.5rem;
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .registration-section .registration-form .form-title {
    font-size: 2.8rem;
  }
}
.registration-section .registration-form form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.registration-section .registration-form .form-group {
  margin-bottom: 40px;
  width: 100%;
}
.registration-section .registration-form .form-control {
  width: 100%;
  padding: 20px 0;
  border: none;
  border-bottom: 3px solid #444;
  background: transparent;
  color: white;
  font-family: "Bebas Neue", cursive;
  font-size: 24px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: none;
}
.registration-section .registration-form .form-control:focus {
  border-bottom-color: #FFD700;
  outline: none;
}
.registration-section .registration-form .form-control:focus-visible {
  outline: none;
}
.registration-section .registration-form .form-control::-moz-placeholder {
  color: #888;
  font-family: "Bebas Neue", cursive;
  font-size: 22px;
}
.registration-section .registration-form .form-control::placeholder {
  color: #888;
  font-family: "Bebas Neue", cursive;
  font-size: 22px;
}
@media (max-width: 768px) {
  .registration-section .registration-form .form-control {
    font-size: 22px;
    padding: 18px 0;
  }
  .registration-section .registration-form .form-control::-moz-placeholder {
    font-size: 20px;
  }
  .registration-section .registration-form .form-control::placeholder {
    font-size: 20px;
  }
}
.registration-section .registration-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 50px;
  width: 100%;
  text-align: left;
}
.registration-section .registration-form .checkbox-group input[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: #FFD700;
  margin-top: 3px;
  flex-shrink: 0;
  outline: none;
}
.registration-section .registration-form .checkbox-group input[type=checkbox]:focus {
  outline: none;
}
.registration-section .registration-form .checkbox-group input[type=checkbox]:focus-visible {
  outline: none;
}
.registration-section .registration-form .checkbox-group .checkbox-label {
  color: white;
  font-size: 20px;
  line-height: 1.6;
  flex: 1;
}
@media (max-width: 768px) {
  .registration-section .registration-form .checkbox-group .checkbox-label {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .registration-section .registration-form .checkbox-group .checkbox-label {
    font-size: 16px;
  }
}
.registration-section .registration-form .checkbox-group .checkbox-label .policy-link {
  color: #FFD700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: all 0.3s ease;
}
.registration-section .registration-form .checkbox-group .checkbox-label .policy-link:hover {
  color: #ffdf33;
}
.registration-section .registration-form .submit-button {
  background: #FFD700;
  border: none;
  border-radius: 50px;
  padding: 20px 50px;
  font-family: "Bebas Neue", cursive;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  padding: 22px 55px;
}
.registration-section .registration-form .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  color: #1a1a1a;
}
.registration-section .registration-form .submit-button .arrow {
  font-size: 28px;
  transition: transform 0.3s ease;
}
.registration-section .registration-form .submit-button:hover .arrow {
  transform: translateX(8px);
}
.registration-section .registration-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .registration-section .registration-image {
    width: 100%;
    max-width: 700px;
  }
}
.registration-section .registration-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .registration-section .registration-image img {
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  }
}
.registration-section .registration-image:hover img {
  transform: scale(1.01);
}
@media (max-width: 992px) {
  .registration-section .registration-image:hover img {
    transform: scale(1.01);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes glow {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.4;
  }
}
.animate__delay-1s {
  animation-delay: 0.5s;
}

.animate__delay-2s {
  animation-delay: 1s;
}

.animate__delay-3s {
  animation-delay: 1.5s;
}

.animate__delay-4s {
  animation-delay: 2s;
}

@media (prefers-reduced-motion: no-preference) {
  .about-section [class*=animate__] {
    animation-duration: 0.8s;
    animation-fill-mode: both;
  }
  .registration-section [class*=animate__] {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
}
@media (hover: hover) {
  .hero-image:hover img {
    transform: scale(1.02);
  }
  .registration-image:hover img {
    transform: scale(1.01);
  }
}
@media (max-width: 1200px) {
  .about-container {
    gap: 60px;
  }
}
@media (max-width: 992px) {
  .hero-section,
  .registration-section {
    min-height: auto;
    padding: 80px 0;
  }
  .about-section {
    padding: 60px 0;
  }
  .animate__animated {
    animation-duration: 0.8s !important;
  }
}
@media (max-width: 768px) {
  .about-container {
    padding: 40px 20px;
    gap: 40px;
  }
  .hero-button,
  .submit-button {
    padding: 18px 40px;
    font-size: 20px;
  }
  .animate__animated {
    animation: none !important;
  }
  .hero-content,
  .hero-image,
  .about-left,
  .about-right,
  .registration-form,
  .registration-image {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 480px) {
  .about-container {
    padding: 30px 15px;
    gap: 30px;
  }
  .hero-button,
  .submit-button {
    padding: 16px 35px;
    font-size: 18px;
  }
}
.alert {
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  font-family: "Bebas Neue", cursive;
  font-size: 18px;
}
.alert.alert-success {
  background: #FFD700;
  color: white;
  border-left: 4px solid #28a745;
  color: #1a1a1a;
}
.alert.alert-danger {
  background: rgba(220, 53, 69, 0.9);
  color: white;
  border-left: 4px solid #dc3545;
}

.loading-spinner {
  animation: spin 1s linear infinite;
  font-size: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}
.lightbox-modal.show {
  display: flex;
}
.lightbox-modal .lightbox-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #FFD700;
  border-radius: 15px;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 215, 0, 0.2);
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow: hidden;
  transform: scale(0.9);
  animation: scaleIn 0.3s ease-out forwards;
}
@media (max-width: 768px) {
  .lightbox-modal .lightbox-content {
    width: 95%;
    max-height: 85vh;
  }
}
.lightbox-modal .lightbox-content .lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  background: linear-gradient(135deg, #FFD700 0%, #ffeb3b 100%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}
.lightbox-modal .lightbox-content .lightbox-header h3 {
  margin: 0;
  font-family: "Bebas Neue", cursive;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .lightbox-modal .lightbox-content .lightbox-header h3 {
    font-size: 24px;
  }
}
.lightbox-modal .lightbox-content .lightbox-header .lightbox-close {
  font-size: 35px;
  font-weight: bold;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.1);
}
.lightbox-modal .lightbox-content .lightbox-header .lightbox-close:hover {
  background: rgba(26, 26, 26, 0.2);
  transform: rotate(90deg) scale(1.1);
  color: #dc3545;
}
.lightbox-modal .lightbox-content .lightbox-body {
  padding: 30px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-y: auto;
  max-height: calc(80vh - 120px);
}
@media (max-width: 768px) {
  .lightbox-modal .lightbox-content .lightbox-body {
    padding: 20px;
    font-size: 15px;
  }
}
.lightbox-modal .lightbox-content .lightbox-body::-webkit-scrollbar {
  width: 8px;
}
.lightbox-modal .lightbox-content .lightbox-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.lightbox-modal .lightbox-content .lightbox-body::-webkit-scrollbar-thumb {
  background: #FFD700;
  border-radius: 10px;
}
.lightbox-modal .lightbox-content .lightbox-body::-webkit-scrollbar-thumb:hover {
  background: #ffdf33;
}
.lightbox-modal .lightbox-content .lightbox-body p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.lightbox-modal .lightbox-content .lightbox-body p:last-child {
  margin-bottom: 0;
}
.lightbox-modal .lightbox-content .lightbox-body h4 {
  color: #FFD700;
  font-family: "Bebas Neue", cursive;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 25px;
}
.lightbox-modal .lightbox-content .lightbox-body h4:first-child {
  margin-top: 0;
}
.lightbox-modal .lightbox-content .lightbox-body ul, .lightbox-modal .lightbox-content .lightbox-body ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
.lightbox-modal .lightbox-content .lightbox-body ul li, .lightbox-modal .lightbox-content .lightbox-body ol li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}
.lightbox-modal .lightbox-content .lightbox-body strong {
  color: #FFD700;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.policy-link {
  color: #FFD700;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-weight: 500;
}
.policy-link:hover {
  color: #ffdf33;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}/*# sourceMappingURL=main.css.map */