/* ============================================================
   INSTRUCARE - Main Stylesheet
   Colors: Blue #1A6DB5 | Orange #F47920 | Dark #1a1a2e
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --blue: #1A6DB5;
  --blue-dark: #145a96;
  --blue-light: #e8f1fb;
  --orange: #F47920;
  --orange-dark: #d4651a;
  --orange-light: #fff3e8;
  --dark: #1a1a2e;
  --dark-2: #2d2d44;
  --gray: #6b7280;
  --gray-light: #f4f6f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(26,109,181,0.10);
  --shadow-lg: 0 8px 40px rgba(26,109,181,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-en: 'Montserrat', sans-serif;
  --font-body-en: 'Open Sans', sans-serif;
  --font-ar: 'Cairo', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body-en);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

body.lang-ar {
  font-family: var(--font-ar);
  direction: rtl;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  font-family: var(--font-en);
}

body.lang-ar .top-bar { font-family: var(--font-ar); }

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-bar-item:hover { color: var(--orange); }

.top-bar-item i {
  color: var(--orange);
  font-size: 12px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Social Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition);
  color: var(--white);
}

.social-icon.facebook { background: #1877F2; }
.social-icon.whatsapp { background: #25D366; }
.social-icon.linkedin { background: #0A66C2; }
.social-icon.youtube  { background: #FF0000; }

.social-icon:hover { transform: translateY(-2px); opacity: 0.9; }

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.lang-btn {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-family: var(--font-en);
}

.lang-btn.active {
  background: var(--orange);
  color: var(--white);
  border-radius: 20px;
}

.lang-btn:hover:not(.active) { color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; flex-shrink: 1; }

.nav-item { position: relative; flex-shrink: 0; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  font-family: var(--font-en);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

body.lang-ar .nav-link { font-family: var(--font-ar); font-size: 15px; }

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: var(--orange-light);
}

.nav-link i.chevron {
  font-size: 10px;
  transition: transform 0.3s;
}

.nav-item:hover .nav-link i.chevron,
.nav-item.open .nav-link i.chevron {
  transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Search Button */
.btn-search {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  color: var(--dark);
  font-size: 16px;
  transition: var(--transition);
}

.btn-search:hover {
  background: var(--blue-light);
  color: var(--blue);
}

/* Quote Button */
.btn-quote {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(244,121,32,0.3);
}

body.lang-ar .btn-quote { font-family: var(--font-ar); }

.btn-quote:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,121,32,0.4);
}

/* Mobile Menu Button */
.btn-mobile-menu {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--gray-light);
  color: var(--dark);
  font-size: 18px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-mobile-menu:hover { background: var(--blue-light); color: var(--blue); }

/* ============================================================
   MEGA DROPDOWN
   ============================================================ */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 999;
}

body.lang-ar .mega-dropdown {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

.nav-item:hover .mega-dropdown,
.nav-item.open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 4px);
}

.mega-dropdown-inner {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.mega-col {
  padding: 0 16px;
  border-right: 1px solid var(--border);
}

.mega-col:last-child { border-right: none; }
body.lang-ar .mega-col { border-right: none; border-left: 1px solid var(--border); }
body.lang-ar .mega-col:last-child { border-left: none; }

.mega-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}

.mega-col-header img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.mega-col-title {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-product-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  transition: var(--transition);
  margin-bottom: 2px;
}

.mega-product-link:hover {
  background: var(--orange-light);
}

