/* =====================================================
   ALUKRAFTON – Modern Premium CSS 2.0
   Ultra-modern, glassmorphism, smooth animations
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --ink:        #080a0f;
  --ink2:       #0f1117;
  --ink3:       #181c24;
  --gold:       #d4a843;
  --gold2:      #b88c30;
  --gold-glow:  rgba(212,168,67,.18);
  --cream:      #f7f5f0;
  --cream2:     #eeebe4;
  --white:      #ffffff;
  --txt:        #2c2f36;
  --muted:      #6b7280;
  --border:     rgba(0,0,0,.08);
  --border-dark:rgba(255,255,255,.08);

  /* Typography */
  --sans:  'Inter', system-ui, sans-serif;
  --serif: 'DM Serif Display', Georgia, serif;

  /* Spacing */
  --nav-h: 76px;
  --r:     6px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* Effects */
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow:    0 8px 40px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 80px rgba(0,0,0,.16);
  --ease:      cubic-bezier(.22,.68,0,1.2);
  --ease-out:  cubic-bezier(.4,0,.2,1);
  --dur:       .45s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--txt);
  background: var(--white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section { padding: 110px 0; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

.section-header { margin-bottom: 4.5rem; }

.accent { color: var(--gold); font-style: italic; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 2.2rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all var(--dur) var(--ease-out);
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .25s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--ink);
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212,168,67,.35);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.45);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0,0,0,.2);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--dur) var(--ease-out), box-shadow var(--dur);
}

.navbar.scrolled {
  background: rgba(8,10,15,.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 8px 32px rgba(0,0,0,.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 1px;
}
.logo-main {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--white);
}
.logo-sub {
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  position: relative;
  transition: color var(--dur);
  padding: .25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Lang Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: .25rem .4rem;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  padding: .3rem .55rem;
  border-radius: 999px;
  transition: all .25s;
  font-family: var(--sans);
}
.lang-btn:hover { color: rgba(255,255,255,.85); }
.lang-btn.active {
  background: var(--gold);
  color: var(--ink);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all .35s var(--ease-out);
  transform-origin: center;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,10,15,.9) 0%, rgba(8,10,15,.4) 60%, rgba(8,10,15,.15) 100%),
    linear-gradient(to top, rgba(8,10,15,.8) 0%, transparent 50%);
  z-index: 1;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease, transform 8s ease;
  transform: scale(1.06);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 8rem;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .9s .3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .9s .5s forwards;
  letter-spacing: -.02em;
}
.hero-title .line { display: block; }
.hero-title .line-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 2.75rem;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp .9s .7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .9s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.hero-scroll span {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

/* Slide counter */
.hero-counter {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.counter-track {
  display: flex;
  gap: .4rem;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: all .4s var(--ease-out);
}
.dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

/* ═══════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════ */
.marquee-bar {
  background: var(--ink2);
  border-top: 1px solid rgba(212,168,67,.15);
  border-bottom: 1px solid rgba(255,255,255,.04);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.marquee-bar::before,
.marquee-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.marquee-bar::before { left: 0; background: linear-gradient(to right, var(--ink2), transparent); }
.marquee-bar::after  { right: 0; background: linear-gradient(to left, var(--ink2), transparent); }

.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.marquee-track .sep { color: var(--gold); opacity: .7; }

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,168,67,.2);
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--serif);
  font-size: .85rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: .08em;
}

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(212,168,67,.12), rgba(212,168,67,.04));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--gold);
  border: 1px solid rgba(212,168,67,.15);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.service-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap var(--dur);
}
.service-link:hover { gap: .9rem; }

.services-cta { text-align: center; margin-top: 3.5rem; }

/* ═══════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════ */
.stats-section {
  background: var(--ink);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(212,168,67,.06) 0%, transparent 70%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.04);
  transition: all var(--dur);
}
.stat-item:hover {
  background: rgba(212,168,67,.05);
  border-color: rgba(212,168,67,.15);
}

.stat-value-wrap {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: .75rem;
}
.stat-number {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: var(--gold);
}
.stat-plus {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: .4rem;
}
.stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about-band { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 560px;
  transition: transform .8s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,15,.5) 0%, transparent 50%);
}

