/* ==========================================================================
   TACTIC MEDIA (تكتيك ميديا) - Core Design System & Stylesheet
   Doha, Qatar | tactic.qa
   Built with high-end agency benchmarks: Ejjadh, Cim-Code, Eltzam, Cayan
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties & Theming
   -------------------------------------------------------------------------- */
:root {
  /* Typography */
  --font-ar: 'Readex Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-en: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Layout */
  --container-max: 1280px;
  --header-height: 80px;
}

/* Dark Mode (Default Luxury Agency Palette) */
:root, [data-theme="dark"] {
  --bg-body: #080C14;
  --bg-surface: #0E1626;
  --bg-surface-elevated: #152037;
  --bg-surface-translucent: rgba(14, 22, 38, 0.82);
  --bg-card: #10192C;
  --bg-card-hover: #17243E;
  --bg-subtle: #0B111F;
  --bg-input: #0c1424;
  
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(212, 175, 55, 0.35);
  
  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #8493A8;
  --text-dim: #54647C;
  
  /* Luxury Gold & Qatar Pearl accents */
  --accent-gold: #D4AF37;
  --accent-gold-hover: #E2C25C;
  --accent-gold-light: rgba(212, 175, 55, 0.12);
  --accent-gold-glow: rgba(212, 175, 55, 0.25);
  --accent-gold-border: rgba(212, 175, 55, 0.3);
  
  /* Technical Azure accent for software solutions */
  --accent-cyan: #38BDF8;
  --accent-cyan-light: rgba(56, 189, 248, 0.12);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 35px rgba(212, 175, 55, 0.18);
  
  --grid-line: rgba(255, 255, 255, 0.03);
}

/* Light Mode (Sophisticated Editorial Palette) */
[data-theme="light"] {
  --bg-body: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F1F5F9;
  --bg-surface-translucent: rgba(255, 255, 255, 0.88);
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --bg-input: #FFFFFF;
  
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-medium: rgba(15, 23, 42, 0.16);
  --border-accent: rgba(184, 134, 11, 0.4);
  
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  
  --accent-gold: #B8860B;
  --accent-gold-hover: #9E7307;
  --accent-gold-light: rgba(184, 134, 11, 0.09);
  --accent-gold-glow: rgba(184, 134, 11, 0.18);
  --accent-gold-border: rgba(184, 134, 11, 0.25);
  
  --accent-cyan: #0284C7;
  --accent-cyan-light: rgba(2, 132, 199, 0.09);
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 35px rgba(184, 134, 11, 0.12);
  
  --grid-line: rgba(15, 23, 42, 0.03);
}

/* --------------------------------------------------------------------------
   2. Reset & Typography Foundations
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-ar);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color var(--transition-base), color var(--transition-base);
  position: relative;
}

[dir="ltr"] body {
  font-family: var(--font-en);
}

/* Numeric alignment */
.en-num, .stat-number, .price-tag, .phone-num {
  font-family: var(--font-en) !important;
  font-feature-settings: 'tnum' on, 'lnum' on;
  direction: ltr;
  display: inline-block;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Container & Layout Grid
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-spacing {
  padding-block: 100px;
  position: relative;
}

@media (max-width: 768px) {
  .section-spacing {
    padding-block: 64px;
  }
  .container {
    padding-inline: 18px;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-gold-light);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.section-tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title span.highlight {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.section-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B8860B 100%);
  color: #080C14;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--accent-gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-gold-glow);
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, #C89518 100%);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  border-color: var(--border-medium);
  color: var(--text-primary);
  background: var(--accent-gold-light);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

[dir="rtl"] .btn svg {
  transform: scaleX(-1);
}

.btn:hover svg {
  transform: translateX(4px);
}

[dir="rtl"] .btn:hover svg {
  transform: scaleX(-1) translateX(4px);
}

/* --------------------------------------------------------------------------
   5. Header & Navigation Bar
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  background: transparent;
}

.site-header.scrolled {
  background: var(--bg-surface-translucent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.header-inner, .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-symbol {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-gold) 0%, #8E650C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080C14;
  box-shadow: 0 4px 12px var(--accent-gold-glow);
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}

.brand-text, .logo-text-group {
  display: flex;
  flex-direction: column;
}

.brand-text .brand-name, .logo-text-group .brand-name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.2px;
}

.brand-text .brand-sub, .logo-text-group .brand-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

/* Nav Menu */
.nav-menu, .desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding-block: 6px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after, .nav-link:hover::after {
  width: 100%;
}

/* Header Utilities */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-icon-btn, .theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.action-icon-btn:hover, .theme-toggle-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-1px);
}