.mega-product-link i {
  color: var(--orange);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

.mega-product-link span {
  font-size: 12px;
  color: var(--dark);
  line-height: 1.4;
  font-weight: 500;
  transition: var(--transition);
}

.mega-product-link:hover span { color: var(--orange); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.9);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.search-box {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.search-input-wrap input {
  flex: 1;
  padding: 18px 24px;
  font-size: 18px;
  border: none;
  outline: none;
  font-family: var(--font-en);
  color: var(--dark);
}

body.lang-ar .search-input-wrap input { font-family: var(--font-ar); direction: rtl; }

.search-input-wrap button {
  padding: 18px 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.search-input-wrap button:hover { background: var(--orange-dark); }

.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

body.lang-ar .search-close { right: auto; left: 24px; }

.search-close:hover { background: var(--orange); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  background: var(--dark);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.slide.active .slide-bg { transform: scale(1.06); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,26,46,0.88) 0%,
    rgba(26,109,181,0.55) 50%,
    rgba(244,121,32,0.15) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.slide-content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.slide-text { max-width: 52%; }

/* ── Slide Product Image ── */
.slide-product-img {
  flex-shrink: 0;
  width: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  transition: all 0.7s ease 0.5s;
}

body.lang-ar .slide-product-img {
  transform: translateX(-40px) scale(0.95);
}

.slide.active .slide-product-img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.slide-product-img-inner {
  position: relative;
  width: 600px;
  height: 600px;
}

/* Glowing ring behind the image */
.slide-product-img-inner::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,121,32,0.18) 0%, rgba(26,109,181,0.12) 60%, transparent 80%);
  animation: pulseRing 3s ease-in-out infinite;
}

/* Decorative orange arc */
.slide-product-img-inner::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(244,121,32,0.35);
  animation: spinSlow 20s linear infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.06); opacity: 0.7; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.slide-product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  z-index: 1;
}

.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,32,0.2);
  border: 1px solid rgba(244,121,32,0.4);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: var(--font-en);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}

body.lang-ar .slide-label { font-family: var(--font-ar); }

.slide-title {
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.4s;
}

body.lang-ar .slide-title { font-family: var(--font-ar); }

.slide-title span { color: var(--orange); }

.slide-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.55s;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.7s;
}

.slide.active .slide-label,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(244,121,32,0.4);
}

body.lang-ar .btn-primary { font-family: var(--font-ar); }

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244,121,32,0.5);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

body.lang-ar .btn-outline-white { font-family: var(--font-ar); }

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

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
body.lang-ar .slider-arrow.prev { left: auto; right: 24px; }
body.lang-ar .slider-arrow.next { right: auto; left: 24px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 340px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}

.slider-dot.active {
  width: 22px;
  border-radius: 3px;
  background: var(--orange);
}

/* Slider Counter */
.slider-counter {
  position: absolute;
  bottom: 28px;
  right: 32px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-en);
  z-index: 10;
}

body.lang-ar .slider-counter { right: auto; left: 32px; }

.slider-counter span { color: var(--orange); font-size: 18px; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--gray-light); }

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

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

body.lang-ar .section-label { font-family: var(--font-ar); letter-spacing: 0; }

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-en);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

body.lang-ar .section-title { font-family: var(--font-ar); }

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

.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--blue);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }
body.lang-ar .stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,0.15); }
body.lang-ar .stat-item:last-child { border-left: none; }

.stat-number {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span { color: var(--orange); }

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

body.lang-ar .stat-label { font-family: var(--font-ar); }

/* ============================================================
   BRANDS / PARTNERS
   ============================================================ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-item {
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  min-height: 100px;
}

.brand-item:last-child { border-right: none; }
body.lang-ar .brand-item { border-right: none; border-left: 1px solid var(--border); }
body.lang-ar .brand-item:last-child { border-left: none; }

.brand-item:hover { background: var(--blue-light); }

.brand-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.brand-item:hover img { filter: none; opacity: 1; }

.brand-item-text {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  color: var(--gray);
  text-align: center;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.brand-item:hover .brand-item-text { color: var(--blue); }

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray-light);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-brand {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-en);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body.lang-ar .product-card-brand { left: auto; right: 12px; }

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}

body.lang-ar .product-card-title { font-family: var(--font-ar); }

.product-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.btn-details {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-en);
  transition: var(--transition);
}

body.lang-ar .btn-details { font-family: var(--font-ar); }

.btn-details:hover { background: var(--blue); color: var(--white); }

.btn-quote-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-en);
  transition: var(--transition);
  gap: 6px;
}

body.lang-ar .btn-quote-sm { font-family: var(--font-ar); }

.btn-quote-sm:hover { background: var(--orange); color: var(--white); }

/* View All */
.text-center { text-align: center; }

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  margin-top: 40px;
  transition: var(--transition);
}

