/* ============================================
   EMANFTC — Corporate Design System
   Logo-matched: Dark Maroon Red + Forest Green
   Professional Corporate Industrial Theme
   ============================================ */

/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* === CSS Custom Properties === */
:root {
  /* Brand Colors — extracted from logo */
  --color-primary: #7B1A1A;
  --color-primary-dark: #5A1212;
  --color-primary-light: #9B2D2D;
  --color-accent: #1B5E20;
  --color-accent-dark: #0D3B12;
  --color-accent-light: #2E7D32;
  
  /* Gold highlight for premium feel */
  --color-gold: #C8963E;
  --color-gold-light: #D4A84D;
  
  /* Backgrounds */
  --bg-light: #F8F9FA;
  --bg-dark: #1A1014;
  --bg-dark-alt: #241518;
  --bg-card: #FFFFFF;
  --bg-card-dark: #1E1318;
  --bg-section-alt: #FFF8F6;
  
  /* Text */
  --text-primary: #1C1017;
  --text-secondary: #5A5A5A;
  --text-light: #8A8A8A;
  --text-white: #FFFFFF;
  --text-on-dark: #D9D0D3;
  
  /* Borders */
  --border-color: #E8E0E2;
  --border-light: #F0EAEC;
  --border-accent: rgba(123, 26, 26, 0.15);
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1240px;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 64px;
  
  /* Typography — Corporate */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;
  
  /* Effects */
  --shadow-sm: 0 1px 4px rgba(28, 16, 23, 0.06);
  --shadow-md: 0 4px 24px rgba(28, 16, 23, 0.08);
  --shadow-lg: 0 12px 48px rgba(28, 16, 23, 0.12);
  --shadow-xl: 0 24px 64px rgba(28, 16, 23, 0.16);
  --shadow-glow: 0 0 30px rgba(123, 26, 26, 0.15);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === RTL Font Override === */
[dir="rtl"] {
  --font-display: 'Tajawal', sans-serif;
  --font-body: 'Tajawal', sans-serif;
}

/* === Base Reset & Global === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-light);
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
  font-family: var(--font-arabic);
  font-weight: 800;
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-primary);
}

[dir="rtl"] .section-label::before {
  order: 1;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--color-primary);
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.dark-section .section-label { color: var(--color-gold); }
.dark-section .section-title { color: var(--text-white); }
.dark-section .section-desc { color: var(--text-on-dark); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: inset-inline-start 0.6s ease;
}

.btn:hover::after {
  inset-inline-start: 100%;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(123, 26, 26, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 28px rgba(123, 26, 26, 0.4);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(27, 94, 32, 0.3);
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: var(--text-white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--text-white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.btn i, .btn svg {
  font-size: 15px;
}

/* === Premium Top Bar === */
.topbar {
  background: linear-gradient(90deg, #1a0a0a, #3d1515, #0d1b12);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.topbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat;
  opacity: 0.5;
  pointer-events: none;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.topbar-left a,
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.topbar-left a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.topbar-left i {
  color: var(--color-gold);
  font-size: 14px;
  background: rgba(200, 150, 62, 0.1);
  padding: 4px;
  border-radius: 4px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-toggle a {
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.lang-toggle a.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: 0 2px 8px rgba(123, 26, 26, 0.4);
}

.lang-toggle a:hover:not(.active) {
  color: #fff;
}

/* === Premium Navigation === */
.main-nav {
  background: var(--text-white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.main-nav.scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px; /* Slightly taller for premium feel */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 56px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.02);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-logo-text .logo-eman {
  color: var(--color-accent);
}

.nav-logo-text .logo-ftc {
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px; /* Slightly more gap */
}

.nav-menu a,
.nav-menu .nav-dropdown > span {
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  text-decoration: none;
}

.nav-menu a::after,
.nav-menu .nav-dropdown > span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .nav-dropdown:hover > span,
.nav-menu a.active {
  color: var(--color-primary);
  background: rgba(123, 26, 26, 0.04);
}

.nav-menu a:hover::after,
.nav-menu .nav-dropdown:hover > span::after,
.nav-menu a.active::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 260px;
  background: var(--text-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: 100;
  border-top: 3px solid var(--color-primary);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-section-alt);
  color: var(--color-primary);
  padding-inline-start: 26px;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 11px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,16,20,0.94) 0%, rgba(90,18,18,0.88) 50%, rgba(26,16,20,0.96) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 150, 62, 0.12);
  border: 1px solid rgba(200, 150, 62, 0.25);
  padding: 7px 18px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-gold);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--color-gold);
  position: relative;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-on-dark);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* Hero Stats Strip */
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
  text-align: start;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-on-dark);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* === Sections === */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.section-alt {
  background: var(--text-white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* Grid line decoration */
.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.grid-lines::before,
.grid-lines::after {
  content: '';
  position: absolute;
  background: rgba(123, 26, 26, 0.03);
}

.grid-lines::before {
  top: 0;
  left: 20%;
  width: 1px;
  height: 100%;
}

.grid-lines::after {
  top: 0;
  right: 20%;
  width: 1px;
  height: 100%;
}

/* === Service Cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width var(--transition-slow);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(123, 26, 26, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: var(--color-primary);
}

.service-card-icon i {
  font-size: 24px;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.service-card:hover .service-card-icon i {
  color: var(--text-white);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-card .card-link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

.service-card:hover .card-link {
  gap: 14px;
}

/* === Product Tabs === */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.product-tab {
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.product-tab:hover,
.product-tab.active {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
}

.product-tab-content {
  display: none;
}

.product-tab-content.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

/* === Global Partners Pill Grid === */
.partners-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.partner-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  min-height: 60px;
  border-radius: 50px;
  border: 2px solid var(--pill-color, #ddd);
  background: #ffffff;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.partner-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: var(--pill-color, #ddd);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.partner-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.partner-pill:hover::before {
  opacity: 0.06;
}

.partner-pill img {
  max-height: 32px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.partner-pill:hover img {
  transform: scale(1.06);
}

.partner-pill span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* === Stats Section === */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -40%;
  inset-inline-end: -5%;
  width: 300px;
  height: 300px;
  border: 30px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

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

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  inset-inline-end: 0;
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.12);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  font-size: 28px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* === Clients Showcase Section === */
.clients-section {
  background: linear-gradient(180deg, #f8f6f4 0%, #ffffff 50%, #f8f6f4 100%);
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 26, 26, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.clients-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.clients-showcase {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.client-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.client-card-inner {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(123, 26, 26, 0.06);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.client-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 150, 62, 0.06), transparent);
  transition: left 0.6s ease;
}

.client-card:hover .client-card-inner::before {
  left: 100%;
}

.client-card:hover .client-card-inner {
  border-color: rgba(123, 26, 26, 0.15);
  box-shadow: 0 8px 32px rgba(123, 26, 26, 0.08), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 1);
}

.client-card-inner img {
  max-height: 120px;
  max-width: 240px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.client-card:hover .client-card-inner img {
  transform: scale(1.06);
}

.clients-showcase {
  justify-items: center;
}

.clients-mobile-hint {
  display: none;
}

/* === CTA Banner === */
.cta-banner {
  background: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237B1A1A' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20l2.83-2.83 1.41 1.41L1.41 21.41 0 20zm0-18.59l2.83 2.83-1.41 1.41L0 4.41V1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--text-white);
  margin-bottom: 14px;
}

.cta-inner p {
  font-size: 16px;
  color: var(--text-on-dark);
  margin-bottom: 32px;
  max-width: 560px;
  margin-inline: auto;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Blog Cards === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-category {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: var(--color-primary);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--color-primary);
}

.blog-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === Footer === */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 0;
}

.site-footer > .container {
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 52px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.footer-logo-text .logo-eman {
  color: var(--color-accent-light);
}

.footer-logo-text .logo-ftc {
  color: var(--color-gold);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 14px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-on-dark);
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(123, 26, 26, 0.3);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-links a::before {
  content: '›';
  color: var(--color-primary-light);
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

[dir="rtl"] .footer-links a::before {
  content: '‹';
}

.footer-links a:hover {
  color: var(--text-white);
  padding-inline-start: 6px;
}

.footer-links a:hover::before {
  color: var(--color-gold);
  transform: translateX(2px);
}

.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 13.5px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 14px;
  margin-top: 2px;
}

.footer-contact a {
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--text-white);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

@media (max-width: 1280px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
  }
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* === About Section (Home) === */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text .usp-list {
  margin-top: 26px;
}

.usp-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.usp-list li i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(27, 94, 32, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 3px;
}

.usp-list li span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.usp-list li strong {
  color: var(--text-primary);
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  inset-inline-start: 20px;
  background: var(--color-primary);
  color: var(--text-white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-image-badge .badge-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Page Hero (Inner Pages) === */
.page-hero {
  background: var(--bg-dark);
  padding: 88px 0 52px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,16,20,0.96), rgba(123,26,26,0.85));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--text-white);
  margin-bottom: 14px;
}

.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-on-dark);
}

.page-hero .breadcrumb a {
  color: var(--color-gold);
}

.page-hero .breadcrumb span {
  color: var(--text-light);
}

/* === Contact Form === */
.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(123, 26, 26, 0.08);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group select,
[dir="rtl"] .form-group textarea {
  font-family: var(--font-arabic);
}

.contact-info-card {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--text-on-dark);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(123, 26, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 18px;
  color: var(--color-gold);
}

.contact-info-text h4 {
  font-size: 14px;
  color: var(--text-white);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 13px;
  color: var(--text-on-dark);
  line-height: 1.6;
}

.contact-map {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === Projects Grid === */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 320px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 36px 20px 20px;
  background: linear-gradient(to top, rgba(26,16,20,0.9), transparent);
  color: var(--text-white);
  transform: translateY(16px);
  opacity: 0;
  transition: all var(--transition-base);
}

.project-card:hover .project-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.project-card-overlay h3 {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: 4px;
}

.project-card-overlay span {
  font-size: 12px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* === Filter Buttons === */
.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 22px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  border: 1.5px solid var(--border-color);
  border-radius: 3px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(123, 26, 26, 0.04);
}

/* === Vision / Mission / Values === */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vmv-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.vmv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.vmv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vmv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.vmv-icon i {
  font-size: 24px;
  color: var(--text-white);
}

.vmv-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.vmv-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === Two Column Content === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* === Pagination === */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 44px;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.pagination a:hover,
.pagination span.active {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
}

/* === Service Detail Page === */
.service-detail-list {
  list-style: none;
  padding: 0;
}

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-primary);
}

