@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600;700&display=swap");

:root {
  --aurora-teal: #0d9488;
  --aurora-emerald: #059669;
  --aurora-mint: #10b981;
  --aurora-purple: #a855f7;
  --aurora-dark: #064e3b;
  --aurora-darker: #022c22;
  --aurora-light: #d1fae5;
  --text-primary: #f0fdfa;
  --text-secondary: #ccfbf1;
  --text-dark: #134e4a;
}

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

body {
  font-family: "Raleway", sans-serif;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #134e4a 100%);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at 20% 30%,
      rgba(13, 148, 136, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(168, 85, 247, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
  animation: auroraPulse 20s ease-in-out infinite;
}

@keyframes auroraPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.container {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  text-shadow: 0 0 40px rgba(13, 148, 136, 0.6);
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--aurora-mint),
    var(--aurora-teal),
    var(--aurora-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar {
  background: rgba(2, 44, 34, 0.85) !important;
  backdrop-filter: blur(20px);
  padding: 1.2rem 0;
  border-bottom: 2px solid rgba(13, 148, 136, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--aurora-mint) !important;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  letter-spacing: 1px;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  margin: 0 0.8rem;
  position: relative;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aurora-mint), var(--aurora-teal));
  transform: translateX(-50%);
  transition: width 0.4s ease;
  box-shadow: 0 0 10px var(--aurora-mint);
}

.nav-link:hover {
  color: var(--aurora-mint) !important;
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-aurora {
  background: linear-gradient(
    135deg,
    var(--aurora-teal),
    var(--aurora-emerald)
  );
  color: white;
  border: none;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35),
    0 0 30px rgba(13, 148, 136, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-aurora::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-aurora:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.5),
    0 0 50px rgba(13, 148, 136, 0.4);
}

.btn-aurora:hover::before {
  width: 400px;
  height: 400px;
}

.btn-aurora-outline {
  background: transparent;
  color: var(--aurora-mint);
  border: 2px solid var(--aurora-mint);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(13, 148, 136, 0.2);
  transition: all 0.4s ease;
  text-transform: uppercase;
}

.btn-aurora-outline:hover {
  background: var(--aurora-mint);
  color: var(--aurora-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url(../img/hero-aurora.png),
    radial-gradient(
      circle at 30% 40%,
      rgba(16, 185, 129, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(168, 85, 247, 0.1) 0%,
      transparent 50%
    );

  background-size: cover, auto, auto;

  background-position: center, center, center;

  background-repeat: no-repeat;

  animation: heroGlow 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes heroGlow {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(13, 148, 136, 0.2),
    rgba(168, 85, 247, 0.2)
  );
  border: 1px solid rgba(13, 148, 136, 0.4);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
  animation: fadeIn 1.2s ease-out 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-title {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.mystical-card {
  background: linear-gradient(
    135deg,
    rgba(6, 78, 59, 0.6),
    rgba(2, 44, 34, 0.7)
  );
  border: 2px solid rgba(13, 148, 136, 0.3);
  border-radius: 30px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mystical-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--aurora-mint),
    var(--aurora-teal),
    var(--aurora-purple)
  );
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.mystical-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(13, 148, 136, 0.4),
    0 0 40px rgba(13, 148, 136, 0.2);
}

.mystical-card:hover::before {
  opacity: 0.5;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--aurora-mint), var(--aurora-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.mystical-card:hover .card-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.6);
}

.card-title {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  color: var(--aurora-mint);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.card-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.blob-section {
  padding: 100px 0;
  position: relative;
  clip-path: ellipse(100% 100% at 50% 50%);
}

.blob-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(6, 78, 59, 0.4),
    rgba(2, 44, 34, 0.6)
  );
  z-index: -1;
}

.step-flow {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInRight 0.8s ease-out forwards;
}

.step-flow:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(50px);
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-number {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--aurora-teal),
    var(--aurora-emerald)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.4),
    0 0 40px rgba(13, 148, 136, 0.3);
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--aurora-mint);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.step-content h3 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--aurora-mint);
  margin-bottom: 0.8rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.glow-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--aurora-mint),
    var(--aurora-teal),
    transparent
  );
  margin: 80px 0;
  box-shadow: 0 0 20px rgba(13, 148, 136, 0.5);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.benefit-orb {
  background: linear-gradient(
    135deg,
    rgba(6, 78, 59, 0.7),
    rgba(2, 44, 34, 0.8)
  );
  border: 2px solid rgba(13, 148, 136, 0.4);
  border-radius: 50%;
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin: 2rem auto;
  backdrop-filter: blur(15px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(13, 148, 136, 0.2);
  position: relative;
}

.benefit-orb::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    135deg,
    var(--aurora-mint),
    var(--aurora-teal),
    var(--aurora-purple),
    var(--aurora-mint)
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.benefit-orb:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 25px 70px rgba(13, 148, 136, 0.5),
    0 0 80px rgba(13, 148, 136, 0.4);
}