.action-icon-btn svg, .theme-toggle-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.lang-switch-btn {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-switch-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu-btn svg {
  width: 22px;
  height: 22px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background: var(--bg-surface);
  border-inline-start: 1px solid var(--border-medium);
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-lg);
}

[dir="rtl"] .mobile-drawer {
  right: auto;
  left: 0;
  border-inline-start: none;
  border-inline-end: 1px solid var(--border-medium);
  transform: translateX(-100%);
}

.mobile-drawer.open {
  transform: translateX(0) !important;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.drawer-close-btn:hover {
  background: var(--accent-gold);
  color: #080C14;
  border-color: var(--accent-gold);
}

.drawer-close-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.drawer-links, .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.drawer-links .nav-link, .mobile-nav .nav-link {
  font-size: 18px;
  font-weight: 600;
  padding-block: 8px;
}

.drawer-footer {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 991px) {
  .nav-menu, .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .site-header .header-cta,
  .site-header .lang-switch-btn {
    display: none;
  }
  .header-actions {
    gap: 8px;
  }
}

/* --------------------------------------------------------------------------
   6. Hero Section (Agency Showreel & Storytelling)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
}

/* Subtle Ambient Glows (NO cliché purple-blue vibes) */
.hero-ambient-glow {
  position: absolute;
  top: 15%;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  margin-inline: auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-gold);
  box-shadow: 0 4px 20px var(--accent-gold-light);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 10px #22C55E;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-heading, .hero-title {
  font-size: clamp(34px, 5.8vw, 62px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-heading span.gradient-gold, .hero-title span.highlight {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description, .hero-desc {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 38px;
}

.hero-cta-group, .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero Showcase Card (Ejjadh benchmark inspired) */
.hero-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 20px;
}

.hero-showcase-visual {
  position: relative;
  width: 100%;
  height: clamp(280px, 46vw, 480px);
  background: linear-gradient(180deg, #0f182b 0%, #080d18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12) 0%, rgba(8, 12, 20, 0.7) 80%);
  z-index: 1;
}

.hero-play-badge {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform var(--transition-bounce);
}

.hero-play-badge:hover {
  transform: scale(1.08);
}

.play-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #080C14;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--accent-gold-glow);
  transition: all var(--transition-base);
}

.play-circle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  margin-inline-start: 4px;
}

.play-label {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Showcase Floating Tickers */
.showcase-badge-pill {
  position: absolute;
  z-index: 3;
  background: var(--bg-surface-translucent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-medium);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.showcase-badge-top-left {
  top: 24px;
  inset-inline-start: 24px;
}

.showcase-badge-bottom-right {
  bottom: 24px;
  inset-inline-end: 24px;
}

@media (max-width: 768px) {
  .showcase-badge-pill {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   7. Animated Stats Counters (Requested feature)
   -------------------------------------------------------------------------- */
.stats-section {
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
  padding-block: 56px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.stat-number {
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--accent-gold);
  margin-inline-start: 2px;
}

.stat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-subtitle {
  font-size: 12.5px;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   8. Sliding Content & Tabs (Requested feature)
   -------------------------------------------------------------------------- */
.sliding-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn svg {
  width: 16px;
  height: 16px;
}

.tab-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.tab-btn.active {
  background: var(--accent-gold);
  color: #080C14;
  font-weight: 700;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 18px var(--accent-gold-glow);
}

.tab-content-panel {
  display: none;
  animation: fadeInPanel 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.tab-content-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: center;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-light);
  border: 1px solid var(--accent-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon-box {
  background: var(--accent-gold);
  color: #080C14;
  transform: scale(1.05);
}

.service-icon-box svg {
  width: 26px;
  height: 26px;
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-card-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.service-deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.deliverable-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.service-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

[dir="rtl"] .service-card-link svg {
  transform: scaleX(-1);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

[dir="rtl"] .service-card:hover .service-card-link svg {
  transform: scaleX(-1) translateX(4px);
}

/* --------------------------------------------------------------------------
   9. Card Sliders & Carousels (Requested feature)
   -------------------------------------------------------------------------- */
.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-arrow-btn:hover {
  background: var(--accent-gold);
  color: #080C14;
  border-color: var(--accent-gold);
}

.slider-arrow-btn svg {
  width: 18px;
  height: 18px;
}

[dir="rtl"] .slider-arrow-btn svg {
  transform: scaleX(-1);
}

.cards-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cards-slider::-webkit-scrollbar {
  display: none;
}

.cards-slider:active {
  cursor: grabbing;
}

.cards-slider > * {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  scroll-snap-align: start;
}

@media (max-width: 991px) {
  .cards-slider > * {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .cards-slider > * {
    flex: 0 0 88%;
  }
}

/* Slider Pagination Dots */
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-medium);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  outline: none;
  position: relative;
}

.slider-dot:hover {
  background: var(--text-muted);
  transform: scale(1.2);
}

.slider-dot.active {
  width: 32px;
  background: var(--accent-gold);
  box-shadow: 0 0 14px rgba(212, 163, 89, 0.45);
}

/* Portfolio Card Inside Slider & Grid */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  height: 100%;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.btn-case-study-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  background: transparent;
  border: none;
  padding: 10px 0 0;
  cursor: pointer;
  margin-top: 14px;
  transition: color var(--transition-fast);
  text-decoration: none;
  width: fit-content;
}

.btn-case-study-details svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-fast);
}

[dir="rtl"] .btn-case-study-details:hover svg {
  transform: translateX(-4px);
}

[dir="ltr"] .btn-case-study-details:hover svg {
  transform: translateX(4px);
}

.portfolio-thumb {
  position: relative;
  width: 100%;
  height: 240px;
  background: #111a2e;
  overflow: hidden;
}

.portfolio-thumb img, .portfolio-thumb .portfolio-mockup {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-thumb img,
.portfolio-card:hover .portfolio-thumb .portfolio-mockup {
  transform: scale(1.06);
}

.portfolio-category-pill {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  background: rgba(8, 12, 20, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-gold);
  z-index: 2;
}

.portfolio-metric-badge {
  position: absolute;
  bottom: 16px;
  inset-inline-end: 16px;
  background: var(--accent-gold);
  color: #080C14;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.portfolio-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-client {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.portfolio-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.portfolio-summary {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tag-pill {
  font-size: 11.5px;
  padding: 3px 9px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   10. Infinite Brand Marquee (Client Logos)
   -------------------------------------------------------------------------- */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-block: 28px;
}

.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-body), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-body), transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

[dir="rtl"] @keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.client-logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.client-logo-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent-gold);
}

.client-logo-item:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   11. Visual Production Showcase (Ejjadh Benchmark Reference)
   -------------------------------------------------------------------------- */
.visual-production-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-body) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.production-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .production-grid {
    grid-template-columns: 1fr;
  }
}