.service-detail-list li i {
  color: var(--color-accent);
  font-size: 14px;
  flex-shrink: 0;
}

.brand-logos-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 0;
}

.brand-logo-item {
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  letter-spacing: 0.5px;
}

.brand-logo-item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* === Product Category Cards === */
.products-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.product-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-category-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(123, 26, 26, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.product-category-icon i {
  font-size: 28px;
  color: var(--color-primary);
}

.product-category-card h3 {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-category-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* === Responsive === */
@media (max-width: 1024px) {
  .services-grid, .blog-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-item:nth-child(2)::after { display: none; }
  .clients-showcase { grid-template-columns: repeat(4, 1fr); }
  .partners-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .products-category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }
  
  .topbar-left { display: none; }
  .topbar-right { width: 100%; justify-content: center; }
  
  .nav-hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    inset-inline-end: -100%;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--text-white);
    flex-direction: column;
    padding: 72px 20px 20px;
    box-shadow: var(--shadow-xl);
    transition: inset-inline-end var(--transition-base);
    z-index: 1000;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
  }
  .nav-menu.open { inset-inline-end: 0; }
  .nav-menu a, .nav-menu .nav-dropdown > span {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
  }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border-top: none;
    padding: 0 0 0 16px; display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-cta { margin-top: 14px; }
  
  .hero { min-height: auto; padding: 72px 0 52px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { flex: 1; min-width: 110px; }
  
  .services-grid, .vmv-grid, .blog-grid, .projects-grid { grid-template-columns: 1fr; }
  .about-strip, .two-col, .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item::after { display: none !important; }
  .stat-number { font-size: 36px; }
  .clients-showcase { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .client-card-inner { padding: 14px 10px; min-height: 70px; }
  .client-card-inner img { max-height: 50px; max-width: 110px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .partner-pill { padding: 10px 12px; min-height: 48px; }
  .partner-pill img { max-height: 24px; max-width: 90px; }
  .products-category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .clients-showcase { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .client-card-inner { padding: 12px 8px; min-height: 60px; }
  .client-card-inner img { max-height: 40px; max-width: 90px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .partner-pill { padding: 8px 10px; min-height: 42px; border-width: 1.5px; }
  .partner-pill img { max-height: 20px; max-width: 75px; }
  .products-category-grid { grid-template-columns: 1fr; }
  .hero-stat-number { font-size: 26px; }
  .hero-slider-controls { bottom: 120px; }
}

/* ===================================================
   HERO SLIDER — Full-screen image background slider
   =================================================== */
.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,16,20,0.92) 0%, rgba(90,18,18,0.80) 50%, rgba(26,16,20,0.88) 100%);
}

.hero-slide .hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero-slide.active .hero-content {
  animation: slideContentIn 0.8s ease-out;
}

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

/* Slider Controls */
.hero-slider-controls {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--text-white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.hero-slider-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.hero-slider-dots {
  display: flex;
  gap: 8px;
}

.hero-slider-dot {
  width: 12px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-slider-dot.active {
  width: 32px;
  background: var(--color-gold);
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(26,16,20,0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.hero-stats-bar .hero-stats {
  display: flex;
  justify-content: center;
  gap: 72px;
  padding: 0;
  border: none;
}

/* ===================================================
   SERVICE CARD THUMBNAILS — Image inside cards
   =================================================== */
.service-card-thumb {
  margin: -36px -28px 22px -28px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

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

.service-card:hover .service-card-thumb img {
  transform: scale(1.06);
}

/* Adjust card padding when thumb is present */
.service-card:has(.service-card-thumb) {
  padding-top: 0;
}

/* ===================================================
   BRAND LOGO IMAGES — Real logos instead of text
   =================================================== */
.brand-item img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.5);
  opacity: 0.6;
  transition: all var(--transition-base);
}

.brand-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.12);
}

.brand-logo-img {
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: grayscale(50%);
  opacity: 0.7;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.brand-logo-img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-logos-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0;
}

/* ===================================================
   CTA BANNER — Background image overlay
   =================================================== */
.cta-banner {
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,16,20,0.94), rgba(90,18,18,0.90));
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

/* ===================================================
   RESPONSIVE — Slider mobile
   =================================================== */
@media (max-width: 768px) {
  .hero-slider { min-height: 540px; }
  .hero-stats-bar .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stats-bar .hero-stat { min-width: 100px; }
  .hero-slider-controls { bottom: 100px; }
  .service-card-thumb { height: 150px; }
  .hero-slide .hero-content { padding: 0 16px; }
  .hero-slide .hero-buttons { flex-direction: column; }
  .hero-slide .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ===================================================
   MEGA MENU — Premium Products with Icons8
   =================================================== */
.nav-dropdown-mega {
  position: static !important;
}

.nav-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-top: 3px solid var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  padding: 0;
}

.nav-dropdown-mega:hover .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px 28px 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.mega-col {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  border-right: 1px solid var(--border-light);
}
.mega-col:last-child { border-right: none; }

.mega-heading {
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  font-size: 12.5px !important;
  padding-bottom: 6px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid rgba(123, 26, 26, 0.08);
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.mega-heading:hover { color: var(--color-accent) !important; }
.mega-heading img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.mega-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  padding: 3px 0 3px 28px;
  position: relative;
  transition: all 0.2s ease;
  display: block;
  line-height: 1.4;
}
.mega-col a:not(.mega-heading)::before {
  content: '›';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transition: all 0.2s ease;
}
.mega-col a:not(.mega-heading):hover::before { opacity: 1; left: 10px; }
.mega-col a:not(.mega-heading):hover { color: var(--color-primary); padding-left: 32px; }

/* Dropdown positioning fix */
.nav-dropdown { position: relative; }
.nav-inner { position: relative; }

@media (max-width: 991px) {
  .nav-mega-menu { position: static; box-shadow: none; border-top: none; padding: 10px 0; display: none; }
  .nav-dropdown-mega:hover .nav-mega-menu { display: block; transform: none; }
  .mega-menu-inner { grid-template-columns: 1fr; gap: 12px; padding: 0 16px; }
  .mega-col { border-right: none; padding: 0; }
}

/* ===================================================
   SUBCATEGORY CARDS — Category Page Grid
   =================================================== */
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.subcat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.subcat-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.subcat-card:hover::after {
  transform: scaleY(1);
}

.subcat-card:hover {
  border-color: rgba(123, 26, 26, 0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.subcat-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(123, 26, 26, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.subcat-card-icon i {
  font-size: 20px;
  color: var(--color-primary);
}

.subcat-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.subcat-card-body p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.subcat-card-arrow {
  margin-left: auto;
  color: var(--color-accent);
  font-size: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.subcat-card:hover .subcat-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===================================================
   BRAND GRID — Category & Subcategory Pages
   =================================================== */
.brand-grid-cat {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.brand-chip-cat {
  padding: 14px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  transition: all 0.3s ease;
}

.brand-chip-cat:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(123, 26, 26, 0.08);
  transform: translateY(-2px);
}

.brand-chip-logo {
  max-height: 28px;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(60%);
  transition: filter 0.3s ease;
}

.brand-chip-cat:hover .brand-chip-logo {
  filter: grayscale(0%);
}

.brand-chip-fallback {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

/* ===================================================
   SUBCATEGORY PAGE — Hero & Layout
   =================================================== */
.subcat-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
}

.subcat-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,16,20,0.92), rgba(90,18,18,0.85));
}

.subcat-hero-content h1 {
  color: var(--text-white);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
  line-height: 1.2;
}

.subcat-hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
}

.subcat-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.subcat-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px;
}