body.lang-ar .btn-view-all { font-family: var(--font-ar); }

.btn-view-all:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
}

.why-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-img-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 30px rgba(244,121,32,0.4);
}

body.lang-ar .why-badge { right: auto; left: -20px; }

.why-badge-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.why-badge-text {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}

.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }

.why-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-feature:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateX(6px);
}

body.lang-ar .why-feature:hover { transform: translateX(-6px); }

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
  background: var(--blue);
  color: var(--white);
}

.why-feature-title {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

body.lang-ar .why-feature-title { font-family: var(--font-ar); }

.why-feature-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

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

.footer-logo {
  margin-bottom: 16px;
  display: block;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

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

.footer-social .social-icon {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.footer-col-title {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

body.lang-ar .footer-col-title { font-family: var(--font-ar); }

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-link i {
  color: var(--orange);
  font-size: 10px;
  flex-shrink: 0;
}

.footer-link:hover { color: var(--orange); padding-left: 4px; }
body.lang-ar .footer-link:hover { padding-left: 0; padding-right: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

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

/* Map */
.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 12px;
  border: 2px solid rgba(255,255,255,0.1);
}

.footer-map iframe {
  width: 100%;
  height: 160px;
  border: none;
  display: block;
  filter: grayscale(30%);
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom span { color: var(--orange); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 9998;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  box-shadow: 4px 0 40px rgba(0,0,0,0.15);
  overflow-y: auto;
}

body.lang-ar .mobile-menu {
  left: auto;
  right: 0;
  transform: translateX(100%);
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}

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

body.lang-ar .mobile-menu.open {
  transform: translateX(0) !important;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

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

.mobile-menu-header img { height: 40px; }

.btn-close-mobile {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--gray-light);
  color: var(--dark);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav { padding: 16px 0; }

.mobile-nav-item { border-bottom: 1px solid var(--border); }

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

body.lang-ar .mobile-nav-link { font-family: var(--font-ar); }

.mobile-nav-link:hover { color: var(--orange); background: var(--orange-light); }

.mobile-nav-link i { transition: transform 0.3s; font-size: 12px; }

.mobile-nav-item.open .mobile-nav-link i { transform: rotate(180deg); }

.mobile-submenu {
  display: none;
  padding: 8px 0;
  background: var(--gray-light);
}

.mobile-submenu-col {
  padding: 10px 20px;
}

.mobile-submenu-brand {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-family: var(--font-en);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.mobile-product-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--dark);
  transition: var(--transition);
}

.mobile-product-link i { color: var(--orange); font-size: 9px; }
.mobile-product-link:hover { color: var(--orange); }

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
}

.mobile-quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

body.lang-ar .mobile-quote-btn { font-family: var(--font-ar); }

.mobile-quote-btn:hover { background: var(--orange-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .mega-dropdown { width: 780px; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .slide-product-img { width: 480px; }
  .slide-product-img-inner { width: 440px; height: 440px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .btn-mobile-menu { display: flex; }
  .btn-quote span { display: none; }
  .hero-slider { height: 540px; }
  /* Slide image: smaller on tablet */
  .slide-product-img { width: 360px; }
  .slide-product-img-inner { width: 330px; height: 330px; }
  .slide-text { max-width: 58%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 16px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  body.lang-ar .stat-item:nth-child(odd) { border-right: none; border-left: 1px solid rgba(255,255,255,0.15); }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .top-bar-left { display: none; }
  .hero-slider { height: 640px; }

  /* Stack: image top, text bottom */
  .slide-content .container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
  }

  /* Image — bigger and centered */
  .slide-text { max-width: 100%; text-align: center; }
  .slide-product-img {
    width: 100%;
    max-width: 360px;
    order: -1;
    transform: none !important;
    display: flex;
    justify-content: center;
  }
  .slide-product-img-inner { width: 340px; height: 340px; }

  /* Text */
  .slide-title { font-size: 22px; }
  .slide-label { justify-content: center; }
  .slide-desc { display: none; }
  .slide-actions {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary, .btn-outline-white { padding: 11px 18px; font-size: 13px; }

  /* Arrows — centered on the image (image is 340px, starts at top ~16px) */
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
    top: 235px;
    transform: translateY(-50%);
  }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
  body.lang-ar .slider-arrow.prev { left: auto; right: 8px; }
  body.lang-ar .slider-arrow.next { right: auto; left: 8px; }

  /* Dots — centered, enough space */
  .slider-dots {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90vw;
    justify-content: center;
  }

  /* Counter */
  .slider-counter {
    bottom: 20px;
    right: 12px;
    font-size: 12px;
  }

  /* Layout */
  .section { padding: 56px 0; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PAGE HERO (About / Contact)
   ============================================================ */
.page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg { transform: scale(1.0); }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,26,46,0.92) 0%,
    rgba(26,109,181,0.60) 60%,
    rgba(244,121,32,0.20) 100%
  );
}

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

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,32,0.2);
  border: 1px solid rgba(244,121,32,0.4);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-family: var(--font-en);
}

body.lang-ar .page-hero-label { font-family: var(--font-ar); letter-spacing: 0; }

.page-hero-title {
  font-family: var(--font-en);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

body.lang-ar .page-hero-title { font-family: var(--font-ar); }
.page-hero-title span { color: var(--orange); }

.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-en);
}

body.lang-ar .breadcrumb { font-family: var(--font-ar); }

.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 10px; }
.breadcrumb span { color: var(--orange); }

/* ============================================================
   ABOUT — INTRO SPLIT
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-img {
  position: relative;
}

.about-intro-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-intro-img-float {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border: 4px solid var(--white);
}

body.lang-ar .about-intro-img-float { right: auto; left: -28px; }

.about-intro-img-float img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.about-intro-tag {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(244,121,32,0.4);
  text-align: center;
  line-height: 1.3;
}

body.lang-ar .about-intro-tag { left: auto; right: -16px; }

.about-intro-text {}

.about-intro-text .section-title { text-align: left; }
body.lang-ar .about-intro-text .section-title { text-align: right; }

.about-intro-lead {
  font-size: 17px;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-intro-body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
}

.about-check-item i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   MISSION / VISION / VALUES  (Photo Cards)
   ============================================================ */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

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

.mvv-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

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

.mvv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,46,0.96) 0%,
    rgba(26,26,46,0.6) 50%,
    rgba(26,26,46,0.1) 100%
  );
  transition: var(--transition);
}

