
:root {
  --teal: #2A9D8F;
  --teal-dark: #1E7268;
  --teal-light: #3DBFB0;
  --teal-glow: rgba(42,157,143,0.15);
  --gold: #E9C46A;
  --gold-dark: #C9A24A;

  --bg-dark: #0D0F14;
  --bg-card: #13161E;
  --bg-card2: #1A1E2A;
  --surface: #1F2433;
  --border: rgba(42,157,143,0.18);
  --border-subtle: rgba(255,255,255,0.06);

  --text-primary: #F0F2F5;
  --text-secondary: rgba(240,242,245,0.65);
  --text-muted: rgba(240,242,245,0.38);

  --bg-light: #F5F7FA;
  --bg-light-card: #FFFFFF;
  --bg-light-surface: #EDF0F5;
  --text-light-primary: #0D1117;
  --text-light-secondary: #4A5568;
  --text-light-muted: #8A97A8;

  --font-display: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1400px;
}

[data-theme="light"] {
  --bg-dark: #F5F7FA;
  --bg-card: #FFFFFF;
  --bg-card2: #EDF0F5;
  --surface: #E4E8F0;
  --border: rgba(42,157,143,0.2);
  --border-subtle: rgba(0,0,0,0.07);
  --text-primary: #0D1117;
  --text-secondary: #4A5568;
  --text-muted: #8A97A8;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(13,15,20,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
[data-theme="light"] nav {
  background: rgba(245,247,250,0.8);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: white; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}
.nav-logo-text span { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { left: 0; right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-theme {
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.btn-theme:hover { background: var(--teal-glow); color: var(--teal); border-color: var(--teal); }
.btn-theme svg { width: 18px; height: 18px; stroke: currentColor; }
.btn-primary {
  padding: 10px 24px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline {
  padding: 10px 24px;
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--teal-glow); transform: translateY(-1px); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO VIDEO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,15,20,0.82) 0%,
    rgba(13,15,20,0.65) 50%,
    rgba(42,157,143,0.18) 100%
  );
}
/* fallback grid when no video */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,157,143,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,157,143,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  z-index: 2;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll-hint svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.4);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--teal-glow);
  border: 1px solid rgba(42,157,143,0.3);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-light);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.hero-title .accent { color: var(--teal); }
.hero-typewriter-line {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 46px);
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.25em;
  white-space: nowrap;
  min-height: 1.35em;
}
.hero-typewriter-line .typed {
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 6px;
  white-space: nowrap;
  display: inline-block;
  min-width: 2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { border-color: var(--gold); }
  50% { border-color: transparent; }
}
.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas .btn-primary { padding: 14px 32px; font-size: 15px; }
.hero-ctas .btn-outline { padding: 14px 32px; font-size: 15px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--teal);
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── MARQUEE ── */
.marquee-strip {
  padding: 18px 0;
  background: var(--teal);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5); }

/* ── SECTIONS ── */
section { padding: 100px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--teal);
  order: -1;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title .accent { color: var(--teal); }
.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}
.section-header {
  max-width: 600px;
  margin-bottom: 60px;
}
.section-header.centered {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── SERVICES ── */
#services { background: var(--bg-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  z-index: 3;
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); transform-origin: left; }

/* Optional background media (when a featured image is set) */
.service-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity var(--transition), transform 0.6s ease;
  z-index: 0;
}
.service-card.has-media:hover .service-card-media {
  opacity: 0.18;
  transform: scale(1);
}

/* ── HOVER OVERLAY ── */
.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg, rgba(42,157,143,0.97) 0%, rgba(30,114,104,0.97) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.service-card:hover .service-card-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.service-card-overlay-inner {
  text-align: center;
  width: 100%;
}
.service-card-overlay .service-icon {
  margin: 0 auto 18px;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}