.subcat-detail-card h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.subcat-detail-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Features Grid */
.subcat-features {
  margin-top: 36px;
}

.subcat-features h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.subcat-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.subcat-feature-item {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.subcat-feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.subcat-feature-icon {
  margin-bottom: 12px;
}

.subcat-feature-icon img {
  width: 36px;
  height: 36px;
}

.subcat-feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.subcat-feature-item p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Sidebar */
.subcat-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
}

.subcat-sidebar-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.subcat-sidebar-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.subcat-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subcat-related-list li {
  border-bottom: 1px solid var(--border-light);
}

.subcat-related-list li:last-child {
  border-bottom: none;
}

.subcat-related-list a {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.subcat-related-list a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}

/* Product Category Card Icons - use Icons8 images */
.product-category-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ===================================================
   PRODUCT CATALOG CARDS — Premium Grid
   =================================================== */
.catalog-header {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 20px;
}

.catalog-header-text h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-primary);
  position: relative;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.catalog-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.catalog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10), 0 0 0 1px rgba(123, 26, 26, 0.08);
}

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

.catalog-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-img-wrapper img.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: multiply;
}

.catalog-card:hover .catalog-img-wrapper img.product-img {
  transform: scale(1.08);
}

.catalog-brand-logo {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-brand-logo img {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.catalog-category-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--color-accent), #8b1a1a);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(123, 26, 26, 0.35);
  z-index: 2;
}

