/* ============================================================
   Thermo Tech — Corporate Professional Stylesheet v3.0
   Design System: Enterprise · Trust & Authority · Light Theme
   Fonts: Poppins (headings) · Open Sans (body)
   Colors: Navy #0d2352 · Gold #c9922a · Light bg #f4f7ff
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Poppins:wght@400;500;600;700;800&family=Noto+Kufi+Arabic:wght@400;600;700;800&family=Noto+Sans+Arabic:wght@400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy:        #0d2352;
  --navy-mid:    #1a3a7a;
  --navy-light:  #2a4f9a;
  --gold:        #c9922a;
  --gold-l:      #e2a83a;
  --gold-pale:   #f7eedc;
  --blue-accent: #1e50c8;
  --bg:          #ffffff;
  --bg-soft:     #f4f7ff;
  --bg-grey:     #f0f2f8;
  --text:        #0d1b35;
  --text-body:   #334155;
  --muted:       #64748b;
  --border:      #dde3f0;
  --border-l:    #eaeef8;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(13,35,82,.07);
  --shadow:      0 4px 20px rgba(13,35,82,.10);
  --shadow-lg:   0 12px 48px rgba(13,35,82,.14);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  .22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Open Sans', 'Noto Sans Arabic', system-ui, sans-serif; color: var(--text-body); background: var(--bg); line-height: 1.7; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; cursor: pointer; }
ul   { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: 'Poppins', 'Noto Kufi Arabic', sans-serif; line-height: 1.2; color: var(--navy); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-body); line-height: 1.75; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.text-center { text-align: center; }

/* ── Gold accent bar on headings ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 28px; height: 3px;
  background: var(--gold); border-radius: 2px; flex-shrink: 0;
}
[dir="rtl"] .section-eyebrow::before { order: 1; }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-eyebrow { justify-content: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--muted); font-size: 1.05rem; max-width: 600px; }
.section-header.centered p { margin: 0 auto; }

/* Legacy .section-tag kept for compatibility */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-tag::before {
  content: ''; display: block; width: 24px; height: 3px;
  background: var(--gold); border-radius: 2px;
}
[dir="rtl"] .section-tag::before { order: 1; }

/* ── Gradient text (gold) ── */
.text-gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-l) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient { /* backward compat */
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-l) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-navy { color: var(--navy); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); font-family: 'Poppins', sans-serif;
  font-size: .9rem; font-weight: 600; border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
  text-decoration: none;
}
.btn-navy {
  background: var(--navy); color: #fff; border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(13,35,82,.25);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,35,82,.3); }
.btn-gold {
  background: var(--gold); color: #fff; border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,146,42,.35);
}
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--navy); border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--bg-soft); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn-outline-navy {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-l);
  box-shadow: 0 2px 16px rgba(13,35,82,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.nav-logo img, .nav-logo-img { height: 48px; width: auto; display: block; }
.nav-links  { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: .875rem; font-weight: 500;
  color: var(--text-body); transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: var(--bg-soft); }
.nav-cta {
  background: var(--navy) !important; color: #fff !important;
  border-radius: 8px; padding: 9px 22px !important;
  font-weight: 600 !important; margin-left: 8px;
  box-shadow: 0 3px 12px rgba(13,35,82,.25);
  transition: all var(--transition) !important;
}
.nav-cta:hover,
.nav-cta.active { background: var(--blue-accent) !important; transform: translateY(-1px) !important; box-shadow: 0 6px 20px rgba(13,35,82,.3) !important; }
.lang-toggle {
  display: flex; align-items: center; gap: 5px;
  font-size: .82rem; font-weight: 600; color: var(--muted) !important;
  padding: 7px 10px !important;
  border: 1px solid var(--border) !important;
  border-radius: 7px !important;
  background: transparent !important;
  margin-left: 4px;
}
.lang-toggle:hover { border-color: var(--navy) !important; color: var(--navy) !important; background: var(--bg-soft) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; padding: 12px 0 20px; border-top: 1px solid var(--border-l); }
.nav-mobile a { display: block; padding: 10px 16px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-weight: 500; color: var(--text-body); transition: var(--transition); font-size: .9rem; }
.nav-mobile a:hover { background: var(--bg-soft); color: var(--navy); }
.lang-toggle-mobile { color: var(--muted) !important; font-size: .85rem; }

/* ── Hero ── */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border-l);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 70% 50%, rgba(13,35,82,.04) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 10% 80%, rgba(201,146,42,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  min-height: 560px;
}
.hero-content { padding-bottom: 80px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-pale); color: var(--gold);
  font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 99px;
  border: 1px solid rgba(201,146,42,.25); margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); display: inline-block; flex-shrink: 0;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .hero-line2 { display: block; color: var(--navy-mid); }
