.contact-section {
  padding: 120px 0 60px 0;
  font-family: "Montserrat", sans-serif;
}

.contact-inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

.contact-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #28a4fa, #60d9d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-desc {
  opacity: 0.8;
  margin-bottom: 32px;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.options button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(40, 164, 250, 0.25);
  background: rgba(40, 164, 250, 0.06);
  color: #28a4fa;
  cursor: pointer;
  transition: all 0.2s ease;
}

.options button:hover {
  background: rgba(40, 164, 250, 0.15);
}

.contact-info {
  font-size: 14px;
  opacity: 0.75;
}

.contact-info h4 {
  font-weight: 600;
  margin-bottom: 12px;
}


.back {
  margin-top: 16px;
  background: none;
  border: none;
  font-size: 13px;
  opacity: 0.6;
  cursor: pointer;
}

.back:hover {
  opacity: 1;
}

.contact-flow input,
.contact-flow textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: inherit;
  margin-bottom: 12px;
}

.terms {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

#send {
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  background: #28a4fa;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .2s ease, background .2s ease;
}

.social-btn i {
  font-size: 18px;
}

.social-btn:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}

.linkedin { color: #0a66c2; }
.github { color: #000; }
.instagram { color: #e1306c; }
.x { color: #000; }


.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-list i {
  width: 18px;
  text-align: center;
  color: #28a4fa;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-desc {
    font-size: 15px;
  }

  .step-title {
    font-size: 16px;
  }

  .options {
    gap: 10px;
  }

  .options button {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }
  
  .social-btn {
    padding: 14px 16px;
    font-size: 15px;
  }

  .social-btn i {
    font-size: 20px;
  }

  .contact-info {
    font-size: 15px;
  }

  .contact-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-title {
    font-size: 24px;
  }

  .contact-desc {
    margin-bottom: 24px;
  }

  .options button {
    padding: 12px 14px;
  }

  #send {
    width: 100%;
  }
}

.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 26, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  font-family: "Montserrat", sans-serif;
}

.success-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.success-box {
  background: #11162a;
  border-radius: 18px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg,#28a4fa,#60d9d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.success-box h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.success-box p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 26px;
}

.success-box button {
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg,#28a4fa,#60d9d4);
  color: #fff;
}