.mvv-card:hover .mvv-card-overlay {
  background: linear-gradient(
    to top,
    rgba(26,109,181,0.95) 0%,
    rgba(26,109,181,0.55) 50%,
    rgba(26,26,46,0.15) 100%
  );
}

.mvv-card-body {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
}

.mvv-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-family: var(--font-en);
}

body.lang-ar .mvv-card-tag { font-family: var(--font-ar); letter-spacing: 0; }

.mvv-card-title {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

body.lang-ar .mvv-card-title { font-family: var(--font-ar); }

.mvv-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.mvv-card:hover .mvv-card-text {
  max-height: 200px;
  opacity: 1;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--orange));
  border-radius: 3px;
}

body.lang-ar .timeline::before { left: 50%; }

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 48px;
  align-items: center;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
  transform: translateY(-4px);
}

.timeline-content-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.timeline-content-body {
  padding: 20px 24px;
}

.timeline-year-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.timeline-content-title {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

body.lang-ar .timeline-content-title { font-family: var(--font-ar); }

.timeline-content-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  z-index: 2;
  flex-shrink: 0;
}

/* Odd items: content left, empty right */
.timeline-item:nth-child(odd) .timeline-left  { grid-column: 1; }
.timeline-item:nth-child(odd) .timeline-right { visibility: hidden; }