.production-visual-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.production-video-placeholder {
  width: 100%;
  height: 380px;
  background: radial-gradient(circle at center, #1b263b 0%, #0d1322 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.production-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 580px) {
  .production-features-list {
    grid-template-columns: 1fr;
  }
}

.prod-feature-card {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.prod-feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.prod-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.prod-feature-icon svg {
  width: 20px;
  height: 20px;
}

.prod-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.prod-feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   12. Forms & Consultation Selector
   -------------------------------------------------------------------------- */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.contact-info-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-light);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-text .item-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-item-text .item-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 580px) {
  .contact-form-card, .contact-info-card {
    padding: 24px 20px;
  }
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-size: 15px;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-light);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Service Pills Multi-Select */
.service-tags-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.tag-checkbox {
  display: none;
}

.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tag-checkbox:checked + .tag-label {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 700;
}

/* Budget Selector Pills */
.budget-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 520px) {
  .budget-options {
    grid-template-columns: 1fr;
  }
}

.budget-radio {
  display: none;
}

.budget-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.budget-label .amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.budget-label .note {
  font-size: 11px;
  color: var(--text-muted);
}

.budget-radio:checked + .budget-label {
  border-color: var(--accent-gold);
  background: var(--accent-gold-light);
}

.budget-radio:checked + .budget-label .amount {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   13. Interactive Modal (Showreel & Project Previews)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 18, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container,
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(212, 163, 89, 0.15);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-container,
.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  position: sticky;
  top: 0;
  z-index: 10;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.modal-dynamic-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  padding-inline-end: 16px;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background: var(--accent-gold);
  color: #080C14;
  border-color: var(--accent-gold);
}

