/* ============================
     CONTACT SECTION
=============================== */
.contact-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Info */
.contact-info h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.contact-info p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 15px;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.contact-details i {
  color: #3bb54a;
  font-size: 18px;
}

/* Form */
.contact-form {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #dddddd;
  font-size: 14px;
  outline: none;
  background: #fafafa;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3bb54a;
  background: #ffffff;
}

/* Button */
.contact-btn {
  width: 100%;
  padding: 14px;
  background: #3bb54a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-btn:hover {
  background: #34a442;
}

/* Responsive */
@media(max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}


input::placeholder,
textarea::placeholder {
  font-family:  roboto; /* Use the name you defined or the Google Fonts name */
  /* You can also add other styles here, like color, font-size, etc. */
  color: #999;
  font-size: 1.2em;
}