.about-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(212,168,67,.4);
}
.badge-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--ink);
  line-height: 1;
}
.badge-txt {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: .97rem;
  line-height: 1.8;
}

.about-list {
  margin: 1.75rem 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
}
.about-list li i {
  color: var(--gold);
  font-size: .8rem;
  width: 18px; height: 18px;
  background: rgba(212,168,67,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════════════ */
.projects-section { background: var(--cream); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}

.project-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--ink2);
  group: true;
}
.project-card.large { grid-column: span 2; }

.project-img {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.project-card.large .project-img { height: 400px; }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,15,.88) 0%, rgba(8,10,15,.3) 50%, transparent 100%);
  transition: background var(--dur);
}
.project-card:hover .project-img { transform: scale(1.06); }
.project-card:hover .project-overlay { background: linear-gradient(to top, rgba(8,10,15,.92) 0%, rgba(8,10,15,.5) 60%, rgba(8,10,15,.2) 100%); }

.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  transform: translateY(8px);
  transition: transform var(--dur) var(--ease-out);
}
.project-card:hover .project-info { transform: translateY(0); }

.project-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.project-info h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .35rem;
  line-height: 1.2;
}
.project-info p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--dur) .05s var(--ease-out);
}
.project-card:hover .project-info p {
  opacity: 1;
  transform: translateY(0);
}

.projects-cta { text-align: center; margin-top: 3.5rem; }

/* ═══════════════════════════════════════════════════
   WHY
═══════════════════════════════════════════════════ */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

.why-item {
  padding: 2.5rem 2rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.why-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.why-item:hover {
  border-color: rgba(212,168,67,.2);
  box-shadow: 0 8px 40px rgba(212,168,67,.08);
  transform: translateY(-5px);
}
.why-item:hover::after { transform: scaleX(1); }

.why-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.35rem;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(212,168,67,.1), rgba(212,168,67,.03));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .6rem;
}
.why-item p { font-size: .87rem; color: var(--muted); line-height: 1.72; }

/* ═══════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════ */
.cta-band {
  background: var(--ink);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.2;
}
.cta-text p { color: rgba(255,255,255,.5); font-size: .97rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--ink2);
  padding: 90px 0 0;
  border-top: 1px solid rgba(255,255,255,.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 270px;
}

.social-links {
  display: flex;
  gap: .7rem;
  margin-top: 1.75rem;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  transition: all var(--dur);
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(212,168,67,.25);
}

.footer-col h5 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--dur);
}
.footer-col ul li a:hover { color: var(--gold); }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1rem;
}
.contact-list li i {
  color: var(--gold);
  font-size: .8rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.contact-list li span, .contact-list li a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
}
.contact-list li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.75rem 0;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.2);
  text-align: center;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════ */
