@import url("basic.css");

.contact-section {
  padding: 60px 0;
}

.contact-section .contact-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 40px;
}

.contact-section .contact-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.contact-section .contact-info {
  display: flex;
  align-items: center;
}

.contact-section .contact-info i {
  font-size: 22px;
  color: var(--primary-color);
  margin-right: 10px;
}

.contact-section .contact-info p {
  margin: 0;
  font-weight: 500;
}

.contact-section .contact-form .form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ccc;
}

.contact-section .contact-form .btn {
  background: var(--primary-color) !important;
  color: white !important;
  font-weight: 500;
  border-radius: 10px;
  padding: 12px 30px;
}

.contact-section .contact-form .btn:hover {
  background: var(--secondary-color) !important;
}

.contact-section .map-container iframe {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  border: none;
}