.main-content {
  margin-top: clamp(5.625rem, 15vw, 7.5rem);
  padding: clamp(2rem, 10vw, 5rem) 0;
}

.container {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 2vw, 1.25rem);
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  margin-bottom: clamp(2rem, 5vw, 3.125rem);
  color: #ffd700;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(3rem, 10vw, 5rem);
  height: 0.1875rem;
  background: linear-gradient(45deg, #ffd700, #d4af37);
  border-radius: 0.125rem;
}

.form-section {
  background: rgba(26, 39, 68, 0.3);
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 1.25rem;
  animation: slideInLeft 1s ease-out;
}

.form-group {
  margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
}

.form-label {
  color: #ffd700;
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(0.5rem, 2vw, 0.625rem);
  display: block;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-label span {
  color: #e8e8e8;
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-shadow: none;
}

.form-label span.required {
  color: #ff4d4d;
  font-size: clamp(1rem, 3vw, 1.2rem);
}

.form-input, .form-textarea {
  width: clamp(18.75rem, 80vw, 31.25rem);
  padding: clamp(1rem, 3vw, 1.5625rem);
  background: rgba(10, 20, 40, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 1.25rem;
  color: #e8e8e8;
  font-size: clamp(0.875rem, 2vw, 1rem);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: slideInLeft 1s ease-out;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #c8c8c8;
  opacity: 0.7;
}

.name-input {
  min-height: clamp(2.5rem, 8vw, 3rem);
  width: clamp(18.75rem, 80vw, 31.25rem);
}

.contact-method {
  display: flex;
  gap: clamp(1rem, 5vw, 1.875rem);
  margin-top: clamp(0.5rem, 2vw, 0.625rem);
}

.contact-method a {
  color: #d4af37;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  width: clamp(2.8125rem, 8vw, 3.75rem);
  height: clamp(2.8125rem, 8vw, 3.75rem);
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-method a:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
}

.contact-method a.active {
  border: 2px solid #ffd700;
}

.contact-input-container {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.contact-input-container.active {
  max-height: clamp(3.5rem, 10vw, 4rem);
  opacity: 1;
  margin-top: clamp(0.75rem, 3vw, 0.9375rem);
}

.form-textarea {
  min-height: clamp(7.5rem, 20vw, 9.375rem);
  resize: vertical;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #d4af37);
  color: #0a1428;
  padding: clamp(0.75rem, 3vw, 0.9375rem) clamp(1.5rem, 5vw, 1.875rem);
  text-decoration: none;
  border-radius: 1.875rem;
  font-weight: bold;
  font-size: clamp(0.875rem, 2vw, 1.2rem);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  width: 100%;
  max-width: clamp(12.5rem, 50vw, 18.75rem);
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.footer {
  background: rgba(10, 20, 40, 0.95);
  padding: clamp(1.5rem, 5vw, 2.5rem) 0 clamp(0.75rem, 3vw, 1.25rem);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(12.5rem, 40vw, 15.625rem), 1fr));
  gap: clamp(1.25rem, 5vw, 1.875rem);
  margin-bottom: clamp(1.25rem, 5vw, 1.875rem);
}

.footer-section h3 {
  color: #ffd700;
  margin-bottom: clamp(0.75rem, 3vw, 1.25rem);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.footer-section p, .footer-section a {
  color: #b8b8b8;
  text-decoration: none;
  margin-bottom: clamp(0.5rem, 2vw, 0.625rem);
  display: block;
  transition: color 0.3s ease;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.footer-section a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  padding-top: clamp(0.75rem, 3vw, 1.25rem);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  color: #888;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

@media (max-width: 768px) {
  .main-content {
    margin-top: clamp(5rem, 15vw, 6.25rem);
  }

  .form-section {
    padding: clamp(1.25rem, 5vw, 1.875rem);
  }

  .form-input, .form-textarea {
    width: clamp(12.5rem, 90vw, 25rem);
  }
}

@media (max-width: 480px) {
  .main-content {
    margin-top: clamp(4.5rem, 15vw, 5.625rem);
  }

  .container {
    padding: 0 clamp(0.5rem, 2vw, 0.75rem);
  }

  .section-title {
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
  }

  .form-section {
    padding: clamp(1rem, 5vw, 1.25rem);
  }

  .form-input, .form-textarea {
    width: calc(100vw - 1.875rem);
  }
}
