/* ============================================================
   Dar Al Hashem Construction — Main Stylesheet
   ============================================================ */

/* ── 1. CSS Custom Properties ──────────────────────────────── */
:root {
  --bg:           #0a0a0a;
  --bg-2:         #0f0f0f;
  --bg-3:         #141414;
  --bg-4:         #1a1a1a;
  --bg-card:      #111111;
  --gold:         #c8a96e;
  --gold-light:   #d4bb88;
  --gold-dark:    #a88850;
  --white:        #ffffff;
  --gray:         #888888;
  --gray-light:   #bbbbbb;
  --border:       rgba(255, 255, 255, 0.07);
  --border-gold:  rgba(200, 169, 110, 0.3);
  --font-h:       'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-b:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:       0 20px 60px rgba(0, 0, 0, 0.5);
  --container:    1380px;
  --section-py:   120px;
  --radius:       4px;
}

/* ── 2. Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 3. Layout Helpers ──────────────────────────────────────── */
.container       { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.container-wide  { max-width: 1600px;            margin: 0 auto; padding: 0 48px; }
.container-narrow{ max-width: 900px;             margin: 0 auto; padding: 0 40px; }

.section { padding: var(--section-py) 0; }
.section--dark  { background: var(--bg); }
.section--dark-2{ background: var(--bg-2); }
.section--dark-3{ background: var(--bg-3); }

/* Section Label (small uppercase tag above heading) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}

/* Section Heading */
.section-heading {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 640px;
}

/* Thin gold rule */
.gold-rule {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

/* ── 4. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Text link with arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 4px;
}
.text-link:hover { border-color: var(--gold); gap: 16px; }
.text-link i { font-size: 11px; }

/* ── 5. Navbar ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo .logo-img {
  height: 200px;
  width: auto;
  display: block;
  transition: opacity var(--transition), height var(--transition);
}
.site-header.scrolled .site-logo .logo-img {
  height: 120px;
}
.site-logo:hover .logo-img { opacity: 0.85; }

/* Primary Nav */
.primary-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link--cta {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold) !important;
  margin-left: 8px;
}
.nav-link--cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
  border-color: var(--gold);
}
.nav-arrow { font-size: 9px; transition: var(--transition); }
.nav-item.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
/* Bridge gap so mouse doesn't lose hover when moving from link to dropdown */
.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}
.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown ul { padding: 4px 0; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--gray-light);
  transition: var(--transition);
  border-left: 2px solid transparent;
}
.nav-dropdown a:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(200,169,110,0.05);
  padding-left: 24px;
}

/* Nav Social */
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-social { display: flex; align-items: center; gap: 14px; }
.nav-social a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.nav-social a:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.70) 50%,
    rgba(10,10,10,0.50) 100%
  );
}
/* Default CSS-art hero when no image is set */
.hero-bg--default {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 60%, rgba(200,169,110,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.04) 0%, transparent 45%),
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: auto, auto, 70px 70px, 70px 70px;
}
.hero-bg--default::after { background: transparent; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: 120px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-label::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 18px; }

/* Hero counter strip at bottom */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  border-top: 1px solid var(--border);
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(8px);
}
.hero-stats-inner {
  display: flex;
  align-items: stretch;
}
.hero-stat {
  flex: 1;
  padding: 28px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── Hero Slider ──────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hs-slide.active {
  opacity: 1;
  pointer-events: auto;
}
/* Background with Ken Burns zoom */
.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hs-slide.active .hs-bg { transform: scale(1); }
.hs-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.72) 50%,
    rgba(10,10,10,0.45) 100%
  );
}
.hs-bg--default {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 60%, rgba(200,169,110,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.04) 0%, transparent 45%),
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: auto, auto, 70px 70px, 70px 70px;
}
.hs-bg--default::after { background: transparent; }

/* Content layer */
.hs-content-wrap {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 200px;
}

