/* ============================================
   WEDO GLOBAL · نحن نفعل
   Light design — wdglobal.org
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --black:      #0C0B09;
  --charcoal:   #1C1814;
  --mid:        #3A3530;
  --dim:        #7A7670;
  --cream:      #FAF8F4;
  --cream-dark: #F2EDE5;
  --light:      #EDE8E0;
  --white:      #FFFFFF;
  --gold:       #B8924A;
  --gold-lt:    #D4AF72;
  --gold-pale:  #F5EDD3;
  --gold-dark:  #8C6A2E;
  --border:     rgba(184,146,74,0.15);
  --border-dark:rgba(184,146,74,0.3);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', 'Helvetica Neue', sans-serif;
  --max:    1280px;
  --pad:    100px 0;
  --ease:   0.35s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ───────────────────────────── */
.container { width: 92%; max-width: var(--max); margin-inline: auto; }

.label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
.heading em { font-style: italic; color: var(--gold); }
.heading.light { color: var(--white); }
.heading.light em { color: var(--gold-lt); }

.body-copy {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.95;
  max-width: 600px;
}
.body-copy.light { color: rgba(255,255,255,0.6); }

.rule {
  width: 44px; height: 1.5px;
  background: var(--gold);
  margin: 24px 0;
}
.rule.center { margin-inline: auto; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 38px;
  transition: var(--ease);
  cursor: pointer;
  border: none;
}
.btn-gold   { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-dark   { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--black); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 82px;
  transition: background var(--ease), height var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: var(--white);
  height: 68px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.08);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  height: 54px; width: auto;
  transition: height var(--ease), filter var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.nav.scrolled .nav-logo img { height: 46px; filter: none; }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color var(--ease);
}
.nav.scrolled .nav-logo-name { color: var(--charcoal); }
.nav-logo-arabic {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gold-lt);
  margin-top: 3px;
  letter-spacing: 0.06em;
  transition: color var(--ease);
}
.nav.scrolled .nav-logo-arabic { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color var(--ease);
}
.nav.scrolled .nav-links a { color: var(--dim); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 26px;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; opacity: 1; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: var(--ease);
}
.nav.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mob-nav {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 88vw); height: 100vh;
  background: var(--charcoal);
  z-index: 999;
  padding: 100px 44px 48px;
  display: flex; flex-direction: column; gap: 28px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.25);
  border-left: 1px solid var(--border);
}
.mob-nav.open { right: 0; }
.mob-nav a { font-family: var(--serif); font-size: 1.7rem; color: var(--white); transition: color var(--ease); }
.mob-nav a:hover { color: var(--gold-lt); }

.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 998;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mob-overlay.open { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════════
   HERO — CINEMATIC SLIDESHOW
═══════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden;
}

/* Slide stack */
.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; }

/* Ken Burns variants — each slide gets a different motion */
.hero-slide.active.kb-1 { animation: kb1 9s ease forwards; }
.hero-slide.active.kb-2 { animation: kb2 9s ease forwards; }
.hero-slide.active.kb-3 { animation: kb3 9s ease forwards; }
.hero-slide.active.kb-4 { animation: kb4 9s ease forwards; }
.hero-slide.active.kb-5 { animation: kb5 9s ease forwards; }
.hero-slide.active.kb-6 { animation: kb6 9s ease forwards; }

@keyframes kb1 { from { transform: scale(1.12) translate(2%, 1%); } to { transform: scale(1) translate(0, 0); } }
@keyframes kb2 { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.1) translate(-2%, -1%); } }
@keyframes kb3 { from { transform: scale(1.08) translate(-1%, 2%); } to { transform: scale(1) translate(1%, 0); } }
@keyframes kb4 { from { transform: scale(1) translate(1%, -1%); } to { transform: scale(1.1) translate(-1%, 1%); } }
@keyframes kb5 { from { transform: scale(1.1) translate(0, -2%); } to { transform: scale(1) translate(0, 1%); } }
@keyframes kb6 { from { transform: scale(1) translate(-1%, 0); } to { transform: scale(1.08) translate(2%, -1%); } }

/* Slide nav dots */
.hero-dots {
  position: absolute; bottom: 100px; right: 5%;
  z-index: 4;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: var(--ease);
  border: none; padding: 0;
}
.hero-dot.active { background: var(--gold-lt); transform: scale(1.4); }

