/* ===========================================
   Alhoshan Real Estate – Main Style File
   File: assets/css/alhoshan-style.css
   =========================================== */

/* Reset & Base */
body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background: #f9f9f9;
  color: #222;
  direction: rtl;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

input, select {
  font-family: inherit;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

label span {
  color: red;
}

/* Hero */
.alhoshan-hero {
  background: linear-gradient(to left, #0a2f56, #144472);
  color: white;
  text-align: center;
  padding: 60px 20px 40px;
}

.alhoshan-logo {
  max-width: 100px;
  margin-bottom: 15px;
}

.alhoshan-hero-content h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.alhoshan-hero-content p {
  font-size: 16px;
  opacity: 0.8;
}

/* Steps Bar */
.alhoshan-steps {
  display: flex;
  justify-content: center;
  margin: 30px auto;
  gap: 10px;
}

.alhoshan-step {
  width: 35px;
  height: 35px;
  background: #ccc;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  transition: 0.3s;
}

.alhoshan-step.active {
  background: #144472;
}

/* Form */
.alhoshan-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.07);
}

.alhoshan-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.alhoshan-field-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.alhoshan-service-title {
  font-size: 18px;
  margin: 30px 0 15px;
  text-align: center;
}

.alhoshan-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.alhoshan-service-card {
  background: #f1f4f9;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.alhoshan-service-card:hover,
.alhoshan-service-card.active {
  border-color: #144472;
  background: #eaf1f7;
}

.alhoshan-service-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.alhoshan-service-label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
}

.alhoshan-service-desc {
  font-size: 13px;
  color: #555;
}

/* Actions */
.alhoshan-form-actions {
  text-align: center;
  margin-top: 20px;
}

.alhoshan-btn {
  background: #144472;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
}

.alhoshan-btn:hover {
  background: #0a2f56;
}

/* Footer */
.alhoshan-footer {
  margin-top: 60px;
  background: #0a2f56;
  color: white;
  padding: 30px 15px;
  text-align: center;
}

.alhoshan-footer-content p {
  margin: 5px 0;
  font-size: 14px;
  opacity: 0.9;
}
