.contact {
  background: #fff;
  padding: 80px 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 10px;
}

.contact-header p {
  color: #64748b;
  font-size: 1.1rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #f9fafb;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: #fff7f3;
  transform: translateY(-4px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.icon {
  font-size: 1.5rem;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #1e293b;
}

.contact-card p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f9fafb;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1.8px solid #e2e8f0;
  font-size: 1rem;
  background: #fff;
  transition: border 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6b35;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form button {
  background: #ff6b35;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #ff8659;
  transform: translateY(-2px);
}

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

  .contact-form {
    padding: 25px;
  }
}
