/* ─── Hero Section ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.88) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
}

/* Grid lines overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 800px;
}

/* ─── Hero Badge ─── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  background: rgba(201,168,76,0.05);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.hero-badge span {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ─── Hero Heading ─── */
.hero-h1 {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s ease forwards;
  opacity: 0;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(245,240,232,0.7);
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s 0.4s ease forwards;
  opacity: 0;
}

/* ─── Hero Buttons ─── */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease forwards;
  opacity: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 16px 40px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.4s;
}
.btn-primary:hover::before { transform: translateX(100%) skewX(-20deg); }
.btn-primary:hover {
  box-shadow: 0 10px 40px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(245,240,232,0.3);
  cursor: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── Hero Stats ─── */
.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0;
  z-index: 2;
  animation: fadeInUp 0.8s 0.8s ease forwards;
  opacity: 0;
}

.stat-item {
  padding: 24px 50px;
  border-right: 1px solid rgba(201,168,76,0.2);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 2px;
  margin-top: 6px;
}

/* ─── Scroll Indicator ─── */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  cursor: none;
}
.hero-scroll span {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 3px;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollAnim 2s infinite;
}
