.contact-form {
  width: 100%;
}

.form-container {
  margin: 0 auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

/* Header */
.form-header {
  margin-bottom: 24px;
}

.form-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
}

.form-description {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

/* 🔥 THIS CENTERS THE BUTTON */
.submit-wrapper {
  display: flex;
  justify-content: center;
}

/* Labels */
label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* Inputs */
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  font-size: 15px;
  transition: all 0.2s ease;
  background: #fafafa;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #0a66c2;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

/* Button */
.submit-btn {
  background: #111;
  color: white;
  font-weight: 600;
  padding: 14px 60px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  max-width: 180px;
  text-align: center;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* RTL */
:dir(rtl) .form-container {
  text-align: right;
}