.catalog-body {
  padding: 22px 22px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.catalog-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.catalog-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-action {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.catalog-card:hover .catalog-action {
  color: var(--color-primary);
}

.catalog-action i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.catalog-card:hover .catalog-action i {
  transform: translateX(6px);
}

/* ===================================================
   SUBCATEGORY IMAGE CARDS — Category Page Overhaul
   =================================================== */
.subcat-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.subcat-img-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-light);
  position: relative;
}

.subcat-img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(123, 26, 26, 0.12);
  border-color: rgba(123, 26, 26, 0.2);
}

.subcat-img-header {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.subcat-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.subcat-img-card:hover .subcat-img-header img {
  transform: scale(1.08);
}

.subcat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,20,0.8) 0%, rgba(26,16,20,0.1) 100%);
  z-index: 1;
}

.subcat-img-icon {
  position: absolute;
  bottom: -20px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 4px solid var(--bg-card);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.subcat-img-icon i {
  color: var(--color-gold);
  font-size: 24px;
}

.subcat-img-card:hover .subcat-img-icon {
  background: var(--color-accent);
  transform: rotate(15deg);
}

.subcat-img-body {
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--bg-card);
  position: relative;
  z-index: 1;
}

.subcat-img-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.subcat-img-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.subcat-img-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.subcat-brand-stack {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.subcat-brand-pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(123, 26, 26, 0.06);
  padding: 4px 10px;
  border-radius: 20px;
}

.subcat-brand-more {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}

.subcat-img-action {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.subcat-img-action i {
  transition: transform 0.3s ease;
}

.subcat-img-card:hover .subcat-img-action i {
  transform: translateX(4px);
}

/* ===================================================
   RESPONSIVE — Mega Menu + Subcategory
   =================================================== */
@media (max-width: 991px) {
  .nav-mega-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    padding: 10px 0;
    display: none;
  }
  .nav-dropdown-mega:hover .nav-mega-menu,
  .nav-dropdown-mega.open .nav-mega-menu {
    display: block;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 16px;
  }
  .mega-col {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
  }
  .mega-menu-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 14px 16px;
  }
}

@media (max-width: 768px) {
  .subcat-grid { grid-template-columns: 1fr; }
  .subcat-layout { grid-template-columns: 1fr; }
  .subcat-features-grid { grid-template-columns: 1fr; }
  .subcat-hero { min-height: 300px; padding: 60px 0 40px; }
  .brand-grid-cat { grid-template-columns: repeat(3, 1fr); }
}

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

/* ==========================================================================
   RTL STYLES (ARABIC)
   ========================================================================== */
[dir="rtl"] {
  --font-body: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: right;
}

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

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] .nav-menu a, [dir="rtl"] .nav-logo-text, [dir="rtl"] .btn {
  font-family: var(--font-display);
}

/* General overrides for RTL */
[dir="rtl"] .text-left { text-align: right !important; }
[dir="rtl"] .text-right { text-align: left !important; }

/* Margins & Paddings */
[dir="rtl"] .ms-1, [dir="rtl"] .ms-2, [dir="rtl"] .ms-3, [dir="rtl"] .ms-4, [dir="rtl"] .ms-auto { margin-left: 0 !important; }
[dir="rtl"] .me-1, [dir="rtl"] .me-2, [dir="rtl"] .me-3, [dir="rtl"] .me-4, [dir="rtl"] .me-auto { margin-right: 0 !important; }

/* Topbar & Nav */
[dir="rtl"] .topbar-left { flex-direction: row; }
[dir="rtl"] .nav-dropdown-menu {
  left: auto;
  right: 0;
}
[dir="rtl"] .nav-cta {
  margin-inline-start: 16px;
  margin-left: 0;
  margin-right: 16px;
}
[dir="rtl"] .nav-menu a::after, 
[dir="rtl"] .nav-menu .nav-dropdown > span::after {
  left: 16px;
  right: 16px;
}

/* Breadcrumb */
[dir="rtl"] .breadcrumb span:not(.current) {
  transform: scaleX(-1);
  display: inline-block;
}

/* Icons */
[dir="rtl"] i.lni-arrow-right {
  transform: scaleX(-1);
}

/* ==========================================================================
   PROFESSIONAL SITE HEADER
   ========================================================================== */
.topbar {
  padding: 0;
  min-height: 42px;
  background: #241011;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar::before {
  background:
    linear-gradient(90deg, rgba(200, 150, 62, 0.08), transparent 34%),
    linear-gradient(270deg, rgba(39, 92, 58, 0.12), transparent 36%);
}

.topbar-inner { min-height: 42px; }
.topbar-left { gap: 0; align-self: stretch; }

.topbar-left > a,
.topbar-left > span {
  min-height: 42px;
  padding: 0 20px;
  gap: 10px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.09);
}

.topbar-left > :first-child { padding-inline-start: 0; }
.topbar-left a:hover { transform: none; background: rgba(255, 255, 255, 0.04); }

.topbar-left i {
  padding: 0;
  background: transparent;
  color: #d7ae5b;
  font-size: 15px;
}

.topbar-left a > span,
.topbar-left > span > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.2;
}

.topbar-left small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.topbar-right { gap: 18px; }

.topbar-location {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25px;
}