.hero-desc {
  font-size: 1.1rem; color: var(--muted); max-width: 520px;
  margin-bottom: 36px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-divider {
  width: 100%; height: 1px; background: var(--border);
  margin-bottom: 36px;
}
.hero-meta {
  display: flex; gap: 36px; flex-wrap: wrap;
}
.hero-meta-item { }
.hero-meta-item strong {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--navy);
  line-height: 1;
}
.hero-meta-item span {
  font-size: .8rem; color: var(--muted); font-weight: 500; margin-top: 4px; display: block;
}

/* ── Hero right column: credential panel ── */
.hero-panel {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
}
.hero-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  border-radius: 20px 20px 0 0;
}
.hero-panel-title {
  font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px;
}
.credential-list { display: flex; flex-direction: column; gap: 16px; }
.credential-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border-l);
  transition: all var(--transition);
}
.credential-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.credential-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.credential-icon svg { width: 20px; height: 20px; color: var(--gold); stroke: var(--gold); }
.credential-item h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.credential-item p  { font-size: .8rem; color: var(--muted); line-height: 1.5; }

.hero-clients {
  margin-top: 20px; padding: 20px 24px;
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border-l);
}
.hero-clients-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.hero-clients-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-clients-tags span {
  font-size: .75rem; padding: 4px 10px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text-body); font-weight: 500;
}

/* ── Services Marquee ── */
.services-marquee {
  background: var(--navy); overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.7); padding: 0 24px;
}
.marquee-inner .sep { color: var(--gold); opacity: .7; padding: 0; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── Services Grid ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition); position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--border);
  transition: background var(--transition);
  border-radius: 0;
}
.service-card:hover { border-color: var(--border); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { background: var(--gold); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--gold); stroke: var(--gold); }
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.service-card p  { font-size: .9rem; line-height: 1.7; }