/* Override CSS-animation on hero text — use transition instead */
.hero-slider .hs-slide .hero-label,
.hero-slider .hs-slide .hero-title,
.hero-slider .hs-slide .hero-subtitle,
.hero-slider .hs-slide .hero-cta {
  animation: none;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero-slider .hs-slide.active .hero-label   { opacity: 1; transform: none; transition-delay: 0.35s; }
.hero-slider .hs-slide.active .hero-title   { opacity: 1; transform: none; transition-delay: 0.55s; }
.hero-slider .hs-slide.active .hero-subtitle{ opacity: 1; transform: none; transition-delay: 0.75s; }
.hero-slider .hs-slide.active .hero-cta     { opacity: 1; transform: none; transition-delay: 0.95s; }

/* Prev / Next arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 100px));
  z-index: 10;
  width: 54px;
  height: 54px;
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  backdrop-filter: blur(6px);
  padding: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.hs-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: translateY(calc(-50% - 100px)) scale(1.08);
}
.hs-prev { left: 40px; }
.hs-next { right: 40px; }

/* Dots + slide counter row */
.hs-nav {
  position: absolute;
  bottom: 140px;
  left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  pointer-events: none;
}
.hs-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}
.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.hs-dot.active,
.hs-dot:hover { background: var(--gold); border-color: var(--gold); width: 32px; }
.hs-counter {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: baseline;
  gap: 5px;
  letter-spacing: 2px;
  pointer-events: none;
}
.hs-counter-current {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hs-counter-sep { color: rgba(255,255,255,0.2); }

/* Progress bar at top */
.hs-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  z-index: 20;
}
.hs-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  width: 0;
  will-change: width;
}

/* Responsive */
@media (max-width: 900px) {
  .hs-arrow { display: none; }
  .hs-nav { bottom: 120px; }
}

/* ── 7. Welcome Section ──────────────────────────────────────── */
.welcome-section { padding: var(--section-py) 0; background: var(--bg-2); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-text .section-subtitle { max-width: 100%; }
.welcome-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.welcome-visual {
  position: relative;
}
.welcome-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}
.welcome-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.welcome-image-wrap:hover img { transform: scale(1.04); }
.welcome-image-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--gold);
  color: var(--bg);
  padding: 28px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.welcome-image-badge strong {
  display: block;
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.welcome-image-badge span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── 8. Stats / Counters ─────────────────────────────────────── */
.stats-section { padding: 0; }
.stats-row {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  padding: 60px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-3); }
.stat-number {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}

/* ── 9. Achievements Strip ───────────────────────────────────── */
.achievements-section {
  padding: 64px 0;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.achievements-inner { display: flex; align-items: center; gap: 0; }
.achievement-item {
  flex: 1;
  padding: 16px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.achievement-item:last-child { border-right: none; }
.achievement-icon {
  width: 44px; height: 44px;
  background: rgba(200,169,110,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.achievement-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.achievement-text span { font-size: 12px; color: var(--gray); }

/* ── 10. Expertise Section ───────────────────────────────────── */
.expertise-section { padding: var(--section-py) 0; background: var(--bg); }
.expertise-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.expertise-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.expertise-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.expertise-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}
.expertise-card:hover { border-color: var(--border-gold); }
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-card:hover .expertise-card-icon { background: var(--gold); color: var(--bg); }

/* Image banner at top of card */
.expertise-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}
.expertise-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: brightness(0.85);
}
.expertise-card:hover .expertise-card-img img {
  transform: scale(1.06);
  filter: brightness(1);
}
.expertise-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.1) 60%, transparent 100%);
  transition: background var(--transition);
}
.expertise-card:hover .expertise-card-img-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.05) 60%, transparent 100%);
}

/* Card body below image (or standalone) */
.expertise-card-body {
  padding: 40px 44px 48px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--bg-card);
  transition: background var(--transition);
}
.expertise-card:hover .expertise-card-body { background: var(--bg-3); }

.expertise-card-num {
  font-family: var(--font-h);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 16px;
  user-select: none;
}
.expertise-card--img .expertise-card-num { display: none; }

.expertise-card-icon {
  width: 56px; height: 56px;
  background: rgba(200,169,110,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 28px;
  transition: var(--transition);
}
.expertise-card h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.expertise-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
  flex: 1;
}
.expertise-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  margin-top: auto;
}
.expertise-card:hover .card-link { gap: 16px; }

/* ── 11. Sectors Section ─────────────────────────────────────── */
.sectors-section { padding: var(--section-py) 0; background: var(--bg-2); }
.sectors-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* ── Sector Card (homepage grid) ── */
.sector-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  display: block;
  color: inherit;
  transition: border-color var(--transition), transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease;
}
.sector-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45);
}
/* Gold accent bar slides in from left on hover */
.sector-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}
.sector-card:hover::before { transform: scaleX(1); }

/* Image layer — fills entire card */
.sector-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sector-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.75);
}
.sector-card:hover .sector-card-img img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