/* Slide counter */
.hero-counter {
  position: absolute; bottom: 108px; left: 5%;
  z-index: 4;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.24em; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 8px;
}
.hero-counter-current {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300;
  color: rgba(255,255,255,0.7); line-height: 1;
}
.hero-counter-sep { width: 24px; height: 1px; background: rgba(255,255,255,0.25); }

/* Progress bar */
.hero-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--gold);
  z-index: 4; width: 0;
  transition: width linear;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(12,11,9,0.70) 0%,
    rgba(12,11,9,0.38) 50%,
    rgba(12,11,9,0.15) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 3;
  padding: 0 5%; max-width: 800px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 28px;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold-lt); flex-shrink: 0; }
.hero-arabic {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0.1em;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 400; line-height: 1.08;
  color: var(--white); margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.95s 0.55s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 520px; line-height: 1.8;
  margin-bottom: 44px;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.9s 0.75s forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.9s 0.9s forwards;
}

/* Stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
}
.stat {
  padding: 24px 28px; text-align: center;
  border-right: 1px solid var(--light);
  opacity: 0; animation: fadeIn 0.8s 1.2s forwards;
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--serif);
  font-size: 2.2rem; font-weight: 400;
  color: var(--gold); line-height: 1; display: block;
}
.stat-l {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim); margin-top: 5px; display: block;
}

/* ═══════════════════════════════════════════
   INTRO BAND
═══════════════════════════════════════════ */
.intro-band {
  background: var(--charcoal);
  padding: 52px 0;
  border-top: 2px solid var(--gold);
}
.intro-band-inner {
  display: flex; align-items: center; gap: 52px;
}
.intro-band-line { width: 1px; height: 64px; background: var(--gold); flex-shrink: 0; }
.intro-band-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.55;
}
.intro-band-text strong {
  font-style: normal; font-weight: 500;
  color: var(--gold-lt);
}

/* ═══════════════════════════════════════════
   ABOUT INTRO
═══════════════════════════════════════════ */
.about-intro { padding: var(--pad); background: var(--white); }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-intro-img { position: relative; }
.about-intro-img img {
  width: 100%; height: 580px; object-fit: cover;
}
.about-intro-img::before {
  content: '';
  position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1.5px solid var(--gold); z-index: -1;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--white);
  padding: 22px 28px; text-align: center;
}
.about-badge-n {
  font-family: var(--serif); font-size: 2.4rem;
  font-weight: 400; display: block; line-height: 1;
}
.about-badge-l {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  display: block; margin-top: 4px;
}
.about-intro-belief {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--mid);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 28px 0;
}
.about-stats-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 36px;
}
.about-stat {
  background: var(--cream-dark);
  padding: 22px 24px;
  border-bottom: 2px solid transparent;
  transition: var(--ease);
}
.about-stat:hover { background: var(--gold-pale); border-bottom-color: var(--gold); }
.about-stat-n {
  font-family: var(--serif); font-size: 1.9rem;
  font-weight: 400; color: var(--charcoal); display: block; line-height: 1;
}
.about-stat-l {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dim); margin-top: 5px; display: block;
}

/* ═══════════════════════════════════════════
   SERVICES (homepage)
═══════════════════════════════════════════ */
.services-home { padding: var(--pad); background: var(--cream); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .rule { margin-inline: auto; }

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.svc-card {
  background: var(--white);
  overflow: hidden; position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.svc-card-photo {
  height: 240px; overflow: hidden;
  position: relative;
}
.svc-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-card-photo img { transform: scale(1.06); }
.svc-card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.4) 0%, transparent 50%);
}
.svc-num {
  position: absolute; bottom: 12px; left: 16px;
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 1;
}
.svc-card-body { padding: 28px 28px 32px; border-top: 2px solid transparent; transition: border-color var(--ease); }
.svc-card:hover .svc-card-body { border-top-color: var(--gold); }
.svc-card-title {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 10px; line-height: 1.25;
}
.svc-card-desc { font-size: 0.82rem; color: var(--dim); line-height: 1.85; margin-bottom: 20px; }
.svc-link {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: inline-flex;
  align-items: center; gap: 8px; transition: gap var(--ease);
}
.svc-link::after { content: '→'; }
.svc-card:hover .svc-link { gap: 14px; }

