/* Roboto Condensed - Variable Font */
@font-face {
  font-family: 'Roboto Condensed';
  src: url(../font/en/roboto/RobotoCondensed-VariableFont_wght.eot);
  src: url(../font/en/roboto/RobotoCondensed-VariableFont_wght.eot?#iefix) format('embedded-opentype'),
       url(../font/en/roboto/RobotoCondensed-VariableFont_wght.woff2) format('woff2'),
       url(../font/en/roboto/RobotoCondensed-VariableFont_wght.woff) format('woff'),
       url(../font/en/roboto/RobotoCondensed-VariableFont_wght.ttf) format('truetype'),
       url(../font/en/roboto/RobotoCondensed-VariableFont_wght.otf) format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url(../font/en/roboto/RobotoCondensed-VariableFont_wght.eot);
  src: url(../font/en/roboto/RobotoCondensed-VariableFont_wght.eot?#iefix) format('embedded-opentype'),
       url(../font/en/roboto/RobotoCondensed-VariableFont_wght.woff2) format('woff2'),
       url(../font/en/roboto/RobotoCondensed-VariableFont_wght.woff) format('woff'),
       url(../font/en/roboto/RobotoCondensed-VariableFont_wght.ttf) format('truetype'),
       url(../font/en/roboto/RobotoCondensed-VariableFont_wght.otf) format('opentype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* تطبيق الخط */
body, html {
  font-family: 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
}

/* الأوزان المختلفة */
.text-light { font-weight: 300; }
.text-normal { font-weight: 400; }
.text-bold { font-weight: 700; }
.text-black { font-weight: 900; }

/* للعناوين */
h1, h2, h3 {
  font-weight: 700;
}

/* للنصوص المائلة */
em, i {
  font-style: italic;
}
/* تطبيق الخط على الموقع */
body, html {
  font-family: 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
}

/* استخدام الأوزان المختلفة - كلها تعمل الآن */
.text-thin {
  font-weight: 100;
}

.text-light {
  font-weight: 300;
}

.text-normal {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-semibold {
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

.text-extrabold {
  font-weight: 800;
}

.text-black {
  font-weight: 900;
}

/* للعناوين تلقائياً */
h1 {
  font-weight: 700;
}

h2 {
  font-weight: 600;
}

h3 {
  font-weight: 500;
}

/* للنصوص المائلة */
em, i {
  font-style: italic;
}

/* =========================
   VARIABLES (NEW THEME)
========================= */
:root {
  --primary: #0b1f3a;   /* كحلي */
  --secondary: #ffc107; /* أصفر */
  --light: #fbfbfb;     /* رمادي فاتح */
  --text: #333;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(135deg, var(--primary), #132d52);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero p {
  color: #ddd;
  margin-bottom: 20px;
  font-weight: 400;
}

/* =========================
   SEARCH
========================= */
.search-box {
  margin-top: 20px;
}

.search-box input {
  padding: 12px;
  width: 280px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-family: 'Roboto Condensed', Arial, sans-serif;
}

.search-box button {
  padding: 12px 15px;
  border: none;
  background: var(--secondary);
  color: black;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  font-weight: 600;
}

.search-box button:hover {
  background: #e0a800;
}

/* =========================
   SECTIONS
========================= */
section {
  padding: 70px 0;
}

section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

/* =========================
   GRID
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* =========================
   CARDS (UPGRADED)
========================= */
.card,
.service-card,
.provider-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover,
.service-card:hover,
.provider-card:hover {
  transform: translateY(-5px);
}

/* CARD STYLE */
.card {
  text-align: center;
  border-top: 5px solid var(--secondary);
}

.card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}

.card h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* SERVICE CARD */
.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-weight: 600;
}

/* PROVIDER */
.provider-card {
  text-align: center;
}

.provider-card h3 {
  font-weight: 600;
}

/* =========================
   STEPS (IMPROVED)
========================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: white;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.step h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.step::before {
  content: attr(data-step);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: black;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  font-weight: bold;
}

/* =========================
   CTA (IMPROVED)
========================= */
.cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 60px 0;
  border-radius: 12px;
  margin: 40px 0;
}

.cta h2 {
  color: white;
  margin-bottom: 15px;
}

.cta button {
  background: var(--secondary);
  border: none;
  padding: 12px 20px;
  color: black;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s;
  font-weight: 600;
}

.cta button:hover {
  background: #e0a800;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  
  section h2 {
    font-size: 28px;
  }
  
  section {
    padding: 40px 0;
  }
}