.modal-dynamic-content {
  padding: 24px;
  overflow-y: auto;
}

/* Luxury Video Showreel Showcase */
.showreel-player-container {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at center, #10192e 0%, #060a12 100%);
  border: 1px solid rgba(212, 163, 89, 0.25);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  margin-bottom: 22px;
}

.showreel-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.showreel-ambient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #091222 0%, #15223e 50%, #0b1526 100%);
  transition: opacity 0.5s ease;
}

.showreel-screen.is-playing .showreel-ambient-bg {
  background: linear-gradient(135deg, #070d18 0%, #0d1e38 50%, #050b14 100%);
}

.showreel-canvas-visualizer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.showreel-center-play {
  position: relative;
  z-index: 5;
  width: 76px;
  height: 76px;
  border-radius: var(--radius-full);
  background: rgba(212, 163, 89, 0.9);
  color: #080C14;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(212, 163, 89, 0.6);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: none;
  cursor: pointer;
}

.showreel-center-play:hover {
  transform: scale(1.1);
  background: #fff;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
}

.showreel-center-play svg {
  width: 32px;
  height: 32px;
  margin-inline-start: 3px;
}

.showreel-screen.is-playing .showreel-center-play {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.showreel-screen:hover.is-playing .showreel-center-play {
  opacity: 0.9;
  pointer-events: auto;
  transform: scale(1);
}

.showreel-overlay-badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  background: rgba(8, 12, 20, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
}

.showreel-live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.showreel-controls-bar {
  padding: 12px 18px;
  background: rgba(10, 15, 25, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
}

.showreel-ctrl-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.showreel-ctrl-btn:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

.showreel-progress-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.showreel-progress-bar {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.showreel-progress-fill {
  height: 100%;
  width: 32%;
  background: linear-gradient(90deg, var(--accent-gold), #f3e8d2);
  border-radius: 999px;
  transition: width 0.1s linear;
}

.showreel-time-readout {
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
}

.showreel-quality-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  background: rgba(212, 163, 89, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(212, 163, 89, 0.3);
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Case Study Modal Layout */
.case-study-modal-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-study-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.case-study-client-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
}

.case-study-sector-badge {
  font-size: 13px;
  color: var(--text-muted);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 680px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

.case-study-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
}

.case-study-card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.case-study-card-title svg {
  color: var(--accent-gold);
}

.case-study-card-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

.case-study-results-block {
  background: linear-gradient(135deg, rgba(212, 163, 89, 0.08), rgba(212, 163, 89, 0.02));
  border: 1px solid rgba(212, 163, 89, 0.25);
  border-radius: 12px;
  padding: 20px;
}

.case-study-results-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.case-study-results-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-study-results-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-primary);
  line-height: 1.5;
}

.case-study-results-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.case-study-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.btn-whatsapp-project {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all var(--transition-base);
}

.btn-whatsapp-project:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   14. Floating WhatsApp CTA Button (Qatar Direct Line)
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .floating-whatsapp span {
    display: none;
  }
  .floating-whatsapp {
    padding: 14px;
    border-radius: 50%;
  }
}

/* --------------------------------------------------------------------------
   15. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
  padding-bottom: 32px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   16. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   17. High-Fidelity Bespoke Portfolio Visual Mockups
   ========================================================================== */
.portfolio-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-visual {
  transform: scale(1.04);
}

/* 1. Real Estate Visual */
.portfolio-visual-lusail {
  background: linear-gradient(145deg, #050b16 0%, #0d1a30 50%, #152745 100%);
}
.portfolio-visual-lusail .skyline-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}
.portfolio-visual-lusail .glass-hud {
  position: relative;
  z-index: 2;
  width: 88%;
  background: rgba(8, 16, 32, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.hud-browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hud-browser-dots {
  display: flex;
  gap: 4px;
}
.hud-browser-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.hud-browser-url {
  font-family: var(--font-en);
  font-size: 10px;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 8px;
  border-radius: 4px;
}
.hud-vr-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}
.hud-property-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.hud-property-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
}
.hud-property-price {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-gold);
}
.hud-property-specs {
  display: flex;
  gap: 10px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* 2. Haute Couture Visual */
.portfolio-visual-couture {
  background: linear-gradient(145deg, #14081a 0%, #281033 50%, #3e184c 100%);
}
.portfolio-visual-couture .arabesque-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle at center, rgba(212, 175, 55, 0.4) 1px, transparent 1px);
  background-size: 16px 16px;
}
.portfolio-visual-couture .couture-card {
  position: relative;
  z-index: 2;
  width: 88%;
  background: rgba(26, 12, 36, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.couture-brand-header {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}
.couture-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.couture-item-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
}
.couture-price-tag {
  font-family: var(--font-en);
  font-size: 13.5px;
  font-weight: 900;
  color: var(--accent-gold);
  white-space: nowrap;
}
.couture-pay-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pay-pill {
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 3. 4K Cinema Visual */
.portfolio-visual-cultural {
  background: linear-gradient(145deg, #06110a 0%, #0f2416 50%, #193822 100%);
}
.portfolio-visual-cultural .viewfinder-frame {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 85%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(4, 12, 8, 0.6);
  backdrop-filter: blur(6px);
}
.viewfinder-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-en);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.rec-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ef4444;
  font-weight: 800;
}
.rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: recBlink 1s infinite alternate;
}
@keyframes recBlink {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}
.viewfinder-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.viewfinder-reticle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}
.viewfinder-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-en);
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.75);
}
.audio-vu-meter {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.vu-bar {
  width: 3px;
  background: #22c55e;
  border-radius: 1px;
}
.vu-bar:nth-child(4), .vu-bar:nth-child(5) {
  background: #eab308;
}
.vu-bar:nth-child(6) {
  background: #ef4444;
}

/* 4. F&B ERP Dashboard Visual */
.portfolio-visual-erp {
  background: linear-gradient(145deg, #070c14 0%, #101826 50%, #172437 100%);
}
.portfolio-visual-erp .erp-panel {
  position: relative;
  z-index: 2;
  width: 88%;
  background: rgba(10, 18, 30, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.erp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-family: var(--font-en);
  color: var(--text-muted);
  margin-bottom: 8px;
}
.erp-badge-active {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #22c55e;
  font-weight: 700;
}
.erp-chart-area {
  width: 100%;
  height: 48px;
  margin-block: 4px;
}
.erp-metrics-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.erp-metric-val {
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--accent-gold);
}

/* 5. Medical Visual */
.portfolio-visual-medical {
  background: linear-gradient(145deg, #051315 0%, #0c2529 50%, #153b40 100%);
}
.portfolio-visual-medical .medical-card {
  position: relative;
  z-index: 2;
  width: 88%;
  background: rgba(8, 22, 25, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.medical-crest {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.medical-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
}
.medical-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
}
.medical-card-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-en);
}
.medical-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* 6. Supercars Visual */
.portfolio-visual-supercars {
  background: linear-gradient(145deg, #110d0a 0%, #221811 50%, #352317 100%);
}
.portfolio-visual-supercars .supercars-card {
  position: relative;
  z-index: 2;
  width: 88%;
  background: rgba(20, 14, 10, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.supercars-telemetry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.supercars-badge {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold);
}
.supercars-curve {
  width: 100%;
  height: 38px;
  margin-block: 4px;
}

/* Enhanced Hero Showcase Visual Scene */
.hero-skyline-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  pointer-events: none;
  opacity: 0.45;
}
.hero-cinematic-brackets {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: 1;
}
.hero-cinematic-tag {
  position: absolute;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(212, 175, 55, 0.75);
  font-weight: 700;
  text-transform: uppercase;
}
.hero-tag-tl { top: 12px; left: 16px; }
.hero-tag-tr { top: 12px; right: 16px; }

/* ==========================================================================
   18. Developer Diagnostics & Fail-Loudly HUD
   ========================================================================== */
#dev-diagnostics-badge {
  position: fixed;
  bottom: 18px;
  inset-inline-start: 18px;
  z-index: 99999;
  background: rgba(8, 12, 20, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 700;
  color: #22c55e;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-base);
}
#dev-diagnostics-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
#dev-diagnostics-badge.has-error {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(30, 10, 10, 0.94);
  animation: devErrorPulse 1.2s infinite alternate;
}
@keyframes devErrorPulse {
  0% { box-shadow: 0 0 12px rgba(239, 68, 68, 0.4); }
  100% { box-shadow: 0 0 28px rgba(239, 68, 68, 0.8); }
}
.dev-diag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.dev-diag-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(10px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dev-diag-overlay.active {
  display: flex;
}
.dev-diag-modal {
  background: #0d131f;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.dev-diag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}
.dev-diag-title {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dev-diag-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}
.dev-diag-body {
  padding: 20px;
  overflow-y: auto;
  font-family: var(--font-en);
  font-size: 12.5px;
  line-height: 1.6;
}
.dev-diag-item {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 10px;
}
.dev-diag-item-type {
  font-weight: 800;
  color: #ef4444;
  margin-bottom: 4px;
}
.dev-diag-item-msg {
  color: #fff;
  font-size: 12px;
  word-break: break-all;
}
.dev-diag-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dev-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}
.dev-stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-gold);
}
.dev-stat-lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   ELEVATED HERO & INTERACTIVE CONSOLE (CIM-Code & Cayan Benchmarks)
   ========================================================================== */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 1080px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}