/* ═══════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════ */
.why-section { padding: var(--pad); background: var(--charcoal); position: relative; overflow: hidden; }
.why-section::before {
  content: 'نحن نفعل';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif); font-size: 16vw; font-weight: 300;
  color: rgba(255,255,255,0.025);
  white-space: nowrap; pointer-events: none;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; position: relative; z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,146,74,0.12);
  padding: 52px 40px;
  transition: var(--ease);
}
.why-card:hover { background: rgba(184,146,74,0.08); border-color: rgba(184,146,74,0.3); }
.why-num {
  font-family: var(--serif); font-size: 4rem; font-weight: 300;
  color: rgba(184,146,74,0.12); line-height: 1; margin-bottom: 24px; display: block;
  transition: color var(--ease);
}
.why-card:hover .why-num { color: rgba(184,146,74,0.22); }
.why-icon {
  width: 44px; height: 44px;
  background: rgba(184,146,74,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: background var(--ease);
}
.why-card:hover .why-icon { background: rgba(184,146,74,0.18); }
.why-icon svg { width: 22px; height: 22px; stroke: var(--gold-lt); fill: none; stroke-width: 1.5; }
.why-title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  color: var(--white); margin-bottom: 12px; line-height: 1.3;
}
.why-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.9; }

/* ═══════════════════════════════════════════
   GALLERY PREVIEW (homepage)
═══════════════════════════════════════════ */
.gallery-preview { padding: var(--pad); background: var(--white); }
.gallery-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px;
}
.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 3px;
}
.g-item { overflow: hidden; position: relative; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item-overlay {
  position: absolute; inset: 0;
  background: rgba(12,11,9,0.28);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: center; justify-content: center;
}
.g-item:hover .g-item-overlay { opacity: 1; }
.g-item-overlay span {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 20px;
}
.g-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.g-item:nth-child(2) { grid-column: span 4; }
.g-item:nth-child(3) { grid-column: span 3; }
.g-item:nth-child(4) { grid-column: span 3; }
.g-item:nth-child(5) { grid-column: span 4; }

/* ═══════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════ */
.partners { padding: 64px 0; background: var(--cream-dark); border-top: 1px solid var(--light); }
.partners-label {
  text-align: center; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 40px; display: block;
}
.partners-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.partner {
  padding: 12px 40px;
  border-right: 1px solid var(--light);
  display: flex; align-items: center; justify-content: center;
}
.partner:last-child { border-right: none; }
.partner img {
  height: 44px; width: auto;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.4s ease;
}
.partner:hover img { filter: grayscale(0%) opacity(1); }

/* ═══════════════════════════════════════════
   TESTIMONIALS CAROUSEL
═══════════════════════════════════════════ */
.testimonial { padding: var(--pad); background: var(--white); position: relative; overflow: hidden; }
.testimonial::before {
  content: '"';
  position: absolute; top: -60px; left: 5%;
  font-family: var(--serif); font-size: 22rem; font-weight: 700;
  color: rgba(184,146,74,0.06); line-height: 1; pointer-events: none;
}

.t-carousel { position: relative; z-index: 1; max-width: 900px; margin-inline: auto; }

.t-track-wrap { overflow: hidden; }
.t-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.t-slide {
  min-width: 100%; padding: 0 4px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

.t-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 28px; }
.t-stars span { color: var(--gold); font-size: 1rem; }

.t-service-tag {
  display: inline-block;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border-dark);
  padding: 5px 14px; margin-bottom: 28px;
}

.t-quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300; font-style: italic;
  color: var(--charcoal); line-height: 1.7;
  margin-bottom: 36px; max-width: 780px;
}

.t-person { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.t-person img {
  width: 64px; height: 64px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold); margin-bottom: 12px;
  background: var(--cream-dark);
}
.t-name {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--charcoal);
}
.t-role { font-size: 0.8rem; color: var(--dim); }