.service-card-overlay .service-icon svg {
  stroke: #fff;
}
.service-card-overlay .service-name {
  color: #fff;
}
.service-card-overlay .service-desc {
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.service-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-dark);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}
.service-overlay-btn:hover {
  background: var(--bg-card);
  color: var(--teal);
  transform: translateY(-2px);
}
.service-overlay-btn svg { stroke: currentColor; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--teal-glow);
  border: 1px solid rgba(42,157,143,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  opacity: 0;
  transform: translateX(6px);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── ABOUT ── */
#about { background: var(--bg-card2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  padding: 32px 40px 36px 44px;
}
.about-img-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: visible;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img-inner {
  width: 80%;
  height: 80%;
  background: var(--teal-glow);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.about-logo-big {
  width: 80px; height: 80px;
  background: var(--teal);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.about-logo-big svg { width: 44px; height: 44px; fill: white; }
.about-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}
.about-brand-sub {
  font-size: 12px;
  color: var(--text-muted);
}
.about-float-badge {
  position: absolute;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
}
.about-float-badge.b1 { bottom: -28px; right: -28px; animation-delay: 0s; z-index: 10; }
.about-float-badge.b2 { top: 24px; left: -36px; animation-delay: 2s; z-index: 10; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon { font-size: 22px; }
.float-text .top { font-size: 12px; color: var(--text-muted); }
.float-text .bot { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); }
.about-text .section-header { margin-bottom: 32px; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feat-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--teal-glow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.feat-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); }
.feat-desc { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

/* ── PORTFOLIO ── */
#portfolio { background: var(--bg-dark); }
.portfolio-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}
.portfolio-item:hover { transform: scale(0.98); }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item.tall { grid-row: span 2; }
.portfolio-thumb {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.p1 { background: linear-gradient(135deg, #1a2a3a, #2A9D8F); }
.p2 { background: linear-gradient(135deg, #2a1a3a, #9D2A8F); }
.p3 { background: linear-gradient(135deg, #3a2a1a, #9D6A2A); }
.p4 { background: linear-gradient(135deg, #1a3a2a, #2A8F4D); }
.p5 { background: linear-gradient(135deg, #3a1a1a, #8F2A2A); }
.p6 { background: linear-gradient(135deg, #1a1a3a, #2A4D9D); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info .p-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.portfolio-info .p-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-top: 2px;
}

/* ── PROCESS ── */
#process { background: var(--bg-card2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px; right: 40px; left: 40px;
  height: 1px;
  background: var(--border);
}
.process-step {
  text-align: center;
  padding: 0 24px 40px;
  position: relative;
}
.process-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  color: var(--teal);
}
.process-step:hover .process-num {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  transform: scale(1.1);
}
.process-step:hover .process-num svg {
  stroke: white;
}
.process-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.process-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--bg-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.t-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--teal);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: 0.6;
}
.t-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: white;
}
.av1 { background: linear-gradient(135deg, #2A9D8F, #1E7268); }
.av2 { background: linear-gradient(135deg, #E9C46A, #C9A24A); }
.av3 { background: linear-gradient(135deg, #9D2A8F, #6E1E64); }
.t-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.t-role { font-size: 12px; color: var(--text-muted); }
.t-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.t-stars span { color: var(--gold); font-size: 15px; }

/* ── CLIENTS ── */
#clients { background: var(--bg-card2); padding: 60px 0; }
.clients-title {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.client-logo {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
}
.client-logo:hover { color: var(--teal); border-color: var(--border); }

/* ── CTA ── */
#cta-section {
  background: var(--bg-dark);
  padding: 100px 0;
}
.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--teal);
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cta-title .accent { color: var(--teal); }
.cta-desc { font-size: 16px; color: var(--text-secondary); max-width: 480px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn-primary { padding: 16px 40px; font-size: 16px; }
.cta-btns .btn-outline { padding: 16px 40px; font-size: 16px; }

/* ── CONTACT ── */
#contact { background: var(--bg-card2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.c-icon {
  width: 44px; height: 44px;
  background: var(--teal-glow);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  min-width: 44px;
}
.c-label { font-size: 12px; color: var(--text-muted); }
.c-val { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--text-primary); margin-top: 1px; }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  direction: rtl;
  text-align: right;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.form-submit:hover { background: var(--teal-dark); }

/* ── FOOTER ── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--teal);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 22px; height: 22px; fill: white; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}
.footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--teal); color: white; border-color: var(--teal); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-copy a { color: var(--teal); text-decoration: none; }

/* ── VIDEO SLIDER 16:9 ── */
#showreel {
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}
#reels-slider {
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}
.slider-header { margin-bottom: 40px; }
.slider-16x9-track {
  position: relative;
  overflow: hidden;
}
.slider-16x9-inner {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slide-16x9 {
  flex: 0 0 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition);
}
.slide-16x9:hover { transform: scale(0.985); }
.slide-16x9-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* placeholder coloured bg when no real video */
.slide-bg-1 { background: linear-gradient(135deg, #0D1F2D 0%, #2A9D8F 100%); }
.slide-bg-2 { background: linear-gradient(135deg, #1A0D2E 0%, #6B2FA0 100%); }
.slide-bg-3 { background: linear-gradient(135deg, #1A1A0D 0%, #9D6A2A 100%); }
.slide-bg-4 { background: linear-gradient(135deg, #0D1A1A 0%, #2A7D4F 100%); }
.slide-16x9-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
}
.slide-play-btn {
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.slide-play-btn:hover { background: var(--teal); border-color: var(--teal); transform: scale(1.1); }
.slide-play-btn svg {
  width: 22px; height: 22px;
  fill: white;
  margin-right: -3px;
}
.slide-16x9-info { margin-top: auto; }
.slide-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.slide-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: white;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-arrow svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.slider-arrow:hover { background: var(--teal); border-color: var(--teal); color: white; }
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.s-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.s-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ── VIDEO/IMG SLIDER 9:16 ── */
#social-reel {
  background: var(--bg-dark);
  padding: 80px 0;
  overflow: hidden;
}
.slider-9x16-track { position: relative; overflow: hidden; }
.slider-9x16-inner {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slide-9x16 {
  flex: 0 0 calc(22% - 12px);
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}
.slide-9x16:hover { transform: scale(0.97); }
.slide-9x16-inner {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end;
  padding: 18px 14px;
  position: relative;
}
.s9-bg-1 { background: linear-gradient(170deg, #0D2A27 0%, #2A9D8F 60%, #1E7268 100%); }
.s9-bg-2 { background: linear-gradient(170deg, #1a0d2e 0%, #8B5CF6 60%, #5B21B6 100%); }
.s9-bg-3 { background: linear-gradient(170deg, #0d1a1a 0%, #E9C46A 60%, #C9A24A 100%); }
.s9-bg-4 { background: linear-gradient(170deg, #1a0a0a 0%, #EF4444 60%, #B91C1C 100%); }
.s9-bg-5 { background: linear-gradient(170deg, #0a0a1a 0%, #3B82F6 60%, #1D4ED8 100%); }
.slide-9x16-info {
  position: relative;
  z-index: 1;
}
.slide-9x16-info .s-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.slide-9x16-info .s-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.slide-9x16::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
}
.slide-9x16-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slide-9x16:hover .slide-9x16-play { background: var(--teal); border-color: var(--teal); }
.slide-9x16-play svg { width: 16px; height: 16px; fill: white; margin-right: -2px; }
/* light dots for 9:16 slider */
.sr-dots { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 28px; }
.sr-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all var(--transition); border: none; }
.sr-dot.active { background: var(--teal); width: 20px; border-radius: 3px; }

/* ── VIDEO MODAL ── */
.video-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.video-modal-backdrop.open { display: flex; }
.video-modal-box {
  width: min(900px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.video-modal-close {
  position: absolute;
  top: -48px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.video-modal-close:hover { background: var(--teal); }
.video-modal-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.video-modal-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
}
.video-modal-placeholder .vmp-icon {
  font-size: 60px;
  display: block;
  margin-bottom: 16px;
}
.video-modal-placeholder p { font-size: 15px; }


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE NAV ── */
.mobile-menu {
  position: fixed;
  top: 72px; right: -100%; left: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 24px 5%;
  z-index: 999;
  transition: right 0s 0.3s, opacity var(--transition);
  opacity: 0;
}
.mobile-menu.open {
  right: 0;
  opacity: 1;
  transition: opacity var(--transition);
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition);
}
.mobile-menu a:hover { background: var(--teal-glow); color: var(--teal); }
.mobile-menu .btn-primary { width: 100%; justify-content: center; margin-top: 16px; padding: 14px; font-size: 15px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.wide { grid-column: span 1; }
  .portfolio-item.tall { grid-row: span 1; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .process-grid::before { display: none; }
  .cta-box { padding: 48px 24px; }
  section { padding: 70px 0; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(42,157,143,0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ══════════════════════════════════
   MULTI-PAGE ROUTER
══════════════════════════════════ */
[data-page] { display: none; }
[data-page].page-active { display: block; }

/* ══════════════════════════════════
   PAGE HERO BANNER (inner pages)
══════════════════════════════════ */
.page-banner {
  padding: 140px 0 70px;
  background: var(--bg-card2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--teal);
  filter: blur(120px);
  opacity: 0.1;
  pointer-events: none;
}
.page-banner-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-banner-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--teal);
  order: -1;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-banner h1 span { color: var(--teal); }
.page-banner p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
  cursor: pointer;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: 0.4; }

/* ══════════════════════════════════
   STORY PAGE
══════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.story-text h2 span { color: var(--teal); }
.story-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 14px;
}
.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--transition);
}
.vision-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.vision-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--teal-glow);
  border: 1px solid rgba(42,157,143,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.vision-card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vision-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.vision-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 80px;
}
.stat-cell {
  background: var(--bg-card);
  padding: 36px 24px;
  text-align: center;
}
.stat-cell-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--teal);
  display: block;
}
.stat-cell-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border); }
.team-img {
  aspect-ratio: 1;
  background: var(--bg-card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.team-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.team-img-placeholder svg {
  width: 60px; height: 60px;
  stroke: var(--text-muted);
  fill: none; stroke-width: 1;
}
.team-info { padding: 20px; }
.team-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.team-role { font-size: 12px; color: var(--teal); font-weight: 600; }
.team-socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.team-social {
  width: 30px; height: 30px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.team-social svg {
  width: 13px; height: 13px;
  stroke: var(--text-muted);
  fill: none; stroke-width: 2;
  stroke-linecap: round;
}
.team-social:hover { background: var(--teal); border-color: var(--teal); }
.team-social:hover svg { stroke: white; }

/* ══════════════════════════════════
   SERVICES PAGE
══════════════════════════════════ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-full-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.service-full-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.service-full-card:hover::after { transform: scaleX(1); transform-origin: left; }
.svc-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: var(--teal-glow);
  border: 1px solid rgba(42,157,143,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-icon svg {
  width: 26px; height: 26px;
  stroke: var(--teal); fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.8; flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 13px; font-weight: 700;
  color: var(--teal); text-decoration: none;
  cursor: pointer;
  transition: gap var(--transition);
}
.svc-link:hover { gap: 10px; }
.svc-link svg {
  width: 14px; height: 14px;
  stroke: var(--teal); fill: none; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ══════════════════════════════════
   PORTFOLIO PAGE
══════════════════════════════════ */
.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-page-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.portfolio-page-item:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); border-color: var(--border); }
.portfolio-thumb-wrap {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.portfolio-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.portfolio-page-item:hover .portfolio-thumb-overlay { opacity: 1; }
.portfolio-view-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid white;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.portfolio-view-btn svg {
  width: 18px; height: 18px;
  stroke: white; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.portfolio-item-info { padding: 18px 20px; }
.portfolio-item-cat {
  font-size: 11px; font-weight: 700;
  color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.portfolio-item-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--text-primary);
}

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-page-info { padding-top: 8px; }
.contact-page-intro {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.85; margin-bottom: 36px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-item-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-glow);
  border: 1px solid rgba(42,157,143,0.18);
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg {
  width: 20px; height: 20px;
  stroke: var(--teal); fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.contact-item-label { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.contact-item-val {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--text-primary);
}
.contact-social-row {
  display: flex; gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.contact-social-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
}
.contact-social-btn svg {
  width: 16px; height: 16px;
  stroke: var(--text-muted); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.contact-social-btn:hover { background: var(--teal); border-color: var(--teal); }
.contact-social-btn:hover svg { stroke: white; }
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 28px;
}

/* ══════════════════════════════════
   RESPONSIVE INNER PAGES
══════════════════════════════════ */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .vision-cards { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .services-full-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-page-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .vision-cards { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .portfolio-page-grid { grid-template-columns: 1fr; }
}

/* ══ PROCESS IMAGE SLIDER ══ */
#process-gallery { background: var(--bg-dark); padding: 0 0 80px; }
.pg-track-wrap { position: relative; overflow: hidden; }
.pg-track { display: flex; gap: 16px; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.pg-slide {
  flex: 0 0 calc(33.333% - 11px);
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}
.pg-slide:hover { transform: scale(0.98); }
.pg-slide-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.pg-slide-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  z-index: 1;
}
.pg-slide:hover .pg-slide-play { background: var(--teal); border-color: var(--teal); transform: scale(1.1); }
.pg-slide-play svg { width: 18px; height: 18px; fill: white; margin-right: -2px; }
.pg-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 18px 20px;
  opacity: 0; transition: opacity var(--transition);
}
.pg-slide:hover .pg-slide-overlay { opacity: 1; }
.pg-slide-cat { font-size: 11px; font-weight: 700; color: var(--teal-light); text-transform: uppercase; letter-spacing: .08em; }
.pg-slide-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff; margin-top: 2px; }
.pg-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.pg-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text-secondary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.pg-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pg-arrow:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.pg-dots { display: flex; gap: 8px; }
.pg-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all var(--transition); }
.pg-dot.active { background: var(--teal); width: 24px; border-radius: 4px; }

/* ══ TESTIMONIALS SLIDER ══ */
#testimonials { background: var(--bg-card2); }
.t-slider-wrap { position: relative; overflow: hidden; }
.t-slider-track { display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.t-slide { flex: 0 0 100%; padding: 0 4px; box-sizing: border-box; }
.testimonial-card-slide {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 36px;
  transition: border-color var(--transition);
  max-width: 800px; margin: 0 auto;
}
.testimonial-card-slide:hover { border-color: var(--border); }
.t-slide-top { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.t-avatar-lg {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff;
}
.t-slide-meta .t-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-primary); }
.t-slide-meta .t-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.t-slide-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-slide-stars span { color: var(--gold); font-size: 16px; }
.t-slide-quote { font-size: 38px; line-height: 1; color: var(--teal); font-family: Georgia,serif; opacity: .5; margin-bottom: 10px; }
.t-slide-text { font-size: 15px; color: var(--text-secondary); line-height: 1.85; }
/* video testimonial */
.t-video-tab-wrap { display: flex; gap: 10px; margin-bottom: 32px; justify-content: center; flex-wrap: wrap; }
.t-tab-btn {
  padding: 8px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-subtle); background: transparent;
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  color: var(--text-secondary); cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.t-tab-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.t-tab-btn.active, .t-tab-btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.t-tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--border-subtle); color: var(--text-secondary);
  font-size: 11px; font-weight: 700; line-height: 1;
  transition: all var(--transition);
}
.t-tab-btn.active .t-tab-count, .t-tab-btn:hover .t-tab-count {
  background: rgba(255,255,255,.25); color: #fff;
}
.t-tab-panel { display: none; }
.t-tab-panel.active { display: block; }
.t-video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.t-video-card {
  aspect-ratio: 9/16; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer; transition: transform var(--transition);
}
.t-video-card:hover { transform: scale(0.97); }
.t-video-bg { width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 16px; position: relative; }
.t-video-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%); }
.t-video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-55%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.t-video-card:hover .t-video-play { background: var(--teal); border-color: var(--teal); }
.t-video-play svg { width: 18px; height: 18px; fill: #fff; margin-right: -2px; }
.t-video-info { position: relative; z-index: 1; }
.t-video-info .v-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #fff; }
.t-video-info .v-role { font-size: 11px; color: rgba(255,255,255,.65); margin-top: 2px; }
.t-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }

/* ══ BLOG SLIDER ══ */
#blog-preview { background: var(--bg-dark); padding: 100px 0; }
.blog-track-wrap { overflow: hidden; }
.blog-track { display: flex; gap: 20px; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.blog-slide {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); cursor: pointer;
}
.blog-slide:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.blog-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.blog-thumb-bg { width: 100%; height: 100%; transition: transform .4s ease; }
.blog-slide:hover .blog-thumb-bg { transform: scale(1.04); }
.blog-tag {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 12px; border-radius: var(--radius-pill);
  background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 700;
}
.blog-body { padding: 22px 24px; }
.blog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.blog-date svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.blog-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text-primary); line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 18px; }
.blog-readmore { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--teal); text-decoration: none; transition: gap var(--transition); }
.blog-readmore:hover { gap: 10px; }
.blog-readmore svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.blog-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }

/* ══ WHATSAPP CTA ══ */
#whatsapp-cta { background: var(--bg-card2); padding: 80px 0; }
.wa-cta-box {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 56px 60px;
  position: relative; overflow: hidden;
}
.wa-cta-box::before {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: #25D366; filter: blur(100px); opacity: .07; pointer-events: none;
}
.wa-label { font-size: 12px; font-weight: 700; color: #25D366; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.wa-label svg { width: 16px; height: 16px; stroke: #25D366; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.wa-title { font-family: var(--font-display); font-size: clamp(24px,2.8vw,38px); font-weight: 900; color: var(--text-primary); line-height: 1.2; margin-bottom: 14px; }
.wa-title span { color: #25D366; }
.wa-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 28px; max-width: 420px; }
.wa-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.wa-bullets li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.wa-bullets li svg { width: 16px; height: 16px; stroke: #25D366; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.wa-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  background: #25D366; color: #fff; border: none;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all var(--transition);
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; }
.btn-whatsapp:hover { background: #1EBE5A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.wa-choices { display: flex; flex-direction: column; gap: 14px; }
.wa-choice-card {
  background: var(--bg-card2); border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer; text-decoration: none;
  transition: all var(--transition);
}
.wa-choice-card:hover { border-color: #25D366; background: rgba(37,211,102,.05); transform: translateX(4px); }
.wa-choice-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.wa-choice-icon svg { width: 22px; height: 22px; }
.ci-consult { background: rgba(42,157,143,.12); border: 1px solid rgba(42,157,143,.2); }
.ci-consult svg { stroke: var(--teal); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ci-price { background: rgba(233,196,106,.12); border: 1px solid rgba(233,196,106,.2); }
.ci-price svg { stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ci-idea { background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.2); }
.ci-idea svg { stroke: #25D366; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wa-choice-text .wc-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); }
.wa-choice-text .wc-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.wa-choice-arrow { margin-right: auto; }
.wa-choice-arrow svg { width: 16px; height: 16px; stroke: var(--text-muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wa-avail { margin-top: 20px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.wa-avail .wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; animation: pulse 2s infinite; }

@media (max-width: 900px) {
  .wa-cta-box { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .t-video-grid { grid-template-columns: 1fr 1fr; }
  .pg-slide { flex: 0 0 calc(50% - 8px); }
  .blog-slide { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 600px) {
  .t-video-grid { grid-template-columns: 1fr; }
  .pg-slide { flex: 0 0 100%; }
  .blog-slide { flex: 0 0 100%; }
}

/* ══ AUDIO TESTIMONIALS SLIDER ══ */
.audio-slider-wrap { overflow: hidden; margin-bottom: 40px; }
.audio-track { display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); gap: 16px; }
.audio-slide { flex: 0 0 calc(33.333% - 11px); }
.audio-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 22px; transition: all var(--transition);
  display: flex; flex-direction: column; gap: 16px; height: 100%;
}
.audio-card:hover { border-color: var(--border); transform: translateY(-3px); }
.audio-card-top { display: flex; align-items: center; gap: 12px; }
.audio-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.audio-meta .a-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); }
.audio-meta .a-role { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.audio-player { display: flex; align-items: center; gap: 12px; }
.audio-play-btn {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: var(--teal); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.audio-play-btn:hover { background: var(--teal-dark); transform: scale(1.06); }
.audio-play-btn svg { width: 14px; height: 14px; fill: #fff; }
.audio-play-btn.playing svg { width: 13px; height: 13px; }
.audio-wave { flex: 1; display: flex; align-items: center; gap: 3px; height: 32px; }
.audio-wave span {
  display: block; width: 3px; border-radius: 2px;
  background: var(--border); transition: background var(--transition);
}
.audio-card.is-playing .audio-wave span { background: var(--teal); animation: waveBounce 0.9s ease-in-out infinite; }
.audio-card.is-playing .audio-wave span:nth-child(odd) { animation-delay: 0.15s; }
.audio-card.is-playing .audio-wave span:nth-child(3n) { animation-delay: 0.3s; }
@keyframes waveBounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.audio-duration { font-size: 11px; color: var(--text-muted); font-family: var(--font-display); min-width: 32px; text-align: left; }
@media (max-width: 900px) { .audio-slide { flex: 0 0 calc(50% - 8px); } }
@media (max-width: 600px) { .audio-slide { flex: 0 0 100%; } }

/* Vertical list variant (used in combined media testimonials panel) */
.audio-slide-list { flex: 0 0 100%; width: 100%; }

/* ══ COMBINED MEDIA TESTIMONIALS PANEL (audio list + featured video/image) ══ */
.media-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  align-items: start;
}
.media-testimonials-audio-list {
  display: flex; flex-direction: column; gap: 14px;
  max-height: 560px; overflow-y: auto;
  padding-right: 4px;
}
.media-testimonials-audio-list::-webkit-scrollbar { width: 6px; }
.media-testimonials-audio-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.media-featured-wrap { display: flex; flex-direction: column; gap: 14px; }
.media-featured-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  transition: transform var(--transition);
}
.media-featured-card:hover { transform: scale(0.99); }
.media-featured-bg {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 22px;
}
.media-featured-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
}
.media-featured-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); z-index: 1;
}
.media-featured-card:hover .media-featured-play { background: var(--teal); border-color: var(--teal); transform: translate(-50%,-50%) scale(1.08); }
.media-featured-play svg { width: 22px; height: 22px; fill: #fff; margin-right: -3px; }
.media-featured-info { position: relative; z-index: 1; }
.media-featured-source { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
.media-featured-source svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.media-featured-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; }

.media-thumb-strip { display: flex; gap: 10px; flex-wrap: wrap; }
.media-thumb {
  flex: 0 0 80px; height: 56px; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer; position: relative;
  border: 2px solid transparent; transition: all var(--transition);
}
.media-thumb.active { border-color: var(--teal); }
.media-thumb-bg { width: 100%; height: 100%; }
.media-thumb-add {
  flex: 0 0 80px; height: 56px; border-radius: var(--radius-md);
  border: 1.5px dashed var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.media-thumb-add svg { width: 18px; height: 18px; stroke: var(--text-muted); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 900px) {
  .media-testimonials-grid { grid-template-columns: 1fr; }
  .media-testimonials-audio-list { max-height: none; }
}

/* ══ GROWTH BANNER SECTION ══ */
#growth-banner { background: var(--bg-card2); padding: 90px 0; position: relative; overflow: hidden; }
#growth-banner::before {
  content: ''; position: absolute; top: -150px; right: -100px;
  width: 450px; height: 450px; border-radius: 50%;
  background: var(--teal); filter: blur(130px); opacity: .12; pointer-events: none;
}
#growth-banner::after {
  content: ''; position: absolute; bottom: -150px; left: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: var(--gold); filter: blur(120px); opacity: .08; pointer-events: none;
}
.gb-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.gb-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; background: var(--teal-glow);
  border: 1px solid rgba(42,157,143,.3); border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; color: var(--teal-light); margin-bottom: 24px;
}
.gb-title {
  font-family: var(--font-display); font-size: clamp(28px,4vw,50px);
  font-weight: 900; color: var(--text-primary); line-height: 1.2; margin-bottom: 18px;
}
.gb-title span { color: var(--teal); }
.gb-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.85; max-width: 580px; margin: 0 auto 36px; }
.gb-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.gb-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden;
  max-width: 760px; margin: 0 auto;
}
.gb-stat { background: var(--bg-card); padding: 28px 16px; text-align: center; }
.gb-stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--teal); display: block; }
.gb-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 768px) {
  .gb-stats { grid-template-columns: 1fr 1fr; }
}

/* ══ FIXED SOCIAL SIDEBAR ══ */
.social-sidebar {
  position: fixed;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 950;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.social-sidebar::before, .social-sidebar::after {
  content: ''; display: block; width: 1px; height: 36px;
  background: var(--border);
}
.social-sidebar a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.social-sidebar a svg {
  width: 16px; height: 16px;
  stroke: var(--text-secondary); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--transition);
}
.social-sidebar a:hover {
  background: var(--teal); border-color: var(--teal);
  transform: scale(1.1) translateX(2px);
}
.social-sidebar a:hover svg { stroke: #fff; }
.social-sidebar a.wa-link:hover { background: #25D366; border-color: #25D366; }
@media (max-width: 1024px) {
  .social-sidebar { display: none; }
}

/* ══ NAV DROPDOWN ══ */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-caret { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--transition); }
.nav-item-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); right: 50%;
  transform: translateX(50%) translateY(-8px);
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  padding: 10px;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  z-index: 1100;
}
.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: var(--radius-md);
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary) !important;
  transition: all var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--teal-glow); color: var(--teal) !important; }
.nav-dropdown-menu a:hover::after { display: none; }
.nav-dropdown-menu a svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.nav-dropdown-divider { height: 1px; background: var(--border-subtle); margin: 6px 4px; }

/* ══ FLOATING WHATSAPP BUTTON ══ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 950;
  text-decoration: none;
  transition: all var(--transition);
  animation: waFloatPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-icon-close svg { fill: none !important; width: 24px; height: 24px; }
.wa-float.chat-open .wa-float-ping { display: none; }
.wa-float-ping {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; opacity: .6;
  animation: waPing 2.5s ease-out infinite;
}
@keyframes waFloatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes waPing {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 480px) {
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float svg { width: 25px; height: 25px; }
}

/* ══ WHATSAPP CHAT WIDGET ══ */
.wa-chat-panel {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 340px; max-width: calc(100vw - 40px);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  z-index: 951;
  overflow: hidden;
  opacity: 0; transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.wa-chat-panel.open {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-chat-header {
  background: #25D366;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
  position: relative;
}
.wa-chat-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
}
.wa-chat-avatar svg { width: 22px; height: 22px; fill: #fff; }
.wa-chat-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff; }
.wa-chat-status { font-size: 12px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.wa-chat-status .wd { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.wa-chat-close {
  position: absolute; left: 14px; top: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.wa-chat-close:hover { background: rgba(255,255,255,0.3); }
.wa-chat-close svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.4; stroke-linecap: round; }
.wa-chat-body {
  padding: 20px;
  background: var(--bg-card2);
  background-image:
    radial-gradient(circle at 20px 20px, rgba(42,157,143,0.04) 2px, transparent 2px),
    radial-gradient(circle at 50px 60px, rgba(42,157,143,0.04) 2px, transparent 2px);
  background-size: 70px 70px;
  max-height: 340px;
  overflow-y: auto;
}
.wa-chat-bubble {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 4px;
  padding: 12px 16px;
  font-size: 13px; line-height: 1.75;
  color: var(--text-secondary);
  max-width: 88%;
  margin-bottom: 10px;
  animation: waChatIn 0.35s ease both;
}
.wa-chat-bubble:last-child { margin-bottom: 0; }
.wa-chat-bubble strong { color: var(--text-primary); }
@keyframes waChatIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wa-chat-bubble:nth-child(2) { animation-delay: .12s; }
.wa-chat-bubble:nth-child(3) { animation-delay: .24s; }
.wa-chat-time { font-size: 10px; color: var(--text-muted); margin-top: 6px; text-align: left; }
.wa-quick-replies { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.wa-quick-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 11px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition);
}
.wa-quick-btn:hover { border-color: #25D366; background: rgba(37,211,102,.06); transform: translateX(-2px); }
.wa-quick-btn svg { width: 15px; height: 15px; stroke: #25D366; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.wa-chat-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-card);
}
.wa-start-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px; border-radius: var(--radius-pill);
  background: #25D366; color: #fff; border: none;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  text-decoration: none; cursor: pointer; transition: all var(--transition);
}
.wa-start-btn:hover { background: #1EBE5A; }
.wa-start-btn svg { width: 18px; height: 18px; fill: #fff; }
@media (max-width: 480px) {
  .wa-chat-panel { right: 16px; bottom: 86px; width: calc(100vw - 32px); }
}


/* ══════════════════════════════════════════════════════
   RTL OVERRIDES — Arabic Layout Fixes
══════════════════════════════════════════════════════ */

/* Base direction */
html, body { direction: rtl; text-align: right; }

/* Inputs & textareas */
input, textarea, select { direction: rtl; text-align: right; }

/* Nav links underline animate from right */
.nav-links a::after { left: auto; right: 50%; left: 50%; }
.nav-links a:hover::after { right: 0; left: 0; }

/* Section label line on right */
.section-label { flex-direction: row-reverse; }
.section-label::before { order: 1; }

/* Hero typewriter line stays RTL naturally */

/* Process grid connector line */
.process-grid::before { right: 40px; left: 40px; }

/* About float badges — already absolute positioned, fine */

/* Footer socials row */
.footer-socials { flex-direction: row; }

/* Breadcrumb separator */
.breadcrumb-sep { transform: scaleX(-1); }

/* Page banner label */
.page-banner-label { flex-direction: row-reverse; }
.page-banner-label::before { order: 1; }

/* Blog readmore arrow direction */
.blog-readmore svg { transform: scaleX(-1); }

/* Svc-link arrow */
.svc-link svg { transform: scaleX(-1); }
.svc-link:hover { gap: 10px; }

/* Service arrow on cards */
.service-arrow { flex-direction: row-reverse; }

/* back-to-top on left (لا يتعارض مع واتساب على اليمين) */
.back-to-top { left: 28px; right: auto; }

/* Slider tracks — RTL translateX fix */
/* In RTL, translateX positive = moves left, negative = moves right */
/* Our JS uses positive X for RTL sliding which is correct */

/* Nav dropdown position */
.nav-dropdown-menu { right: 50%; left: auto; transform: translateX(50%) translateY(-8px); }
.nav-item-dropdown:hover .nav-dropdown-menu { transform: translateX(50%) translateY(0); }

/* WhatsApp chat panel */
.wa-chat-panel { right: 28px; left: auto; }

/* Social sidebar stays on left */
.social-sidebar { left: 24px; right: auto; }

/* Fix flex row-reverse for items that should stay LTR-looking in RTL */
.hero-stats { flex-direction: row; }
.hero-ctas { flex-direction: row; }
.wa-cta-btns { flex-direction: row; }

/* wa-choice-card hover (RTL: move right) */
.wa-choice-card:hover { transform: translateX(4px); }

/* Quote mark in testimonials */
.t-slide-quote, .t-quote { text-align: right; }

/* Forms */
.form-row { direction: rtl; }
.form-label { display: block; }

/* Marker on process-grid horizontal line */
@media (max-width: 768px) {
  .back-to-top { left: 20px; right: auto; }
  .wa-chat-panel { right: 16px; left: 16px; }
}