.topbar-location i { color: #d7ae5b; }

.lang-toggle {
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-toggle a {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
}

.main-nav {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #eee8e8;
  box-shadow: 0 8px 30px rgba(40, 18, 18, 0.06);
  backdrop-filter: blur(14px);
}

.main-nav.scrolled {
  box-shadow: 0 12px 36px rgba(40, 18, 18, 0.12);
  transform: none;
}

.nav-inner { height: 88px; gap: 26px; }
.nav-logo { flex: 0 0 auto; gap: 13px; }

.nav-logo img {
  height: 60px;
  filter: drop-shadow(0 5px 8px rgba(51, 22, 22, 0.12));
}

.nav-logo-text { min-width: 136px; line-height: 1; }
.nav-logo-text > div { font-size: 23px; }

.nav-logo-text small {
  display: block;
  margin-top: 7px;
  color: #716767;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu {
  flex: 1 1 auto;
  justify-content: center;
  gap: 2px;
}

.nav-menu a,
.nav-menu .nav-dropdown > span {
  padding: 12px 11px;
  border-radius: 6px;
  color: #30292a;
  font-size: 12px;
  letter-spacing: 0.45px;
}

.nav-menu a::after,
.nav-menu .nav-dropdown > span::after {
  bottom: 2px;
  left: 11px;
  right: 11px;
  background: linear-gradient(90deg, var(--color-primary), #c8963e);
}

.nav-cta { flex: 0 0 auto; }

.nav-cta .btn {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #8f2727;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(123, 26, 26, 0.2);
}

.nav-hamburger {
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #e5dede;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(51, 22, 22, 0.08);
}

.nav-hamburger span {
  width: 21px;
  height: 2px;
  background: var(--color-primary);
}

.nav-hamburger.active {
  border-color: rgba(123, 26, 26, 0.25);
  background: #f9f3f3;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(20, 10, 11, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(3px);
}

.nav-overlay.open { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

@media (max-width: 1180px) {
  .nav-inner { gap: 14px; }
  .nav-logo-text small { display: none; }
  .nav-logo-text { min-width: auto; }
  .nav-menu a,
  .nav-menu .nav-dropdown > span { padding-inline: 8px; font-size: 11px; }
  .nav-cta .btn { padding-inline: 15px; }
}

@media (max-width: 991px) {
  .topbar-left > .topbar-hours,
  .topbar-location { display: none; }

  .nav-inner { height: 76px; }
  .nav-logo img { height: 52px; }
  .nav-logo-text > div { font-size: 21px; }

  .nav-hamburger {
    display: flex;
    flex: 0 0 46px;
    order: 3;
  }

  .nav-cta {
    margin: 0 0 0 auto;
    order: 2;
  }

  .nav-cta .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 10px;
  }

  .nav-menu {
    position: fixed;
    inset: 0 -100% 0 auto;
    z-index: 999;
    width: min(380px, 88vw);
    height: 100dvh;
    padding: 92px 24px 32px;
    gap: 3px;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(123, 26, 26, 0.055), transparent 130px),
      #fff;
    border-inline-start: 1px solid rgba(123, 26, 26, 0.1);
    box-shadow: -24px 0 60px rgba(20, 10, 11, 0.18);
    transition: inset 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-menu::before {
    content: 'Navigation';
    position: absolute;
    top: 32px;
    inset-inline-start: 24px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
  }

  .nav-menu.open { inset-inline-end: 0; }

  .nav-menu > a,
  .nav-menu .nav-dropdown > span {
    min-height: 48px;
    padding: 0 13px;
    border: 0;
    border-bottom: 1px solid #eee8e8;
    border-radius: 5px;
    font-size: 13px;
  }

  .nav-menu > a:hover,
  .nav-menu > a.active,
  .nav-menu .nav-dropdown > span:hover {
    padding-inline-start: 17px;
    background: #f8f3f3;
  }

  .nav-menu a::after,
  .nav-menu .nav-dropdown > span::after { display: none; }

  .nav-dropdown > span i {
    margin-inline-start: auto;
    transition: transform 0.25s ease;
  }

  .nav-dropdown.open > span i { transform: rotate(180deg); }

  .nav-dropdown-menu,
  .nav-mega-menu {
    margin: 4px 0 10px;
    padding: 6px 0 6px 12px;
    border: 0;
    border-inline-start: 2px solid rgba(123, 26, 26, 0.16);
    background: #faf7f7;
    border-radius: 0 7px 7px 0;
  }

  .nav-dropdown-menu a {
    padding: 9px 13px;
    border: 0;
    font-size: 12px;
  }

  .nav-hamburger.active {
    position: relative;
    z-index: 1002;
  }
}

@media (max-width: 600px) {
  .topbar,
  .topbar-inner { min-height: 34px; }

  .topbar-left { display: flex; }
  .topbar-left > a,
  .topbar-left > span { display: none; }

  .topbar-left > a:first-child {
    display: flex;
    min-height: 34px;
    padding: 0;
    border: 0;
  }

  .topbar-left a:first-child > span {
    display: block;
    font-size: 10px;
  }

  .topbar-left small { display: none; }
  .topbar-right { width: auto; margin-inline-start: auto; }
  .lang-toggle a { padding: 3px 8px; font-size: 9px; }

  .nav-inner { height: 68px; gap: 9px; }
  .nav-logo { gap: 8px; min-width: 0; }
  .nav-logo img { height: 45px; }
  .nav-logo-text { min-width: 0; }

  .nav-logo-text > div {
    font-size: 18px;
    white-space: nowrap;
  }

  .nav-cta .btn {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 9px;
    letter-spacing: 0.8px;
  }

  .nav-hamburger {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .nav-menu {
    width: min(340px, 90vw);
    padding: 82px 18px 26px;
  }
}

/* ==========================================================================
   PRODUCT CATEGORY TABS & BRAND CARDS
   ========================================================================== */
#product-highlights .product-tabs {
  gap: 8px;
  margin-bottom: 36px;
  padding: 7px;
  border: 1px solid rgba(123, 26, 26, 0.08);
  border-radius: 12px;
  background: #f7f3f2;
}

#product-highlights .product-tab {
  flex: 1 1 150px;
  min-height: 45px;
  padding: 10px 14px;
  border-color: transparent;
  border-radius: 8px;
  background: transparent;
  font-size: 11px;
  letter-spacing: .8px;
}

#product-highlights .product-tab:hover {
  border-color: rgba(123, 26, 26, 0.12);
  background: #fff;
  color: var(--color-primary);
}

#product-highlights .product-tab.active {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary), #581313);
  box-shadow: 0 8px 18px rgba(123, 26, 26, 0.2);
  color: #fff;
}

#product-highlights .product-tab-content.active {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(123, 26, 26, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(200, 150, 62, 0.08), transparent 30%),
    #fff;
  box-shadow: 0 18px 50px rgba(63, 31, 31, 0.07);
}

#product-highlights .brand-logos-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(88px, 1fr));
  gap: 10px;
  padding: 18px 0 4px;
}

.brand-logo-card {
  min-width: 0;
  min-height: 92px;
  padding: 12px 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #ebe5e3;
  border-radius: 11px;
  background: linear-gradient(145deg, #fff, #faf8f7);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.brand-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(123, 26, 26, 0.2);
  box-shadow: 0 9px 22px rgba(56, 27, 27, 0.08);
}

.brand-logo-mark {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-card .brand-logo-img {
  width: auto;
  height: auto;
  max-width: 72px;
  max-height: 38px;
  margin: 0;
  border-radius: 0;
  filter: none;
  opacity: 1;
  object-fit: contain;
}

.brand-logo-card:hover .brand-logo-img {
  transform: scale(1.04);
}

.brand-logo-name {
  max-width: 100%;
  color: #554b4b;
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .7px;
  text-align: center;
  text-transform: uppercase;
}

.brand-logo-card.logo-unavailable .brand-logo-mark {
  display: none;
}

.brand-logo-card.logo-unavailable {
  min-height: 92px;
  background:
    linear-gradient(145deg, rgba(123, 26, 26, 0.04), rgba(200, 150, 62, 0.06)),
    #fff;
}

.brand-logo-card.logo-unavailable .brand-logo-name {
  font-size: 11px;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  #product-highlights .product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
  }

  #product-highlights .product-tab {
    min-height: 43px;
    font-size: 9.5px;
  }

  #product-highlights .product-tab:first-child {
    grid-column: 1 / -1;
  }

  #product-highlights .product-tab-content.active {
    padding: 22px 17px;
  }

  #product-highlights .brand-logos-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-logo-card {
    min-height: 86px;
  }
}

