/* ========== BUTTONS & MODALS ========== */
.cta-button, .submit-btn, .sound-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffdf7e, #d4af37);
  color: #0a050f;
  font-weight: bold;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-size: 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.cta-button:hover, .submit-btn:hover, .sound-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}
.cta-button .arrow, .submit-btn .arrow {
  transition: transform 0.3s ease;
}
.cta-button:hover .arrow, .submit-btn:hover .arrow {
  transform: translateX(6px);
}

/* MODAL (contact form) */
/* ========== GOLDEN POPUP MODAL ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: radial-gradient(circle at 30% 20%, #0a070c, #020103);
  border: 2px solid rgba(212, 175, 55, 0.8);
  border-radius: 32px;
  width: 90%;
  max-width: 550px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  animation: modalGlow 1.5s ease-out;
}

@keyframes modalGlow {
  0% { opacity: 0; transform: scale(0.95); box-shadow: 0 0 0 rgba(212,175,55,0); }
  100% { opacity: 1; transform: scale(1); box-shadow: 0 0 30px rgba(212,175,55,0.3); }
}

.close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 2rem;
  color: #ffdf7e;
  cursor: pointer;
  transition: 0.2s;
}
.close-modal:hover {
  color: #fff;
  transform: scale(1.1);
}

.modal-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.modal-header .gold {
  color: #ffdf7e;
  text-shadow: 0 0 5px gold;
}
.modal-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* Form fields */
.input-group {
  position: relative;
  margin-bottom: 1.8rem;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem 0.5rem 0.5rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.2s;
}
.input-group textarea {
  resize: vertical;
  min-height: 80px;
}
.input-group label {
  position: absolute;
  left: 0;
  top: 1rem;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  transition: 0.2s;
}
.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: #ffdf7e;
}
.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffdf7e, #b8860b);
  transition: 0.3s;
}
.input-group input:focus ~ .focus-border,
.input-group textarea:focus ~ .focus-border {
  width: 100%;
}

/* Submit button */
.submit-btn {
  background: linear-gradient(135deg, #ffdf7e, #d4af37);
  border: none;
  color: #0a050f;
  font-weight: bold;
  padding: 0.8rem 2rem;
  border-radius: 60px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.submit-btn .arrow {
  transition: transform 0.3s;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212,175,55,0.5);
}
.submit-btn:hover .arrow {
  transform: translateX(6px);
}
.form-status {
  margin: 1rem 0;
  font-size: 0.85rem;
  text-align: center;
  color: #ffdf7e;
}


/* SOUND CONSENT MODAL */
.sound-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.sound-modal-content {
  background: radial-gradient(circle at 30% 20%, #0a070c, #020103);
  border: 2px solid rgba(212,175,55,0.8);
  border-radius: 32px;
  padding: 2rem 2rem 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 40px rgba(212,175,55,0.3);
  animation: modalFadeIn 0.4s ease-out;
}
.sound-modal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffdf7e;
}
.sound-modal-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.sound-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.sound-btn {
  background: rgba(20,15,28,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,0.6);
  color: #ffdf7e;
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 600;
}
.sound-btn.yes {
  background: linear-gradient(135deg, #ffdf7e, #d4af37);
  color: #0a050f;
  border: none;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(20,15,28,0.6);
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.6);
  color: #ffdf7e;
  font-size: 1.4rem;
  transition: all 0.3s;
  text-decoration: none;
}
.social-icon:hover {
  transform: translateY(-4px);
  background: rgba(212,175,55,0.2);
  border-color: #ffdf7e;
  box-shadow: 0 0 12px rgba(212,175,55,0.8);
  color: #fff;
}

/* BACK TO TOP */
.back-to-top {
  margin-top: 3rem;
  text-align: center;
}
#backToTopBtn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(20,15,28,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212,175,55,0.6);
  color: #ffdf7e;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
#backToTopBtn:hover {
  background: #ffdf7e;
  color: #0a050f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.5);
}