.container .contact-section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    padding: 40px 10px;
    align-items: center;
    gap: 40px;
}


/* REMOVE BACKGROUND */
.right {
  background: transparent;
  padding: 0;
}

/* FORM WRAPPER */
.contact-form {
  max-width: 760px;
}

/* INPUTS */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #f5fbfd;
  font-size: 16px;
  color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b7280;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
}

/* GRID */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* SINGLE FIELD */
.field {
  margin-bottom: 22px;
}

/* SERVICES TITLE */
.services-title {
  margin: 32px 0 18px;
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 48px;
  margin-bottom: 32px;
}

/* CHECKBOX LABEL */
.services-grid label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #2563eb;
  cursor: pointer;
}

/* CUSTOM CHECKBOX */
.services-grid input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #d1d5db;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* CHECKED STATE */
.services-grid input[type="checkbox"]:checked {
  border-color: #2563eb;
  background: #2563eb;
}

.services-grid input[type="checkbox"]:checked::after {
  content: "✓";
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

/* TEXTAREA */
textarea {
  resize: none;
  min-height: 160px;
  margin-top: 10px;
}

/* SUBMIT BUTTON */
.submit-btn {
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 550;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* FORM MESSAGE */
.form-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
