body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
}

.contact-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #f2f6ff 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.sub-title {
  color: #ff6b35;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.contact-form,
.contact-info {
  flex: 1 1 45%;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #2663eb;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #2663eb;
  box-shadow: 0 0 5px rgba(38, 99, 235, 0.3);
}

.contact-btn {
  background: #ff6b35;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
  background: #e4581b;
  transform: translateY(-2px);
}

.contact-info h3 {
  margin-bottom: 25px;
  color: #2663eb;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.icon {
  font-size: 24px;
  color: #ff6b35;
  flex-shrink: 0;
}

.details strong {
  display: block;
  color: #000;
  font-weight: 700;
}

.details p {
  margin: 5px 0 0;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.map-container {
  margin-top: 25px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}
