/* ==========================================
   Hero Section
   ========================================== */
.hero {
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(66, 129, 119, 0.55) 0%, rgba(66, 129, 119, 0) 60%),
    radial-gradient(90% 80% at 10% 110%, rgba(185, 167, 121, 0.24) 0%, rgba(185, 167, 121, 0) 62%),
    linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: var(--white);
  padding: calc(var(--space-2xl) + 16px) 0 calc(var(--space-2xl) + 8px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(185, 167, 121, 0.28);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.045);
  transform: rotate(-15deg);
}

/* Subtle dotted texture + soft gold halo */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(80% 60% at 50% 0%, #000 0%, transparent 75%);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(185, 167, 121, 0.45);
  color: #e6dcc4;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-eyebrow svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-xl);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-cta-primary {
  background: linear-gradient(135deg, #d8c894, var(--gold));
  color: var(--primary-green);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  font-weight: 800;
}

.hero-cta-primary:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  filter: brightness(1.04);
}

.hero-cta-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

.hero-cta-arrow {
  transition: transform var(--transition-fast);
}

[dir="rtl"] .hero-cta-arrow {
  transform: scaleX(-1);
}

.hero-cta-ghost:hover .hero-cta-arrow {
  transform: translateX(3px);
}

[dir="rtl"] .hero-cta-ghost:hover .hero-cta-arrow {
  transform: scaleX(-1) translateX(3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  margin: 0;
  padding: 0;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.search-filter-select {
  border-radius: 18px;
  background-color: var(--white);
}

.hero-stat {
  text-align: center;
  min-width: 132px;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(185, 167, 121, 0.5);
  transform: translateY(-2px);
}

.hero-stat-number {
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1.2;
  display: block;
  font-family: var(--font-en);
  letter-spacing: -0.02em;
}

.hero-stat-live {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-stat-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: heroPulse 2.2s ease-out infinite;
}

@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero-stat-label {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
