/* homepage.css — Extracted inline styles from index.html */

/* Stats Bar */
.stats-bar {
  background: var(--color-amber);
  padding: 1rem 0;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-arabic-black), sans-serif;
  font-size: 2rem;
  color: var(--color-ink);
}

.stat-number--icon {
  display: flex;
  justify-content: center;
}

.stat-number--icon img {
  display: block;
  margin: 4px 0;
}

/* How It Works Steps */
.how-it-works-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.connector-line {
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  width: 80%;
  height: 2px;
  z-index: 0;
}

.step-card {
  flex: 1;
  min-width: 150px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-gov-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-arabic-black), sans-serif;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.step-card img {
  margin: 0 auto 1rem;
  color: var(--color-ink);
}

/* Categories Browser */
.categories-browser {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.categories-browser::-webkit-scrollbar {
  display: none;
}

/* Service Card inline style overrides */
.service-card h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-card .badge-time {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Grid */
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Smart Tools Band — already has CSS, just ensure it has no issues */
.smart-tools-head p {
  color: var(--color-text-secondary);
  max-width: 48rem;
}

.smart-tools-head h2 {
  margin: 0.85rem 0 0.4rem;
}

/* Ad Slot Horizontal */
.ad-slot--horizontal {
  min-height: 90px;
  background: #F0EDE6;
  text-align: center;
  margin-block: 2rem;
}

[data-theme="dark"] .ad-slot--horizontal {
  background: var(--color-surface);
}

/* Section with no top padding */
.section-padding--no-top {
  padding-top: 0;
}

/* Popular services section subtitle */
.popular-services-subtitle {
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

/* Hide on mobile utility */
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
  
  .stats-container {
    gap: 2rem;
  }
}

