/* CLEAN CONTACT UI */
.contact-title {
  font-size: 32px;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-sub {
  color: #555;
  margin-bottom: 25px;
}

.contact-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form, .contact-info {
  background: #fff;
  padding: 22px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 48%;
  min-width: 300px;
}

.form-title {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 600;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  cursor: pointer;
  border: none;
  background: #ff3b3b;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
}

.submit-btn:hover {
  background: #d32f2f;
}

/* Mobile Fix */
@media(max-width: 768px) {
  .contact-form, .contact-info {
    width: 100% !important;
  }
  .content {
    margin-left: 0 !important;
    width: 100% !important;
  }
     .sidebar{background-color:#111;}

}