/* Even items: empty left, content right */
.timeline-item:nth-child(even) .timeline-left  { visibility: hidden; }
.timeline-item:nth-child(even) .timeline-right { grid-column: 3; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.team-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,109,181,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  gap: 10px;
}

.team-card:hover .team-card-overlay { opacity: 1; }

.team-card-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.team-card-social:hover { background: var(--orange); color: var(--white); }

.team-card-body {
  padding: 18px 20px;
  text-align: center;
}

.team-card-name {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

body.lang-ar .team-card-name { font-family: var(--font-ar); }

.team-card-role {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
}

/* ============================================================
   CERTIFICATES / AWARDS
   ============================================================ */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cert-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.cert-card-img {
  height: 200px;
  overflow: hidden;
}

.cert-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.cert-card-body {
  padding: 16px 20px;
}

.cert-card-title {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

body.lang-ar .cert-card-title { font-family: var(--font-ar); }

.cert-card-sub {
  font-size: 12px;
  color: var(--gray);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

/* Contact Info Side */
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.contact-info-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.contact-info-body {
  padding: 32px;
}

.contact-info-title {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

body.lang-ar .contact-info-title { font-family: var(--font-ar); }

.contact-info-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

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

.contact-info-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(244,121,32,0.15);
  border: 1px solid rgba(244,121,32,0.25);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-item-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-family: var(--font-en);
}

body.lang-ar .contact-info-item-label { font-family: var(--font-ar); letter-spacing: 0; }

.contact-info-item-value {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-info-item-value a { color: inherit; transition: var(--transition); }
.contact-info-item-value a:hover { color: var(--orange); }

.contact-info-socials {
  display: flex;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-info-socials .social-icon {
  width: 38px;
  height: 38px;
  font-size: 14px;
}

/* Contact Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

/* Forms Side */
.contact-forms {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-form-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-form-header-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-form-header-icon.blue { background: var(--blue-light); color: var(--blue); }
.contact-form-header-icon.orange { background: var(--orange-light); color: var(--orange); }

.contact-form-header-title {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}

body.lang-ar .contact-form-header-title { font-family: var(--font-ar); }

.contact-form-header-sub {
  font-size: 13px;
  color: var(--gray);
}

.contact-form-body {
  padding: 28px 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-en);
}

body.lang-ar .form-label { font-family: var(--font-ar); }

.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body-en);
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  background: var(--white);
  width: 100%;
}

body.lang-ar .form-control { font-family: var(--font-ar); direction: rtl; }

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,109,181,0.1);
}

.form-control::placeholder { color: #b0b8c4; }

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

select.form-control { cursor: pointer; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

body.lang-ar .btn-submit { font-family: var(--font-ar); }

.btn-submit.blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,109,181,0.3);
}

.btn-submit.blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,109,181,0.4);
}

.btn-submit.orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,121,32,0.3);
}

.btn-submit.orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,121,32,0.4);
}

/* ============================================================
   RESPONSIVE — ABOUT & CONTACT
   ============================================================ */
@media (max-width: 1024px) {
  .mvv-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid .mvv-card:last-child { grid-column: span 2; max-height: 320px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .about-intro { gap: 40px; }
}

@media (max-width: 768px) {
  .page-hero { height: 320px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-img { display: none; }
  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-grid .mvv-card:last-child { grid-column: 1; }
  .mvv-card { min-height: 300px; }
  .mvv-card-text { max-height: 200px; opacity: 1; }
  .timeline::before { left: 22px; }
  body.lang-ar .timeline::before { left: auto; right: 22px; }
  .timeline-item { grid-template-columns: 44px 1fr; gap: 16px; }
  .timeline-item:nth-child(even) .timeline-left { visibility: visible; }
  .timeline-item:nth-child(odd) .timeline-right { visibility: hidden; display: none; }
  .timeline-item:nth-child(even) .timeline-right { grid-column: 2; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-header { padding: 20px 20px; }
  .contact-form-body { padding: 20px 20px; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-40 { margin-top: 40px; }
.mt-16 { margin-top: 16px; }
.hidden { display: none !important; }

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