/* Carousel controls */
.t-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 48px;
}
.t-btn {
  width: 44px; height: 44px; background: none;
  border: 1.5px solid var(--light); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease); flex-shrink: 0;
}
.t-btn:hover { border-color: var(--gold); background: var(--gold-pale); }
.t-btn svg { width: 16px; height: 16px; stroke: var(--charcoal); fill: none; stroke-width: 1.5; }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--light); border: none; cursor: pointer;
  transition: var(--ease); padding: 0;
}
.t-dot.active { background: var(--gold); transform: scale(1.3); }

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.cta-section {
  padding: 110px 0; background: var(--cream);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner .rule { margin: 24px auto; }
.cta-btns { display: flex; justify-content: center; gap: 16px; margin-top: 44px; flex-wrap: wrap; }
.cta-contacts {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; margin-top: 52px; flex-wrap: wrap;
}
.cta-contact { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.cta-contact span:first-child {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.cta-contact a, .cta-contact span:last-child {
  font-family: var(--serif); font-size: 1.05rem; color: var(--charcoal); transition: color var(--ease);
}
.cta-contact a:hover { color: var(--gold); }
.cta-sep { width: 1px; height: 36px; background: var(--light); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal); color: var(--white);
  font-size: 0.72rem; font-weight: 500;
  padding: 6px 14px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.wa-tooltip::after {
  content: '';
  position: absolute; top: 50%; left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--charcoal);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 2px solid var(--gold);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { height: 54px; width: auto; margin-bottom: 16px; }
.footer-brand-name {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.06em; display: block;
}
.footer-brand-arabic {
  font-size: 0.68rem; font-weight: 300;
  color: var(--gold); display: block; margin-bottom: 18px; letter-spacing: 0.1em;
}
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.9; max-width: 280px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.footer-social a:hover { border-color: var(--gold); background: rgba(184,146,74,0.1); }
.footer-social a svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.45); transition: fill var(--ease); }
.footer-social a:hover svg { fill: var(--gold); }
.footer-col h5 {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.42); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contacts { display: flex; flex-direction: column; gap: 15px; }
.footer-contacts li { display: flex; flex-direction: column; gap: 2px; }
.footer-contacts li span:first-child {
  font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.22);
}
.footer-contacts li a, .footer-contacts li span:last-child {
  font-size: 0.82rem; color: rgba(255,255,255,0.42); transition: color var(--ease);
}
.footer-contacts li a:hover { color: var(--white); }
.footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color var(--ease); }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 90px;
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,11,9,0.9) 0%, rgba(12,11,9,0.6) 60%, rgba(12,11,9,0.3) 100%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.3); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.page-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400; color: var(--white); line-height: 1.12; margin-bottom: 18px;
}
.page-title em { font-style: italic; color: var(--gold-lt); }
.page-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.8;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.story-section { padding: var(--pad); background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.timeline { margin-top: 40px; }
.tl-item {
  display: flex; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--light);
  position: relative;
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  color: var(--gold); min-width: 64px; line-height: 1; padding-top: 3px;
}
.tl-content h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--charcoal); margin-bottom: 5px; }
.tl-content p { font-size: 0.82rem; color: var(--dim); line-height: 1.75; }

.mv-section { padding: var(--pad); background: var(--charcoal); position: relative; overflow: hidden; }
.mv-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(184,146,74,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; z-index: 1; }
.mv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,146,74,0.12);
  padding: 52px 44px;
}
.mv-card-icon {
  width: 48px; height: 48px;
  background: rgba(184,146,74,0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.mv-card-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.mv-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.mv-text {
  font-family: var(--serif); font-size: 1.1rem;
  font-style: italic; color: var(--white); line-height: 1.75;
}

/* Team */
.team-section { padding: var(--pad); background: var(--cream); }
.team-header { text-align: center; margin-bottom: 64px; }
.team-header .rule { margin-inline: auto; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.team-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; max-width: 66.66%; margin: 2px auto 0; }

.team-card { background: var(--white); overflow: hidden; }
.team-photo {
  position: relative; height: 340px; overflow: hidden;
}
.team-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  transition: opacity 0.5s ease;
}
.team-photo .photo-bw  { opacity: 1; }
.team-photo .photo-col { opacity: 0; }
.team-card:hover .photo-bw  { opacity: 0; }
.team-card:hover .photo-col { opacity: 1; }

.team-card-body { padding: 28px 28px 32px; border-top: 2px solid transparent; transition: border-color var(--ease); }
.team-card:hover .team-card-body { border-top-color: var(--gold); }
.team-card-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--charcoal); margin-bottom: 5px; }
.team-card-role { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.team-card-bio { font-size: 0.8rem; color: var(--dim); line-height: 1.8; }

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */
.svc-detail { padding: 80px 0; }
.svc-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid var(--light);
}
.svc-block:last-child { border-bottom: none; }
.svc-block.flip .svc-block-img { order: 2; }
.svc-block.flip .svc-block-content { order: 1; }

.svc-block-img { position: relative; }
.svc-block-img img { width: 100%; height: 480px; object-fit: cover; }
.svc-block-img::after {
  content: '';
  position: absolute; bottom: -14px; right: -14px;
  left: 14px; top: 14px;
  border: 1.5px solid var(--gold); z-index: -1;
}
.svc-block.flip .svc-block-img::after {
  right: 14px; left: -14px; bottom: -14px; top: 14px;
}