/* Gradient — heavier at bottom for text legibility */
.sector-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.97) 0%,
    rgba(5,5,5,0.55) 40%,
    rgba(5,5,5,0.08) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}
.sector-card:hover .sector-card-overlay {
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.92) 0%,
    rgba(5,5,5,0.42) 45%,
    transparent 100%
  );
}

/* Icon + Name pinned to bottom centre */
.sector-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 18px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform var(--transition);
}
.sector-card:hover .sector-card-content { transform: translateY(-4px); }

/* No-image fallback — centred layout */
.sector-card--no-img {
  aspect-ratio: auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}
.sector-card--no-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.sector-card--no-img:hover::after { opacity: 0.05; }
.sector-card--no-img .sector-card-content {
  position: static;
  padding: 36px 20px;
  transform: none !important;
}

.sector-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,169,110,0.14);
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: var(--radius);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.sector-card:hover .sector-icon {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.sector-card--no-img .sector-icon { margin-bottom: 0; }
.sector-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}

/* ── Sector Row (sectors.php inner page) ── */
.sector-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  min-height: 480px;
}
.sector-row--reverse .sector-row-img  { order: 2; }
.sector-row--reverse .sector-row-content { order: 1; }

.sector-row-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}
.sector-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.85);
}
.sector-row:hover .sector-row-img img {
  transform: scale(1.04);
  filter: brightness(1);
}
.sector-row-img-fallback {
  width: 100%; height: 100%;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  color: rgba(200,169,110,0.12);
}

.sector-row-content {
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}
.sector-row-icon {
  width: 64px; height: 64px;
  background: rgba(200,169,110,0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 28px;
  transition: var(--transition);
}
.sector-row:hover .sector-row-icon { background: var(--gold); color: var(--bg); }
.sector-row-content .section-label { margin-bottom: 10px; }
.sector-row-content p {
  color: var(--gray-light);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .sector-row { grid-template-columns: 1fr; min-height: auto; }
  .sector-row--reverse .sector-row-img  { order: 0; }
  .sector-row--reverse .sector-row-content { order: 0; }
  .sector-row-content { padding: 48px 32px; }
  .sector-row-img { min-height: 280px; }
}

/* ── 12. Projects Section ────────────────────────────────────── */
.projects-section { padding: var(--section-py) 0; background: var(--bg); }
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}
.projects-filter-row {
  display: flex;
  gap: 24px;
  margin-bottom: 56px;
}
.projects-filter-row a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.projects-filter-row a:hover,
.projects-filter-row a.active {
  color: var(--gold);
  border-color: var(--gold);
}
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.project-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-4);
  cursor: pointer;
}
.project-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  color: rgba(255,255,255,0.05);
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card:hover .project-card-img { transform: scale(1.06); }
.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 2;
  transform: translateY(8px);
  transition: var(--transition);
}
.project-card:hover .project-card-info { transform: translateY(0); }
.project-status-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 10px;
}
.badge-ongoing   { background: rgba(200,169,110,0.2); color: var(--gold); border: 1px solid var(--border-gold); }
.badge-completed { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }

.project-card-info h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.project-card-meta { font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* ── 13. Group Companies Section ─────────────────────────────── */
.group-section { padding: var(--section-py) 0; background: var(--bg-2); }
.group-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.group-card {
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.group-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}
.group-card:hover { border-color: var(--border-gold); background: var(--bg-3); }
.group-card:hover::before { transform: scaleX(1); }

/* Logo image at top of card */
.group-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}
.group-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}
.group-card:hover .group-card-img img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Content area below image (or standalone when no image) */
.group-card-body {
  padding: 32px 36px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.group-card-icon {
  width: 52px; height: 52px;
  background: rgba(200,169,110,0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.group-card:hover .group-card-icon { background: var(--gold); color: var(--bg); }
.group-card-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.group-card h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.group-card p { font-size: 0.92rem; color: var(--gray-light); line-height: 1.7; margin-bottom: 28px; }
.group-card .visit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--transition);
  margin-top: auto;
}
.group-card:hover .visit-link { color: var(--gold); gap: 14px; }

/* ── 14. Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--bg);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 70%, rgba(200,169,110,0.06) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.80);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: var(--gold); }
.page-hero-breadcrumb a:hover { text-decoration: underline; }
.page-hero-breadcrumb i { font-size: 9px; }
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 20px;
}
.page-hero p { font-size: 1.05rem; color: var(--gray-light); max-width: 580px; line-height: 1.8; }

/* ── 15. Cards ──────────────────────────────────────────────── */
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

/* News card */
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { border-color: var(--border-gold); }
.news-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-4);
  position: relative;
}
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-card-type {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  border-radius: 2px;
}
.news-card-body { padding: 28px; }
.news-card-date { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.news-card-body h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--white);
  transition: var(--transition);
}
.news-card:hover .news-card-body h3 { color: var(--gold); }
.news-card-body p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.7; }