.page-hero {
  background: var(--ink2);
  padding: 170px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(212,168,67,.05) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,168,67,.4), transparent);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.5rem;
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: .6rem; }

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--white);
  max-width: 640px;
  line-height: 1.1;
  position: relative;
  letter-spacing: -.02em;
}
.page-hero p {
  color: rgba(255,255,255,.5);
  margin-top: 1.25rem;
  font-size: 1rem;
  max-width: 500px;
  position: relative;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll reveal */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
[data-aos].revealed { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="100"] { transition-delay: .12s; }
[data-aos][data-aos-delay="200"] { transition-delay: .22s; }
[data-aos][data-aos-delay="300"] { transition-delay: .32s; }
[data-aos][data-aos-delay="400"] { transition-delay: .42s; }

/* ═══════════════════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════════════════ */
.map-section { line-height: 0; }
.map-section iframe {
  width: 100%;
  height: 440px;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .why-grid      { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.large { grid-column: span 2; }
  .about-inner   { gap: 3.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .container { padding: 0 1.5rem; }

  .nav-links { display: none; }
  .lang-switcher { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,10,15,.97);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
  }
  .nav-links.open .lang-switcher-mobile {
    display: flex;
    margin-top: .5rem;
  }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-desc { font-size: .95rem; }
  .hero-content { padding-bottom: 6rem; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .why-grid      { grid-template-columns: 1fr; }
  .about-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap img { height: 340px; }
  .about-badge   { top: auto; bottom: 1rem; right: 1rem; width: 90px; height: 90px; }
  .badge-num     { font-size: 1.6rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.large { grid-column: span 1; }
  .project-card.large .project-img { height: 280px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-inner     { flex-direction: column; text-align: center; }
  .cta-actions   { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
}


/* Sales-ready additions */
.center { text-align: center; }
.centered { margin-left: auto; margin-right: auto; }
.hero-trust-list {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  opacity: 0;
  animation: fadeUp .9s 1.05s forwards;
}
.trust-pill {
  padding: .55rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
}
.lead-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lead-strip.inner-lead-strip { background: var(--cream); }
.lead-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
}
.lead-point {
  padding: 1rem 1.1rem;
  border-radius: var(--r-lg);
  background: rgba(212,168,67,.06);
  border: 1px solid rgba(212,168,67,.12);
}
.lead-point strong {
  display: block;
  color: var(--ink);
  font-size: .9rem;
  margin-bottom: .35rem;
}
.lead-point span {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
}
.sales-section { background: var(--white); }
.sales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.sales-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  transition: all var(--dur) var(--ease-out);
}
.sales-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(212,168,67,.2);
}
.sales-card i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--gold);
  background: rgba(212,168,67,.1);
  margin-bottom: 1rem;
}
.sales-card h3 { font-size: 1rem; color: var(--ink); margin-bottom: .55rem; }
.sales-card p { font-size: .86rem; color: var(--muted); line-height: 1.7; }
.quote-band {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.quote-band-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.quote-band-copy { max-width: 780px; }
.quote-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: .85rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.floating-btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%); color: var(--ink); }
.floating-btn-secondary { background: rgba(8,10,15,.92); color: var(--white); border: 1px solid rgba(255,255,255,.08); }
.mobile-cta-bar { display: none; }
@media (max-width: 1100px) {
  .sales-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-strip-inner { grid-template-columns: 1fr; }
  .quote-band-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .hero-trust-list { gap: .5rem; }
  .trust-pill { font-size: .68rem; }
  .sales-grid { grid-template-columns: 1fr; }
  .floating-actions { display: none; }
  .mobile-cta-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 1200;
    box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  }
  .mobile-cta-link {
    text-align: center;
    padding: .95rem 1rem;
    font-size: .82rem;
    font-weight: 700;
  }
  .mobile-cta-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%); color: var(--ink); }
  .mobile-cta-secondary { background: var(--ink); color: var(--white); }
  body { padding-bottom: 58px; }
}


/* 5-language switcher */
.lang-switcher { flex-wrap: wrap; }
.lang-btn { min-width: 32px; }

/* Arabic / RTL support */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .breadcrumb,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-social,
html[dir="rtl"] .social-links,
html[dir="rtl"] .cta-actions,
html[dir="rtl"] .feature-list li,
html[dir="rtl"] .about-list li,
html[dir="rtl"] .contact-list li,
html[dir="rtl"] .proj-meta {
  direction: rtl;
}
html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-header,
html[dir="rtl"] .about-text,
html[dir="rtl"] .service-detail-text,
html[dir="rtl"] .contact-form-wrap,
html[dir="rtl"] .contact-info-card,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-col,
html[dir="rtl"] .project-info,
html[dir="rtl"] .proj-body,
html[dir="rtl"] .why-item,
html[dir="rtl"] .value-item,
html[dir="rtl"] .timeline-item,
html[dir="rtl"] .cta-text {
  text-align: right;
}
html[dir="rtl"] .section-tag::before,
html[dir="rtl"] .hero-eyebrow::before { order: 2; }
html[dir="rtl"] .nav-links.open { align-items: flex-end; }
html[dir="rtl"] .lang-switcher { direction: rtl; }
@media (max-width: 768px) {
  .lang-switcher .lang-btn { min-width: 30px; padding: .3rem .45rem; }
}