/* Full-page service blocks */
.service-full {
  padding: 72px 0; border-bottom: 1px solid var(--border-l);
}
.service-full:nth-child(even) { background: var(--bg-soft); }
.service-full-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.service-full:nth-child(even) .service-full-inner { direction: rtl; }
.service-full:nth-child(even) .service-full-inner > * { direction: ltr; }
[dir="rtl"] .service-full:nth-child(even) .service-full-inner { direction: ltr; }
[dir="rtl"] .service-full:nth-child(even) .service-full-inner > * { direction: rtl; }
.service-full-visual {
  background: var(--bg-grey); border-radius: var(--radius-lg);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.service-full-visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 20px,
    rgba(13,35,82,.04) 20px, rgba(13,35,82,.04) 21px
  );
}
.service-full-visual svg {
  width: 72px; height: 72px; opacity: .15; position: relative; z-index: 1;
  color: var(--navy); stroke: var(--navy);
}
.service-full-text .section-tag { margin-bottom: 12px; }
.service-full-text h2 { margin-bottom: 16px; }
.service-full-text p  { margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text-body);
}
.service-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy); padding: 52px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 2.8rem; font-weight: 800; color: var(--gold);
  line-height: 1; margin-bottom: 8px;
}
.stat-item span { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* ── Clients Strip ── */
.clients-strip {
  padding: 40px 0; background: var(--bg-soft);
  border-top: 1px solid var(--border-l);
  border-bottom: 1px solid var(--border-l);
}
.clients-strip-inner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.clients-label {
  font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.clients-divider {
  width: 1px; height: 28px; background: var(--border); flex-shrink: 0;
}
.clients-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.client-tag {
  padding: 7px 16px; border: 1px solid var(--border);
  border-radius: 8px; font-size: .82rem; font-weight: 600;
  color: var(--navy); background: #fff;
  transition: all var(--transition);
}
.client-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── Values Grid ── */
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.value-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.v-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid rgba(201,146,42,.2);
  display: flex; align-items: center; justify-content: center;
}
.v-icon svg { width: 22px; height: 22px; color: var(--gold); stroke: var(--gold); }
.value-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.value-card p  { font-size: .88rem; line-height: 1.65; }

/* ── About Story ── */
.about-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p  { margin-bottom: 16px; }
.about-credentials { display: flex; flex-direction: column; gap: 16px; }
.about-badge {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  transition: all var(--transition);
}
.about-badge:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.about-badge-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-badge-icon svg { width: 22px; height: 22px; color: var(--gold); stroke: var(--gold); }
.about-badge strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
.about-badge span   { display: block; font-size: .8rem; color: var(--muted); margin-top: 2px; }

/* ── Mission / Vision ── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative; overflow: hidden;
}
.mv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.mv-card h3 {
  display: flex; align-items: center; gap: 12px;
  color: var(--navy); margin-bottom: 16px; font-size: 1.1rem;
}
.mv-card h3 svg { width: 22px; height: 22px; flex-shrink: 0; }
.mv-card p { font-size: .95rem; line-height: 1.8; }

/* ── Team Grid ── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.team-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.team-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 3px solid var(--gold-pale);
}
.team-avatar span { color: var(--gold); font-family: 'Poppins', sans-serif; font-weight: 800; font-size: .9rem; }
.team-info h4    { color: var(--navy); margin-bottom: 4px; }
.team-info .role { font-size: .82rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.team-info p     { font-size: .88rem; line-height: 1.65; }

/* ── Projects Grid ── */
.projects-filter {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px;
}
.filter-btn {
  padding: 9px 22px; border-radius: var(--radius); border: 1.5px solid var(--border);
  font-family: 'Poppins', sans-serif; font-size: .85rem; font-weight: 600;
  cursor: pointer; background: #fff; color: var(--text-body);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.project-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.project-visual {
  aspect-ratio: 16/10; background: var(--bg-grey);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.project-visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 20px,
    rgba(13,35,82,.04) 20px, rgba(13,35,82,.04) 21px
  );
}
.project-visual svg {
  width: 48px; height: 48px; opacity: .12; position: relative; z-index: 1;
  color: var(--navy); stroke: var(--navy);
}
.project-cat-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--navy); color: #fff; font-family: 'Poppins', sans-serif;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
}
[dir="rtl"] .project-cat-badge { left: auto; right: 12px; }
.project-body { padding: 24px; }
.project-body h3 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.project-body p  { font-size: .85rem; line-height: 1.65; }
.project-meta {
  display: flex; gap: 16px; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border-l);
}
.project-meta span {
  font-size: .78rem; color: var(--muted); font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.project-meta svg { width: 13px; height: 13px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 68px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,146,42,.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1    { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-hero p     { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 520px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.5);
  margin-top: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb::before {
  content: ''; width: 16px; height: 2px; background: var(--gold);
  flex-shrink: 0; border-radius: 2px;
}
[dir="rtl"] .breadcrumb::before { order: 1; }

/* ── Contact Layout ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); transition: all var(--transition);
}
.contact-info-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 19px; height: 19px; color: var(--gold); stroke: var(--gold); }
.contact-info-card h4 { color: var(--navy); font-size: .88rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--text-body); font-size: .9rem; }
.contact-info-card a:hover { color: var(--gold); }
.contact-form-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: .82rem; font-weight: 600; color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; font-size: .9rem;
  font-family: 'Open Sans', sans-serif; color: var(--text);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--bg-soft); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,35,82,.08);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 100%, rgba(201,146,42,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-section p  { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Eventix Platform page ── */
.platform-hero { text-align: center; padding: 80px 0; background: var(--bg-soft); }
.platform-hero h1 { margin-bottom: 16px; }
.platform-hero p  { max-width: 560px; margin: 0 auto 32px; }
.platform-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.platform-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.platform-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.platform-card-icon svg { width: 26px; height: 26px; color: var(--gold); stroke: var(--gold); }
.platform-card h3 { color: var(--navy); margin-bottom: 10px; }

/* ── 404 Page ── */
.notfound { min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.notfound-inner { text-align: center; padding: 48px; }
.notfound h1 { font-size: 6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.notfound h2 { color: var(--navy); margin: 12px 0; }
.notfound p  { color: var(--muted); margin-bottom: 28px; }
.notfound .btn { margin: 0 6px; }

/* ── Footer ── */
.footer {
  background: var(--navy); color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 240px; margin-top: 16px; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-col h5 {
  font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: .88rem; color: rgba(255,255,255,.65);
  margin-bottom: 11px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-contact { list-style: none; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: rgba(255,255,255,.65); margin-bottom: 12px;
}
.footer-contact li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Section backgrounds ── */
.bg-white { background: #fff; }
.bg-soft   { background: var(--bg-soft); }
.bg-navy   { background: var(--navy); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }

/* ── RTL support ── */
[dir="rtl"] { font-family: 'Open Sans', 'Noto Sans Arabic', system-ui, sans-serif; }
[dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3,[dir="rtl"] h4 {
  font-family: 'Noto Kufi Arabic', 'Poppins', sans-serif; letter-spacing: 0;
}
[dir="rtl"] .hero-meta { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .about-story, [dir="rtl"] .contact-layout { direction: rtl; }
[dir="rtl"] .stats-grid .stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,.12); }
[dir="rtl"] .stats-grid .stat-item:last-child { border-left: none; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .service-card::before { left: auto; right: 0; }
[dir="rtl"] .service-list li::before { order: 1; margin-top: 8px; }
[dir="rtl"] .value-card { flex-direction: row-reverse; }
[dir="rtl"] .contact-info-card, [dir="rtl"] .about-badge { flex-direction: row-reverse; }
[dir="rtl"] .credential-item { flex-direction: row-reverse; }
[dir="rtl"] .team-card { flex-direction: row-reverse; }
[dir="rtl"] .footer-contact li { flex-direction: row-reverse; }
[dir="rtl"] .marquee-inner { animation-direction: reverse; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stats-grid .stat-item { border-bottom: 1px solid rgba(255,255,255,.12); padding: 28px 24px; }
  .stats-grid .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.12); }
  .stats-grid .stat-item:nth-child(even) { border-right: none; }
  .service-full-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-full:nth-child(even) .service-full-inner { direction: ltr; }
  [dir="rtl"] .service-full:nth-child(even) .service-full-inner { direction: rtl; }
  .service-full-visual { aspect-ratio: 16/7; }
  .about-story   { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout{ grid-template-columns: 1fr; gap: 44px; }
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-content  { padding-bottom: 0; }
  .hero-panel    { margin-bottom: 0; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .platform-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-mobile.open { display: block; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero { padding: 56px 0 0; }
  .hero-inner { gap: 36px; min-height: auto; }
  .hero-btns  { gap: 10px; }
  .hero-meta  { gap: 24px; }
  .services-grid, .values-grid, .mv-grid, .team-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .platform-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
  .clients-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