@media (max-width: 420px) {
  #product-highlights .brand-logos-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  #product-highlights {
    padding: 58px 0 64px;
    overflow: hidden;
    background:
      radial-gradient(circle at 100% 0, rgba(200, 150, 62, 0.1), transparent 30%),
      linear-gradient(180deg, #fff 0%, #faf7f5 100%);
  }

  #product-highlights .section-header {
    margin-bottom: 24px;
    text-align: left;
  }

  #product-highlights .section-label {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(123, 26, 26, 0.1);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(69, 31, 31, 0.05);
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  #product-highlights .section-title {
    margin-top: 13px;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.1;
    letter-spacing: -.7px;
  }

  #product-highlights .section-desc {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.65;
  }

  #product-highlights .product-tabs {
    display: flex;
    width: calc(100% + 18px);
    margin: 0 -18px 18px 0;
    padding: 4px 18px 13px 0;
    gap: 8px;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  #product-highlights .product-tabs::-webkit-scrollbar {
    display: none;
  }

  #product-highlights .product-tab,
  #product-highlights .product-tab:first-child {
    flex: 0 0 auto;
    min-width: 132px;
    min-height: 42px;
    padding: 9px 13px;
    grid-column: auto;
    border: 1px solid #e8dfdc;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(65, 31, 31, 0.05);
    color: #625758;
    font-size: 9.5px;
    letter-spacing: .55px;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  #product-highlights .product-tab.active {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary), #551313);
    box-shadow: 0 8px 20px rgba(123, 26, 26, 0.23);
    color: #fff;
  }

  #product-highlights .product-tab-content.active {
    padding: 0 0 20px;
    overflow: hidden;
    border: 1px solid rgba(123, 26, 26, 0.09);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(64, 31, 31, 0.09);
  }

  #product-highlights .product-tab-content .two-col {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  #product-highlights .product-tab-content .two-col > div:first-child {
    order: 2;
    padding: 23px 18px 0;
  }

  #product-highlights .product-tab-content .two-col > div:last-child {
    order: 1;
    position: relative;
    overflow: hidden;
  }

  #product-highlights .product-tab-content .two-col > div:last-child::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(25, 13, 16, 0.42));
    pointer-events: none;
  }

  #product-highlights .product-tab-content .two-col > div:last-child img {
    display: block;
    width: 100% !important;
    height: 190px !important;
    border-radius: 0 !important;
    object-fit: cover !important;
  }

  #product-highlights .product-tab-content h3 {
    margin-bottom: 9px !important;
    color: #2d2425;
    font-size: 23px !important;
    line-height: 1.18;
  }

  #product-highlights .product-tab-content h3::after {
    content: '';
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 11px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  }

  #product-highlights .product-tab-content p {
    margin-bottom: 13px !important;
    font-size: 12.5px;
    line-height: 1.65 !important;
  }

  #product-highlights .brand-logos-row {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: 82px;
    grid-auto-columns: 104px;
    width: calc(100% + 18px);
    margin-inline-end: -18px;
    padding: 8px 18px 13px 0;
    gap: 9px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  #product-highlights .brand-logos-row::-webkit-scrollbar {
    display: none;
  }

  #product-highlights .brand-logo-card {
    min-height: 82px;
    padding: 9px 6px 8px;
    gap: 5px;
    border-radius: 10px;
    scroll-snap-align: start;
  }

  #product-highlights .brand-logo-mark {
    height: 37px;
  }

  #product-highlights .brand-logo-card .brand-logo-img {
    max-width: 64px;
    max-height: 32px;
  }

  #product-highlights .brand-logo-name {
    font-size: 7.5px;
  }

  #product-highlights .product-tab-content .btn {
    width: 100%;
    min-height: 45px;
    margin-top: 12px !important;
    justify-content: center;
    border-radius: 9px;
    font-size: 10px;
  }
}

[dir="rtl"] #product-highlights .section-header {
  text-align: right;
}

@media (max-width: 370px) {
  .nav-logo-text { display: none; }
}

[dir="rtl"] .topbar-left a > span,
[dir="rtl"] .topbar-left > span > span { align-items: flex-end; }