[dir="rtl"] .hero-text-col {
  align-items: flex-start;
  text-align: start;
}

.hero-text-col .hero-pill {
  margin-inline-start: 0;
  margin-bottom: 20px;
}

.hero-text-col .hero-title {
  text-align: start;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text-col .hero-desc {
  text-align: start;
  margin-inline: 0;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-text-col .hero-actions {
  justify-content: flex-start;
  margin-bottom: 32px;
}

/* Hero Integrated Stats Bar */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 640px) {
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-subtle);
}

@media (max-width: 640px) {
  .hero-stat-item:nth-child(2)::after {
    display: none;
  }
}

.hero-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-feature-settings: "tnum";
}

.hero-stat-lbl {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* Interactive Agency Console (Left Column in RTL) */
.hero-console-wrapper {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--accent-gold-glow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.console-mode-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  scrollbar-width: none;
}

.console-mode-tabs::-webkit-scrollbar {
  display: none;
}

.console-tab {
  flex: 1;
  min-width: 0;
  padding: 11px 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.console-tab svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.console-tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.console-tab.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
}

.console-screen-body {
  position: relative;
  min-height: 380px;
  background: linear-gradient(180deg, #0d1526 0%, #080c14 100%);
  display: flex;
  flex-direction: column;
}

.console-view {
  display: none;
  width: 100%;
  height: 100%;
  padding: 24px;
  animation: fadeInConsole 0.35s ease-out forwards;
}

.console-view.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

@keyframes fadeInConsole {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* Console View 1: Cinema 4K Cam */
.cinema-view-container {
  position: relative;
  height: 100%;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  padding: 16px;
  overflow: hidden;
}

.cinema-view-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 2;
}

.cinema-center-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: auto;
  z-index: 2;
}

.cinema-view-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-en);
  font-size: 11px;
  color: #94a3b8;
  z-index: 2;
}

