/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
  padding: 6rem 8% 4rem;
  position: relative;
  background: linear-gradient(180deg, #020617 0%, #0a0f1e 100%);
}

.contact-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(124, 124, 255, 0.1),
      transparent 50%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(124, 124, 255, 0.05),
      transparent 50%
    );
  z-index: 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s ease-out;
}

.contact-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #7c7cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-header p {
  color: #9ca3af;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

/* CONTACT INFO CARDS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: rgba(124, 124, 255, 0.05);
  border: 1px solid rgba(124, 124, 255, 0.2);
  border-radius: 12px;
  padding: 1.8rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(124, 124, 255, 0.2);
  border-color: rgba(124, 124, 255, 0.4);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(124, 124, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: #7c7cff;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.info-card p,
.info-card a {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-card a {
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: #7c7cff;
}

/* CONTACT FORM */
.contact-form {
  background: rgba(124, 124, 255, 0.05);
  border: 1px solid rgba(124, 124, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #d1d5db;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(15, 15, 20, 0.5);
  border: 1px solid rgba(124, 124, 255, 0.3);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7c7cff;
  box-shadow: 0 0 0 3px rgba(124, 124, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #7c7cff, #a78bfa);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 124, 255, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(3px);
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(180deg, #0a0f1e 0%, #020617 100%);
  border-top: 1px solid rgba(124, 124, 255, 0.1);
  padding: 4rem 8% 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-logo {
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, #7c7cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: #7c7cff;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-description {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7c7cff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(124, 124, 255, 0.1);
  border: 1px solid rgba(124, 124, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c7cff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(124, 124, 255, 0.2);
  border-color: #7c7cff;
  transform: translateY(-3px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 124, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  font-size: 0.85rem;
}

.footer-built {
  color: #7c7cff;
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-section:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 5rem 5% 3rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .footer {
    padding: 3rem 5% 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 4rem 4% 2rem;
  }

  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .footer {
    padding: 2.5rem 4% 1rem;
  }

  .social-links {
    flex-wrap: wrap;
  }
}