[dir="rtl"] .nav-cta {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .nav-menu {
  inset: 0 auto 0 -100%;
  box-shadow: 24px 0 60px rgba(20, 10, 11, 0.18);
}

[dir="rtl"] .nav-menu.open {
  inset-inline-end: auto;
  inset-inline-start: 0;
}
[dir="rtl"] i.lni-chevron-right {
  transform: scaleX(-1);
}

/* Footer */
[dir="rtl"] .footer-col h4::after {
  left: auto;
  right: 0;
}
[dir="rtl"] .footer-links a::before {
  content: '‹';
  transform: none !important;
}
[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 6px;
}
[dir="rtl"] .footer-links a:hover::before {
  transform: translateX(-2px) !important;
}

/* Hero Section */
[dir="rtl"] .hero-content {
  text-align: right;
}

/* Specific grids */
[dir="rtl"] .about-story-experience {
  left: auto;
  right: -20px;
}
[dir="rtl"] .about-story-img-float {
  right: auto;
  left: -30px;
}
@media (max-width: 1024px) {
  [dir="rtl"] .about-story-experience { right: 10px; }
  [dir="rtl"] .about-story-img-float { left: 10px; }
}

/* Lists */
[dir="rtl"] .usp-list li {
  padding-left: 0;
  text-align: right;
}
[dir="rtl"] .exec-check-list li {
  text-align: right;
}

/* ==========================================================================
   MOBILE CLIENTS SHOWCASE
   ========================================================================== */
@media (max-width: 600px) {
  .clients-section {
    padding: 58px 0 54px;
    background:
      radial-gradient(circle at 100% 0, rgba(200, 150, 62, 0.12), transparent 34%),
      linear-gradient(180deg, #fbf8f6 0%, #ffffff 58%, #f7f3f1 100%);
  }

  .clients-section::before {
    top: -80px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 26, 26, 0.07), transparent 68%);
  }

  .clients-section::after {
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.09), transparent 68%);
  }

  .clients-section .section-header {
    margin-bottom: 25px;
    text-align: left;
  }

  .clients-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid rgba(123, 26, 26, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 5px 16px rgba(76, 34, 34, 0.05);
    font-size: 10px;
    letter-spacing: 1.25px;
  }

  .clients-section .section-title {
    max-width: 310px;
    margin-top: 13px;
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.7px;
  }

  .clients-section .section-desc {
    max-width: 335px;
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.65;
  }

  .clients-mobile-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 17px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
  }

  .clients-mobile-hint i {
    color: var(--color-gold);
    font-size: 13px;
    animation: clientsHint 1.7s ease-in-out infinite;
  }

  .clients-showcase {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 104px);
    grid-auto-columns: minmax(148px, 42vw);
    gap: 12px;
    width: calc(100% + 18px);
    margin-inline-end: -18px;
    padding: 4px 18px 20px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-items: stretch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .clients-showcase::-webkit-scrollbar {
    display: none;
  }

  .client-card {
    width: 100%;
    border-radius: 14px;
    scroll-snap-align: start;
    overflow: visible;
  }

  .client-card-inner {
    min-height: 104px;
    height: 104px;
    padding: 16px 14px;
    border: 1px solid rgba(123, 26, 26, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
      0 10px 26px rgba(66, 31, 31, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
  }

  .client-card:nth-child(4n + 2) .client-card-inner,
  .client-card:nth-child(4n + 3) .client-card-inner {
    background: linear-gradient(145deg, #ffffff, #fbf7f5);
  }

  .client-card-inner::after {
    content: '';
    position: absolute;
    inset: auto 18px 0;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(90deg, transparent, rgba(200, 150, 62, 0.65), transparent);
  }

  .client-card-inner img {
    max-width: 118px;
    max-height: 68px;
    filter: saturate(0.92) contrast(1.03);
  }

  .client-card:hover .client-card-inner {
    transform: none;
  }
}

@keyframes clientsHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

[dir="rtl"] .clients-section .section-header {
  text-align: right;
}

[dir="rtl"] .clients-mobile-hint i {
  transform: scaleX(-1);
  animation-name: clientsHintRtl;
}

@keyframes clientsHintRtl {
  0%, 100% { transform: scaleX(-1) translateX(0); }
  50% { transform: scaleX(-1) translateX(5px); }
}

/* ==========================================================================
   MOBILE HERO SLIDER
   ========================================================================== */
@media (max-width: 600px) {
  .hero-slider {
    min-height: 780px;
    height: auto;
    max-height: none;
    background: #1a1014;
  }

  .hero-slide {
    align-items: flex-start;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(20, 12, 15, 0.02) 0%,
      rgba(20, 12, 15, 0.02) 34%,
      rgba(20, 12, 15, 0.4) 52%,
      #1a1014 72%,
      #1a1014 100%
    );
    pointer-events: none;
  }

  .hero-slide-overlay {
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 38%,
      rgba(23, 13, 16, 0.16) 48%,
      rgba(23, 13, 16, 0.92) 70%,
      #1a1014 100%
    );
  }

  .hero-slide > .container {
    width: 100%;
    padding: 0 16px 151px;
    position: relative;
    z-index: 3;
  }

  .hero-slide .hero-content {
    margin-top: clamp(300px, 72vw, 390px);
    max-width: none;
    padding: 21px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(42, 20, 24, 0.78), rgba(24, 15, 18, 0.9));
    box-shadow:
      0 24px 55px rgba(8, 4, 5, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-slide.active .hero-content {
    animation: mobileSlideContentIn 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .hero-slide .hero-badge {
    margin-bottom: 13px;
    padding: 6px 10px;
    gap: 6px;
    border-radius: 999px;
    background: rgba(200, 150, 62, 0.14);
    font-size: 8.5px;
    letter-spacing: 1.45px;
  }

  .hero-slide .hero-badge i {
    font-size: 11px;
  }

  .hero-slide .hero-title {
    margin-bottom: 12px;
    font-size: clamp(28px, 8.3vw, 35px);
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .hero-slide .hero-title br {
    display: none;
  }

  .hero-slide .hero-title span {
    display: block;
    margin-top: 3px;
  }

  .hero-slide .hero-desc {
    max-width: none;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12.5px;
    line-height: 1.55;
  }

  .hero-slide .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 0;
  }

  .hero-slide .hero-buttons .btn {
    width: 100%;
    min-height: 43px;
    padding: 9px 8px;
    justify-content: center;
    gap: 6px;
    border-radius: 9px;
    font-size: 9px;
    letter-spacing: 0.65px;
    white-space: nowrap;
  }

  .hero-slide .hero-buttons .btn i {
    font-size: 12px;
  }

  .hero-slide .hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.32);
  }

  .hero-slider-controls {
    bottom: 107px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-slider-btn {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    backdrop-filter: none;
  }

  .hero-slider-dots {
    flex: 1;
    justify-content: center;
    gap: 6px;
  }

  .hero-slider-dot {
    width: 18px;
    height: 3px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
  }

  .hero-slider-dot.active {
    width: 38px;
    background: linear-gradient(90deg, #d2a34c, #f0cb7e);
    box-shadow: 0 0 14px rgba(200, 150, 62, 0.34);
  }

  .hero-stats-bar {
    padding: 15px 0 14px;
    background: rgba(20, 11, 14, 0.93);
    border-top: 1px solid rgba(200, 150, 62, 0.16);
    backdrop-filter: none;
  }

  .hero-stats-bar .container {
    padding-inline: 12px;
  }

  .hero-stats-bar .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .hero-stats-bar .hero-stat {
    min-width: 0;
    padding: 0 7px;
    text-align: center;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero-stats-bar .hero-stat:last-child {
    border-inline-end: 0;
  }

  .hero-stats-bar .hero-stat-number {
    font-size: 21px;
  }

  .hero-stats-bar .hero-stat-label {
    margin-top: 5px;
    font-size: 7px;
    line-height: 1.35;
    letter-spacing: 0.75px;
  }
}

@media (max-width: 360px) {
  .hero-slider {
    min-height: 800px;
  }

  .hero-slide > .container {
    padding-inline: 12px;
  }

  .hero-slide .hero-content {
    margin-top: clamp(270px, 72vw, 320px);
    padding: 18px 15px 15px;
  }

  .hero-slide .hero-title {
    font-size: 27px;
  }

  .hero-slide .hero-desc {
    font-size: 11.5px;
  }

  .hero-slide .hero-buttons {
    grid-template-columns: 1fr;
  }

  .hero-slide .hero-buttons .btn {
    min-height: 38px;
  }
}

@keyframes mobileSlideContentIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   MOBILE PRODUCT CATEGORIES - COMPACT REVISION
   ========================================================================== */
@media (max-width: 600px) {
  #product-highlights {
    padding: 52px 0 58px;
  }

  #product-highlights .section-header {
    margin-bottom: 20px;
  }

  #product-highlights .section-title {
    font-size: 29px;
  }

  #product-highlights .product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0 0 16px;
    padding: 6px;
    gap: 6px;
    overflow: visible;
    border: 1px solid rgba(123, 26, 26, 0.08);
    border-radius: 14px;
    background: #f4efed;
  }

  #product-highlights .product-tab,
  #product-highlights .product-tab:first-child {
    min-width: 0;
    min-height: 44px;
    width: 100%;
    padding: 8px 7px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: transparent;
    box-shadow: none;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: .35px;
    white-space: normal;
  }

  #product-highlights .product-tab:first-child {
    grid-column: 1 / -1;
  }

  #product-highlights .product-tab:not(.active) {
    color: #5d5253;
  }

  #product-highlights .product-tab.active {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary), #541313);
    box-shadow: 0 7px 16px rgba(123, 26, 26, 0.2);
  }

  #product-highlights .product-tab-content.active {
    padding: 12px;
    border-radius: 16px;
  }

  #product-highlights .product-tab-content .two-col {
    gap: 0;
    border-radius: 12px;
    background: #fff;
  }

  #product-highlights .product-tab-content .two-col > div:first-child {
    padding: 19px 6px 5px;
  }

  #product-highlights .product-tab-content .two-col > div:last-child {
    border-radius: 11px;
  }

  #product-highlights .product-tab-content .two-col > div:last-child img {
    height: 158px !important;
    border-radius: 11px !important;
  }

  #product-highlights .product-tab-content .two-col > div:last-child::after {
    height: 35%;
    border-radius: 0 0 11px 11px;
  }

  #product-highlights .product-tab-content h3 {
    font-size: 21px !important;
  }

  #product-highlights .product-tab-content p {
    margin-bottom: 12px !important;
    font-size: 12px;
    line-height: 1.6 !important;
  }

  #product-highlights .brand-logos-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-auto-columns: auto;
    width: 100%;
    margin: 0;
    padding: 6px 0 8px;
    gap: 8px;
    overflow: visible;
  }

  #product-highlights .brand-logo-card {
    min-height: 74px;
    padding: 8px 6px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 9px;
  }

  #product-highlights .brand-logo-mark {
    width: 43px;
    height: 36px;
    flex: 0 0 43px;
  }

  #product-highlights .brand-logo-card .brand-logo-img {
    max-width: 42px;
    max-height: 30px;
  }

  #product-highlights .brand-logo-name {
    flex: 1;
    font-size: 7.5px;
    text-align: left;
  }

  #product-highlights .brand-logo-card.logo-unavailable {
    min-height: 74px;
  }

  #product-highlights .brand-logo-card.logo-unavailable .brand-logo-name {
    font-size: 9px;
    text-align: center;
  }

  #product-highlights .product-tab-content .btn {
    min-height: 43px;
    margin-top: 8px !important;
  }

  /* Keep the content close to the fully visible mobile slider image. */
  .hero-slider {
    min-height: 690px;
  }

  .hero-slide .hero-content {
    margin-top: clamp(205px, 56vw, 250px);
  }
}