/* Console View 2: E-Commerce Store with Qatar Gateways */
.store-view-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.store-browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  font-family: var(--font-en);
  color: #94a3b8;
}

.store-preview-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.store-brand-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.store-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.store-price-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
}

.store-gateway-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.store-gate-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-gold);
}

/* Console View 3: Mobile Apps */
.app-view-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
}

.phone-mockup-frame {
  width: 190px;
  height: 310px;
  background: #000;
  border: 3px solid #334155;
  border-radius: 28px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.phone-notch {
  width: 50px;
  height: 4px;
  background: #334155;
  border-radius: 2px;
  margin: 0 auto 10px;
}

.phone-screen-content {
  flex: 1;
  background: #0f172a;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-app-card {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px;
  font-size: 10.5px;
}

.phone-order-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #22c55e;
  font-weight: 700;
}

.app-feature-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-primary);
}

.app-feature-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Console View 4: Growth & ROAS */
.growth-view-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.growth-header-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.growth-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}

.growth-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-gold);
}

.growth-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.growth-chart-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ==========================================================================
   ENHANCED SNAPPY SLIDER (With Auto-Play & Progress Bar)
   ========================================================================== */
.slider-counter {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  padding: 6px 14px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  margin-inline-end: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.slider-counter .current-slide {
  color: var(--accent-gold);
  font-weight: 800;
}

.slider-dot {
  position: relative;
  overflow: hidden;
}

.slider-dot.active {
  width: 38px;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid var(--accent-gold);
}

.slider-dot-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  width: 0%;
  background: var(--accent-gold);
  border-radius: var(--radius-full);
}

.slider-dot.active.animating .slider-dot-fill {
  width: 100%;
  transition: width 5s linear;
}

/* ==========================================================================
   INTERACTIVE PROJECT SCOPE ESTIMATOR
   ========================================================================== */
.estimator-section {
  position: relative;
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.estimator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .estimator-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 28px;
  }
}

.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.estimator-group-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.estimator-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.estimator-pill-btn {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.estimator-pill-btn:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

.estimator-pill-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #080C14;
  font-weight: 700;
  box-shadow: 0 4px 14px var(--accent-gold-glow);
}

.estimator-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 600px) {
  .estimator-addons-grid {
    grid-template-columns: 1fr;
  }
}

.estimator-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.estimator-checkbox-label:hover {
  border-color: var(--border-medium);
}

.estimator-checkbox-label input[type="checkbox"] {
  accent-color: var(--accent-gold);
  width: 16px;
  height: 16px;
}

.estimator-summary-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.estimator-summary-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.estimator-spec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.estimator-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
}

.estimator-spec-k {
  color: var(--text-muted);
}

.estimator-spec-v {
  font-weight: 700;
  color: var(--text-primary);
}

.estimator-whatsapp-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.estimator-whatsapp-btn:hover {
  background: #20BA56;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}