.svc-disciplines { margin-top: 32px; }
.discipline {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--light);
}
.discipline:last-child { border-bottom: none; }
.discipline-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.discipline-content h5 { font-family: var(--serif); font-size: 0.95rem; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; }
.discipline-content p { font-size: 0.78rem; color: var(--dim); line-height: 1.65; }

.media-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 32px; }
.media-tool {
  background: var(--cream-dark); padding: 18px 20px;
  border-bottom: 2px solid transparent; transition: var(--ease);
}
.media-tool:hover { background: var(--gold-pale); border-bottom-color: var(--gold); }
.media-tool-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; color: var(--charcoal); display: block; }
.media-tool-desc { font-size: 0.72rem; color: var(--dim); margin-top: 2px; }

/* ═══════════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════════ */
.gallery-page { padding: var(--pad); }
.gallery-masonry {
  columns: 3; column-gap: 3px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-masonry-item img {
  display: block; width: 100%; height: auto;
  transition: transform 0.6s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-masonry-item-overlay {
  position: absolute; inset: 0;
  background: rgba(12,11,9,0.32);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-masonry-item:hover .gallery-masonry-item-overlay { opacity: 1; }
.gallery-masonry-item-overlay span {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(255,255,255,0.55);
  padding: 8px 18px;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(12,11,9,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  transform: scale(0.95); transition: transform 0.35s;
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.lightbox-close:hover { border-color: var(--gold); }
.lightbox-close svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; background: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); background: rgba(184,146,74,0.1); }
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 1.5; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-section { padding: var(--pad); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }

.contact-info-card {
  background: var(--charcoal); padding: 52px 44px;
  position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184,146,74,0.12) 0%, transparent 55%);
}
.contact-info-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(184,146,74,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.contact-info-content { position: relative; z-index: 1; }
.contact-info-list { margin-top: 32px; display: flex; flex-direction: column; gap: 26px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 38px; height: 38px; background: rgba(184,146,74,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.ci-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.ci-label {
  font-size: 0.56rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.28); display: block; margin-bottom: 3px;
}
.ci-val { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; transition: color var(--ease); }
a.ci-val:hover { color: var(--gold); }

.contact-form-card { background: var(--white); padding: 52px 48px; box-shadow: 0 4px 60px rgba(0,0,0,0.05); }
.cf-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--charcoal); margin-bottom: 6px; }
.cf-sub { font-size: 0.85rem; color: var(--dim); margin-bottom: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--light);
  background: var(--cream);
  font-family: var(--sans); font-size: 0.88rem; font-weight: 300;
  color: var(--charcoal); outline: none;
  transition: border-color var(--ease), background var(--ease);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(122,118,112,0.5); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8924A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}
.form-submit {
  width: 100%; padding: 17px;
  background: var(--charcoal); color: var(--white);
  font-family: var(--sans); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: pointer; transition: var(--ease);
}
.form-submit:hover { background: var(--gold); }
.form-success { display: none; text-align: center; padding: 44px 20px; }
.form-success-icon {
  width: 56px; height: 56px; background: rgba(184,146,74,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.form-success-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-row-2 { max-width: 100%; }
  .svc-block { grid-template-columns: 1fr; gap: 40px; }
  .svc-block.flip .svc-block-img { order: 0; }
  .svc-block.flip .svc-block-content { order: 0; }
  .svc-block-img::after, .svc-block.flip .svc-block-img::after { display: none; }
}

@media (max-width: 900px) {
  :root { --pad: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-img { order: -1; }
  .about-intro-img img { height: 380px; }
  .about-intro-img::before { display: none; }
  .about-badge { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid-home { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item:nth-child(n) { grid-column: span 1; grid-row: span 1; height: 220px; }
  .gallery-masonry { columns: 2; }
  .intro-band-inner { flex-direction: column; gap: 20px; }
  .intro-band-line { width: 40px; height: 1px; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-contacts { gap: 24px; }
  .cta-sep { display: none; }
  .partners-row { flex-direction: column; }
  .partner { border-right: none; border-bottom: 1px solid var(--light); width: 100%; }
  .partner:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  :root { --pad: 56px 0; }
  .hero-title { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid, .team-row-2 { grid-template-columns: 1fr; max-width: 100%; }
  .media-stack { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; }
  .gallery-masonry { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .about-stats-row { grid-template-columns: 1fr; }
}