/* Team card */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--border-gold); }
.team-card-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-4);
  position: relative;
}
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-card-photo img { transform: scale(1.05); }
.team-card-photo-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(255,255,255,0.06);
  height: 100%;
}
.team-card-info { padding: 24px; }
.team-card-info h3 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.team-card-info span { font-size: 12px; color: var(--gold); letter-spacing: 1px; font-weight: 500; }

/* ── 16. Contact Page ────────────────────────────────────────── */
.contact-section { padding: var(--section-py) 0; background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info-card {
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: fit-content;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(200,169,110,0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.contact-info-text span, .contact-info-text a { font-size: 14px; color: var(--gray-light); }
.contact-info-text a:hover { color: var(--gold); }

/* Form */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}
.form-control::placeholder { color: rgba(255,255,255,0.2); }
.form-control:focus { border-color: var(--gold); background: var(--bg-3); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* ── 17. FAQ Accordion ───────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
}
.faq-question h3 { font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.5; }
.faq-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px;
  transition: var(--transition);
}
.faq-item.is-open .faq-icon { background: var(--gold); color: var(--bg); transform: rotate(45deg); }
.faq-item.is-open .faq-question h3 { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 0 24px; color: var(--gray-light); line-height: 1.8; }

/* ── 18. Pagination ──────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
}
.page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--gray-light);
  font-size: 13px; font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.page-btn.disabled { opacity: 0.3; pointer-events: none; }

/* ── 19. Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); }

.footer-newsletter {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.newsletter-text p { color: var(--gray-light); font-size: 0.95rem; }
.newsletter-form { flex: 1; min-width: 300px; max-width: 540px; }
.newsletter-input-wrap {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-4);
}
.newsletter-input-wrap input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 14px;
  outline: none;
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-input-wrap button {
  padding: 16px 28px;
  background: var(--gold);
  color: var(--bg);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-input-wrap button:hover { background: var(--gold-light); }
.newsletter-msg { margin-top: 10px; font-size: 13px; }
.newsletter-msg.success { color: #4CAF50; }
.newsletter-msg.error   { color: #f44336; }

.footer-main { padding: 80px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo {
  display: flex; align-items: center; margin-bottom: 16px;
}
.footer-logo-img {
  height: 200px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.footer-logo:hover .footer-logo-img { opacity: 0.85; }
.footer-tagline { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: 13px;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13.5px; color: var(--gray); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--gray); font-size: 13.5px; margin-bottom: 14px;
}
.footer-contact-list i { color: var(--gold); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: var(--gray); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }
.back-to-top {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray);
  transition: var(--transition);
}
.back-to-top:hover { color: var(--gold); }
.back-to-top i {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  transition: var(--transition);
}
.back-to-top:hover i { border-color: var(--gold); background: var(--gold); color: var(--bg); }

/* ── 20. Flash / Alert Messages ──────────────────────────────── */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.alert-success { background: rgba(76,175,80,0.12);  border: 1px solid rgba(76,175,80,0.3);  color: #81c784; }
.alert-error   { background: rgba(244,67,54,0.12);  border: 1px solid rgba(244,67,54,0.3);  color: #e57373; }
.alert-info    { background: rgba(200,169,110,0.1); border: 1px solid var(--border-gold);  color: var(--gold); }

/* ── 21. Reveal Animations ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── 22. Utility ─────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-gray   { color: var(--gray); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.d-flex      { display: flex; }
.align-center{ align-items: center; }
.gap-16      { gap: 16px; }
.gap-24      { gap: 24px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }
.mt-40       { margin-top: 40px; }
.mt-64       { margin-top: 64px; }
.mb-16       { margin-bottom: 16px; }
.mb-24       { margin-bottom: 24px; }
.mb-40       { margin-bottom: 40px; }
.mb-64       { margin-bottom: 64px; }
.divider {
  width: 100%; height: 1px;
  background: var(--border);
  margin: 64px 0;
}
.tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(200,169,110,0.1);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* Selection */
::selection { background: rgba(200,169,110,0.3); color: var(--white); }
