.contact {
  background: #f8fafc;
  padding: 100px 0;
}

.contact-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
}

.contact-subtitle {
  color: #475569;
  font-size: 18px;
  margin-top: 15px;
}

.custom-input {
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  font-size: 15px;
  transition: 0.3s ease;
}

.custom-input:focus {
  border-color: #1ba7a7;
  box-shadow: 0 0 0 3px rgba(27,167,167,0.15);
}

textarea.custom-input {
  resize: none;
}

.contact-btn {
  width: 100%;
  background: #1ba7a7;
  border: none;
  padding: 16px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #6c63ff, #1ba7a7);
  transform: translateY(-3px);
}

/* Contact Info */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 35px;
}

.info-icon {
  width: 55px;
  height: 55px;
  background: #e6f4f4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1ba7a7;
  transition: 0.3s ease;
}

.contact-info-item:hover .info-icon {
  background: #1ba7a7;
  color: #fff;
}

.contact-info-item h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-item p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.thank-you-box {
  background: #e6f4f4;
  border: 1px solid #1ba7a7;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.thank-you-box h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.thank-you-box p {
  font-size: 18px;
  color: #475569;
}

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

/* Responsive */
@media (max-width: 992px) {
  .contact-title {
    font-size: 32px;
  }
}


/* CTA */

.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a, #1e293b, #312e81);
  color: #fff;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.3;
}

.gradient-text {
  background: linear-gradient(90deg, #6c63ff, #1ba7a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* Primary */
.primary-btn {
  background: #1ba7a7;
  color: #fff;
}

.primary-btn:hover {
  background: linear-gradient(90deg, #6c63ff, #1ba7a7);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Secondary */
.secondary-btn {
  background: #e2e8f0;
  color: #0f172a;
}

.secondary-btn:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 34px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}