@media (max-width: 360px) {
  .hero-slider {
    min-height: 735px;
  }

  .hero-slide .hero-content {
    margin-top: clamp(185px, 55vw, 215px);
  }

  #product-highlights .brand-logos-row {
    grid-template-columns: 1fr;
  }
}

[dir="rtl"] #product-highlights .brand-logo-name {
  text-align: right;
}

/* ==========================================================================
   PROFESSIONAL FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 5% 10%, rgba(123, 26, 26, 0.18), transparent 30%),
    radial-gradient(circle at 95% 90%, rgba(27, 94, 32, 0.12), transparent 26%),
    #171014;
}

.site-footer > .container {
  padding-top: 64px;
}

.footer-grid {
  grid-template-columns: minmax(235px, 1.35fr) minmax(120px, .72fr) minmax(185px, 1fr) minmax(190px, 1fr) minmax(235px, 1.15fr);
  gap: clamp(26px, 3vw, 48px);
  align-items: start;
  padding-bottom: 52px;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  margin-bottom: 17px;
}

.footer-logo img {
  height: 58px;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.24));
}

.footer-logo-text {
  font-size: 23px;
  letter-spacing: .5px;
}

.footer-about p {
  max-width: 310px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.8;
}

.footer-social-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-social {
  gap: 9px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-social a:hover {
  border-color: rgba(200, 150, 62, 0.52);
  background: linear-gradient(145deg, var(--color-primary), #541313);
  color: #fff;
}

.footer-col h4 {
  margin-bottom: 21px;
  padding-bottom: 12px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.footer-col h4::after {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
}

.footer-links {
  display: grid;
  gap: 3px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  min-height: 32px;
  padding: 5px 0;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12.5px;
  line-height: 1.45;
}

.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border: 1px solid rgba(200, 150, 62, 0.75);
  border-radius: 50%;
  transition: all 0.25s ease;
}

[dir="rtl"] .footer-links a::before {
  content: '';
}

.footer-links a:hover {
  padding-inline-start: 5px;
}

.footer-links a:hover::before {
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(200, 150, 62, 0.1);
  transform: none;
}

.footer-contact {
  display: grid;
  gap: 7px;
}

.footer-contact li {
  margin: 0;
  padding: 4px 0;
  gap: 11px;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
  line-height: 1.55;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid rgba(200, 150, 62, 0.18);
  border-radius: 9px;
  background: rgba(200, 150, 62, 0.07);
  font-size: 13px;
}

.footer-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 43px;
  margin-top: 18px;
  padding: 10px 19px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 9px 22px rgba(90, 18, 18, 0.24);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.footer-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(90, 18, 18, 0.34);
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  text-align: start;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-light);
  font-size: 11px;
  text-decoration: none;
  transition: color .25s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

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

  .footer-about {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-about {
    grid-column: 1 / -1;
    grid-row: auto;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-about p {
    max-width: 580px;
  }
}

@media (max-width: 600px) {
  .site-footer > .container {
    padding-top: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
    padding-bottom: 38px;
  }

  .footer-about,
  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-logo img {
    height: 52px;
  }

  .footer-about p {
    font-size: 12.5px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-col h4 {
    min-height: 39px;
    margin-bottom: 15px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .footer-links a {
    min-height: 31px;
    font-size: 11.5px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-quote-btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
  }

  .footer-bottom-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
}
