.lang-dropdown.-small {
  margin-right: 10px;
  margin-left: 10px;
}

/* ===== إزالة styles CF7 الافتراضية ===== */
.wpcf7 p {
  margin: 0 !important;
  padding: 0 !important;
}

.wpcf7 br {
  display: none !important;
}

.wpcf7 span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ===== Layout Grid ===== */
.cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.cf7-col {
  display: flex;
  flex-direction: column;
}

.cf7-col-full {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
}

/* ===== Labels ===== */
.wpcf7 label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

/* ===== Inputs ===== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  margin: 0;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  border-color: #2ecc71;
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.12);
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #bbb;
  font-size: 13px;
}

/* ===== Textarea ===== */
.wpcf7 textarea {
  height: 150px;
  resize: vertical;
}

/* ===== Submit Button ===== */
.wpcf7 input[type="submit"] {
  background-color: #2ecc71;
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
  display: inline-block;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #27ae60;
}

/* ===== Responsive Mobile ===== */
@media (max-width: 600px) {
  .cf7-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}