.benefit-orb:hover::before {
  opacity: 0.6;
}

.benefit-orb i {
  font-size: 3.5rem;
  color: var(--aurora-mint);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.6));
}

.benefit-orb h4 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--aurora-light);
  text-align: center;
  margin-bottom: 1rem;
}

.benefit-orb p {
  color: var(--text-secondary);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion-item {
  background: rgba(2, 44, 34, 0.95);
  border: 2px solid rgba(13, 148, 136, 0.4);
  border-radius: 20px !important;
  margin-bottom: 1.5rem;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.accordion-item:hover {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 15px 50px rgba(13, 148, 136, 0.3);
}

.accordion-button {
  background: rgba(6, 78, 59, 0.6) !important;
  color: #ffffff !important;
  font-family: "Raleway", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  border: none !important;
  box-shadow: none !important;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.accordion-button:focus {
  color: #ffffff !important;
  background: rgba(6, 78, 59, 0.6) !important;
  box-shadow: none !important;
}

.accordion-button:hover {
  color: #ffffff !important;
  background: rgba(13, 148, 136, 0.7) !important;
}

.accordion-button:not(.collapsed) {
  color: #ffffff !important;
  background: rgba(13, 148, 136, 0.5) !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background: rgba(2, 44, 34, 0.4);
  color: var(--text-secondary);
  padding: 1.5rem 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.footer {
  background: rgba(2, 44, 34, 0.95);
  color: var(--text-secondary);
  padding: 60px 0 30px;
  border-top: 2px solid rgba(13, 148, 136, 0.3);
  margin-top: 100px;
  backdrop-filter: blur(15px);
}

.footer-brand {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--aurora-mint);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  text-decoration: none;
  display: inline-block;
}

.footer .label-nav {
  color: var(--aurora-mint);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer .nav-pages a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer .nav-pages a:hover {
  color: var(--aurora-mint);
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.footer .logo-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer .age18 {
  width: 50px;
  height: 50px;
  background: var(--aurora-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.footer .logo-trust img {
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer .logo-trust img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(13, 148, 136, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.modal-content {
  background: linear-gradient(
    135deg,
    rgba(2, 44, 34, 0.98),
    rgba(6, 78, 59, 0.98)
  );
  border: 2px solid rgba(13, 148, 136, 0.4);
  border-radius: 25px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  border-bottom: 1px solid rgba(13, 148, 136, 0.3);
  padding: 2rem;
}

.modal-title {
  font-family: "Cinzel", serif;
  color: var(--aurora-mint);
  font-size: 1.8rem;
}

.modal-body {
  padding: 2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

.form-control,
.form-select {
  background: rgba(6, 78, 59, 0.4);
  border: 2px solid rgba(13, 148, 136, 0.3);
  border-radius: 15px;
  color: var(--text-primary);
  padding: 14px 20px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background: rgba(6, 78, 59, 0.6);
  border-color: var(--aurora-mint);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(13, 148, 136, 0.3);
}

.form-control::placeholder {
  color: rgba(204, 251, 241, 0.5);
}

.form-label {
  color: var(--aurora-mint);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.3px;
}

.form-check-input {
  background-color: rgba(6, 78, 59, 0.4);
  border: 2px solid rgba(13, 148, 136, 0.3);
}

.form-check-input:checked {
  background-color: var(--aurora-teal);
  border-color: var(--aurora-mint);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .benefit-orb {
    width: 250px;
    height: 250px;
  }

  .step-flow {
    flex-direction: column !important;
    text-align: center;
  }
}

.mystical-card:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.mystical-card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.mystical-card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.mystical-card:nth-child(4) {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.mystical-card:nth-child(5) {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}
.mystical-card:nth-child(6) {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.step-flow:nth-child(1) {
  animation-delay: 0.2s;
}
.step-flow:nth-child(2) {
  animation-delay: 0.4s;
}
.step-flow:nth-child(3) {
  animation-delay: 0.6s;
}
.step-flow:nth-child(4) {
  animation-delay: 0.8s;
}

.benefit-orb:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.benefit-orb:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.benefit-orb:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
