/* =====================================================
   هلا سيستم - HALA SYSTEMS
   Professional Company Profile Stylesheet
   Inspired by durataljuman.com design language
   ===================================================== */

/* ─── Google Fonts Import ─── */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── CSS Variables / Design Tokens ─── */
:root {
  /* Primary Colors */
  --c-green-dark: #006C35;
  --c-green-mid: #0B8457;
  --c-green-light: #10B981;
  --c-green-mint: #D1FAE5;
  --c-green-bg: #DCE8DD;

  /* Accent */
  --c-gold: #C5A059;
  --c-gold-light: #D4AF37;

  /* Neutrals */
  --c-slate-900: #0F172A;
  --c-slate-800: #1E293B;
  --c-slate-700: #334155;
  --c-slate-600: #475569;
  --c-slate-500: #64748B;
  --c-slate-400: #94A3B8;
  --c-slate-300: #CBD5E1;
  --c-slate-200: #E2E8F0;
  --c-slate-100: #F1F5F9;
  --c-slate-50: #F8FAFC;

  /* Backgrounds */
  --c-bg-warm: #F4F6EE;
  --c-bg-warm-alt: #EAEFE3;
  --c-bg-white: #FFFFFF;
  --c-bg-dark: #0A140E;
  --c-bg-dark-card: rgba(10, 20, 14, 0.88);

  /* Typography */
  --font-ar: 'IBM Plex Sans Arabic', 'Segoe UI', sans-serif;
  --font-en: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 75px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 8px 30px rgba(0, 108, 53, 0.15);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-ar);
  color: var(--c-slate-700);
  background-color: var(--c-bg-white);
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  direction: rtl;
}

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: var(--c-slate-900);
  line-height: 1.3;
}

/* ─── 0. Page Preloader (Ultra-Modern 3D Intro & Reveal) ─── */
.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 45%, #ffffff 0%, #f6faf7 60%, #eaf2ed 100%);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  animation: preloaderCssSafetyFallback 0.8s ease 3.6s forwards;
}

.page-preloader.loaded {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(1.08) !important;
}

@keyframes preloaderCssSafetyFallback {
  0% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Ambient Radial Glow */
.preloader-ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(0, 108, 53, 0.05) 50%, transparent 70%);
  filter: blur(40px);
  animation: preloaderAmbientPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes preloaderAmbientPulse {
  0% { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

.preloader-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;
}

/* 3D Orbit System */
.preloader-orbit-system {
  position: relative;
  width: 154px;
  height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer Orbit Ring */
.orbit-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(0, 108, 53, 0.25);
  animation: orbitSpinClockwise 12s linear infinite;
}

.orbit-ring-outer::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 10px var(--c-gold);
  transform: translateX(-50%);
}

/* Inner Gradient Ring */
.orbit-ring-inner {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, transparent 20%, #006C35 50%, #10B981 75%, #C5A059 95%, transparent);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 2px));
  animation: orbitSpinCounter 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes orbitSpinClockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes orbitSpinCounter {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* Core Halo Disk */
.preloader-core-halo {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(0, 70, 35, 0.12),
              0 0 0 1px rgba(0, 108, 53, 0.08),
              inset 0 0 20px rgba(0, 108, 53, 0.04);
  z-index: 1;
}

/* 3D Spinning Logo */
.preloader-logo-3d {
  position: relative;
  z-index: 2;
  perspective: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-brand-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  animation: preloaderLogoSpin3D 2.2s cubic-bezier(0.35, 0, 0.25, 1) infinite;
  transform-style: preserve-3d;
}

@keyframes preloaderLogoSpin3D {
  0% {
    transform: rotateY(0deg) scale(0.92);
    filter: drop-shadow(0 6px 12px rgba(0, 108, 53, 0.18));
  }
  50% {
    transform: rotateY(180deg) scale(1.08);
    filter: drop-shadow(0 14px 28px rgba(0, 108, 53, 0.35));
  }
  100% {
    transform: rotateY(360deg) scale(0.92);
    filter: drop-shadow(0 6px 12px rgba(0, 108, 53, 0.18));
  }
}

/* Typography & Status Section */
.preloader-text-system {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.preloader-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-brand-title {
  font-family: var(--font-ar);
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #005027 0%, #006C35 60%, #0B8457 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.preloader-brand-sub {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ─── Utility Classes ─── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 108, 53, 0.08);
  color: var(--c-green-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--c-green-dark);
  border-radius: 50%;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--c-slate-900);
  margin-bottom: 16px;
  line-height: 1.35;
}

.section-subtitle {
  font-size: 17px;
  color: var(--c-slate-500);
  max-width: 650px;
  line-height: 1.8;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

.gold-accent {
  color: var(--c-gold);
}

.green-accent {
  color: var(--c-green-dark);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-ar);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-green-dark);
  color: #fff;
  border-color: var(--c-green-dark);
}

.btn-primary:hover {
  background: #005027;
  border-color: #005027;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-gold {
  background: var(--c-gold);
  color: #fff;
  border-color: var(--c-gold);
}

.btn-gold:hover {
  background: #B08A40;
  border-color: #B08A40;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--c-green-dark);
  border-color: var(--c-green-dark);
}

.btn-outline:hover {
  background: var(--c-green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--c-green-dark);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--c-bg-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   1. NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  padding: 12px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--c-slate-200);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 8px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.navbar-brand .brand-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-base);
  filter: drop-shadow(0 3px 8px rgba(0, 108, 53, 0.15));
}

.navbar.scrolled .navbar-brand .brand-logo {
  height: 46px;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--c-green-dark);
  letter-spacing: -0.3px;
}

.brand-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.8px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav a {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-slate-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--c-green-dark);
  background: rgba(0, 108, 53, 0.06);
}

.navbar-vision {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-vision .vision-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-base);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.06));
}

.navbar.scrolled .navbar-vision .vision-logo-img {
  height: 42px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--c-slate-900);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* ═══════════════════════════════════════════════════
   2. HERO SECTION (Enterprise Corporate Profile)
   ═══════════════════════════════════════════════════ */
.hero {
  padding: 110px 0 50px;
  background: 
    radial-gradient(circle at 12% 20%, rgba(0, 108, 53, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(197, 160, 89, 0.07) 0%, transparent 45%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFCF8 45%, #F4F8F1 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 108, 53, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.85;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
}

/* Pill Badge */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(0, 108, 53, 0.07);
  border: 1px solid rgba(0, 108, 53, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-green-dark);
  margin-bottom: 20px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-company-name {
  font-size: 50px;
  font-weight: 900;
  color: var(--c-slate-900);
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--c-green-dark), #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero-company-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 18px;
  line-height: 1.45;
}

.hero-description {
  font-size: 16px;
  color: var(--c-slate-600);
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 580px;
}

/* Action Buttons Row */
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 34px;
}

.btn-primary.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 108, 53, 0.25);
}

.btn-download-profile {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--c-slate-800);
  background: #FFFFFF;
  border: 1.5px solid var(--c-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
}

.btn-download-profile:hover {
  background: var(--c-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.btn-download-profile svg {
  width: 18px;
  height: 18px;
  color: var(--c-gold);
  transition: color var(--transition-base);
}

.btn-download-profile:hover svg {
  color: #FFFFFF;
}

.btn-outline-clean {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-green-dark);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-outline-clean:hover {
  background: rgba(0, 108, 53, 0.08);
  transform: translateX(-3px);
}

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

/* Trust Grid Strip (3 Columns) */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 108, 53, 0.12);
}

.trust-grid-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-grid-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 108, 53, 0.08);
  border: 1px solid rgba(0, 108, 53, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-grid-icon svg {
  width: 19px;
  height: 19px;
  color: var(--c-green-dark);
}

.trust-grid-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-grid-info strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-slate-900);
}

.trust-grid-info span {
  font-size: 11px;
  color: var(--c-slate-500);
}

/* ═══════════════════════════════════════════════════
   CORPORATE HERO SHOWCASE (Left Column)
   ═══════════════════════════════════════════════════ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.corporate-hero-showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-glow-ring {
  position: absolute;
  width: 96%;
  height: 96%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(0, 108, 53, 0.06) 50%, transparent 70%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 1;
}

.showcase-main-disc {
  position: relative;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: linear-gradient(145deg, #FFFFFF 0%, #F5F9F1 50%, #E9F1E2 100%);
  box-shadow: 
    0 25px 60px rgba(0, 50, 25, 0.12),
    0 0 0 1px rgba(0, 108, 53, 0.1),
    inset 0 0 0 8px rgba(255, 255, 255, 0.8),
    inset 0 0 0 10px rgba(197, 160, 89, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition: transform var(--transition-slow);
  animation: disc-float 7s ease-in-out infinite alternate;
}

.corporate-hero-showcase:hover .showcase-main-disc {
  transform: translateY(-6px) scale(1.01);
}

.showcase-tech-img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  border-radius: 50%;
}

@keyframes disc-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Floating Badge 1: Top ZATCA */
.showcase-badge-top {
  position: absolute;
  top: 25px;
  left: 15px;
  background: #0A1C12;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 5;
  animation: badge-float-a 4s ease-in-out infinite alternate;
}

.badge-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon-wrap svg {
  width: 17px;
  height: 17px;
  color: #10B981;
}

.badge-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.badge-headline {
  font-size: 11.5px;
  font-weight: 800;
  color: #FFFFFF;
}

.badge-subline {
  font-size: 9.5px;
  font-weight: 600;
  color: #10B981;
}

/* Floating Badge 2: Brand Card (Bottom Left, like Durrat Al Juman) */
.showcase-badge-brand {
  position: absolute;
  bottom: 20px;
  left: 0px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(197, 160, 89, 0.4);
  border-radius: 14px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 36px rgba(0, 50, 25, 0.14);
  z-index: 5;
  animation: badge-float-b 5s ease-in-out infinite alternate;
}

.brand-badge-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand-badge-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-badge-name {
  font-size: 14px;
  font-weight: 900;
  color: var(--c-green-dark);
}

.brand-badge-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--c-gold);
}

/* Floating Badge 3: Clients Badge (Bottom Right) */
.showcase-badge-clients {
  position: absolute;
  bottom: 30px;
  right: 5px;
  background: var(--c-green-dark);
  color: #FFFFFF;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  box-shadow: 0 14px 32px rgba(0, 108, 53, 0.35);
  z-index: 5;
  animation: badge-float-a 4.5s ease-in-out infinite alternate;
}

.clients-badge-number {
  font-size: 20px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.clients-badge-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  white-space: nowrap;
}

@keyframes badge-float-a {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes badge-float-b {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════════════
   3. STATS COUNTER
   ═══════════════════════════════════════════════════ */
.stats {
  background: linear-gradient(135deg, var(--c-green-dark), #004D27);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  opacity: 0.85;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: 8px;
  color: #fff;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.85;
  color: #fff;
}

/* ═══════════════════════════════════════════════════
   4. ABOUT US
   ═══════════════════════════════════════════════════ */
.about {
  padding: var(--section-padding);
  background: var(--c-bg-warm);
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image-card,
.about-logo-card {
  position: relative;
  background: var(--c-bg-white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px -12px rgba(15, 81, 50, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.about-image-card:hover,
.about-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px -15px rgba(15, 81, 50, 0.24), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.about-image-card img,
.about-logo-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.about-content .section-title {
  position: relative;
  padding-right: 20px;
}

.about-content .section-title::before {
  content: '';
  position: absolute;
  right: 0;
  top: 6px;
  width: 4px;
  height: 32px;
  background: var(--c-green-dark);
  border-radius: 2px;
}

.about-text {
  font-size: 16px;
  color: var(--c-slate-600);
  line-height: 2;
  margin-bottom: 28px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-slate-700);
  padding: 12px 16px;
  background: var(--c-bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-slate-200);
}

.value-item svg {
  width: 20px;
  height: 20px;
  color: var(--c-green-dark);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   5. VISION & MISSION
   ═══════════════════════════════════════════════════ */
.vision-mission {
  padding: var(--section-padding);
  position: relative;
  background: var(--c-bg-dark);
  overflow: hidden;
}

.vision-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 108, 53, 0.15), rgba(10, 20, 14, 0.95));
  z-index: 1;
}

.vision-mission .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.vision-mission .container {
  position: relative;
  z-index: 2;
}

.vision-mission .section-header {
  color: #fff;
}

.vision-mission .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-green-light);
}

.vision-mission .section-label::before {
  background: var(--c-green-light);
}

.vision-mission .section-title {
  color: #fff;
}

.vision-mission .section-subtitle {
  color: var(--c-slate-400);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vm-card {
  background: var(--c-bg-dark-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: transform var(--transition-base);
}

.vm-card:hover {
  transform: translateY(-4px);
}

.vm-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vm-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--c-green-light);
}

.vm-card h3 {
  color: var(--c-green-light);
  font-size: 22px;
  margin-bottom: 16px;
}

.vm-card p {
  color: var(--c-slate-300);
  font-size: 15px;
  line-height: 2;
  padding-right: 16px;
  border-right: 3px solid var(--c-gold);
}

/* ═══════════════════════════════════════════════════
   6. SERVICES
   ═══════════════════════════════════════════════════ */
.services {
  padding: var(--section-padding);
  background: var(--c-bg-white);
}

/* ═══════════════════════════════════════════════════
   6. PROJECTS & SYSTEMS CAROUSEL
   ═══════════════════════════════════════════════════ */
.services {
  padding: var(--section-padding);
  background: #f8fbf9;
  position: relative;
}

.projects-carousel-wrapper {
  position: relative;
  margin-top: 10px;
}

.projects-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.projects-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.proj-filter-btn {
  background: #ffffff;
  border: 1px solid #d8e5de;
  color: var(--c-slate-600);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.proj-filter-btn:hover,
.proj-filter-btn.active {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 108, 53, 0.25);
}

/* Side navigation arrows positioned on both sides */
.carousel-side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #d8e5de;
  color: var(--c-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 70, 35, 0.14);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.carousel-side-arrow.prev {
  right: -24px;
}

.carousel-side-arrow.next {
  left: -24px;
}

.carousel-side-arrow svg {
  width: 22px;
  height: 22px;
}

.carousel-side-arrow:hover {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 108, 53, 0.28);
}

.carousel-side-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

@media (max-width: 1240px) {
  .carousel-side-arrow.prev {
    right: -10px;
  }
  .carousel-side-arrow.next {
    left: -10px;
  }
}

@media (max-width: 768px) {
  .carousel-side-arrow {
    width: 42px;
    height: 42px;
  }
  .carousel-side-arrow.prev {
    right: -4px;
  }
  .carousel-side-arrow.next {
    left: -4px;
  }
}

.projects-carousel-viewport {
  overflow: hidden;
  padding: 12px 6px 24px;
  cursor: grab;
  user-select: none;
}

.projects-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.projects-carousel-track {
  display: flex;
  gap: 26px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
}

.project-carousel-card {
  flex: 0 0 calc((100% - 52px) / 3);
  max-width: calc((100% - 52px) / 3);
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e1eee6;
  box-shadow: 0 6px 22px rgba(0, 70, 35, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-carousel-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-green-dark);
  box-shadow: 0 20px 42px -10px rgba(0, 108, 53, 0.18);
}

.proj-card-visual {
  height: 205px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
}

.proj-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.project-carousel-card:hover .proj-card-img {
  transform: scale(1.08);
}

.proj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.72) 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.project-carousel-card:hover .proj-card-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.55) 100%);
}

.proj-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.proj-card-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.proj-card-code {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 11.5px;
  font-family: var(--font-en);
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  z-index: 3;
}

.proj-card-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
  z-index: 3;
}

.project-carousel-card:hover .proj-card-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}

.proj-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.proj-card-sector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--c-green-dark);
  background: rgba(0, 108, 53, 0.07);
  padding: 4px 11px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  width: fit-content;
}

.proj-card-sector svg {
  width: 13px;
  height: 13px;
  stroke: var(--c-green-dark);
  flex-shrink: 0;
}

.proj-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-slate-900);
  line-height: 1.45;
  margin-bottom: 10px;
  min-height: 48px;
}

.proj-card-desc {
  font-size: 13.5px;
  color: var(--c-slate-600);
  line-height: 1.75;
  margin-bottom: 18px;
}

.proj-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proj-card-features li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-slate-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.proj-card-features li svg {
  width: 15px;
  height: 15px;
  color: var(--c-green-dark);
  flex-shrink: 0;
}

.proj-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 18px;
  border-radius: 12px;
  background: rgba(0, 108, 53, 0.08);
  color: var(--c-green-dark);
  border: 1.5px solid rgba(0, 108, 53, 0.2);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.proj-card-action svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}

.project-carousel-card:hover .proj-card-action {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 108, 53, 0.25);
}

.project-carousel-card:hover .proj-card-action svg {
  transform: translateX(-4px);
}

.projects-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbdcd2;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.carousel-dot.active {
  width: 32px;
  border-radius: 10px;
  background: var(--c-green-dark);
  box-shadow: 0 2px 8px rgba(0, 108, 53, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .project-carousel-card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .project-carousel-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .projects-carousel-nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .projects-carousel-arrows {
    align-self: flex-end;
  }
}

/* ═══════════════════════════════════════════════════
   7. WHY CHOOSE US
   ═══════════════════════════════════════════════════ */
.why-us {
  padding: var(--section-padding);
  background: var(--c-bg-warm);
}

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

.why-card {
  background: var(--c-bg-white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--c-slate-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-green-light);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  background: var(--c-green-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--c-green-dark);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--c-slate-900);
}

.why-card p {
  font-size: 14px;
  color: var(--c-slate-500);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   8. TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-padding);
  background: var(--c-bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--c-bg-white);
  border: 1px solid var(--c-slate-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--c-gold-light);
  fill: var(--c-gold-light);
}

.testimonial-text {
  font-size: 15px;
  color: var(--c-slate-600);
  line-height: 1.9;
  margin-bottom: 24px;
  position: relative;
  padding-right: 16px;
  border-right: 3px solid var(--c-green-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--c-green-dark);
}

.testimonial-author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-slate-900);
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 13px;
  color: var(--c-slate-500);
}

/* ═══════════════════════════════════════════════════
   9. FAQ
   ═══════════════════════════════════════════════════ */
.faq {
  padding: var(--section-padding);
  background: var(--c-bg-warm);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--c-bg-white);
  border: 1px solid var(--c-slate-200);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--c-green-light);
}

.faq-item.active {
  border-color: var(--c-green-dark);
  box-shadow: var(--shadow-green);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ar);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-slate-900);
  text-align: right;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--c-green-dark);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.active .faq-toggle {
  background: var(--c-green-dark);
  transform: rotate(45deg);
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--c-green-dark);
  transition: color var(--transition-fast);
}

.faq-item.active .faq-toggle svg {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--c-slate-600);
  line-height: 1.9;
  border-top: 1px solid var(--c-slate-200);
  padding-top: 18px;
}

/* ═══════════════════════════════════════════════════
   10. PARTNERS
   ═══════════════════════════════════════════════════ */
.partners {
  padding: 80px 0;
  background: var(--c-bg-white);
  position: relative;
}

.partners-carousel-wrapper {
  position: relative;
  margin-top: 36px;
}

.partners-carousel-viewport {
  overflow: hidden;
  padding: 14px 6px 24px;
  cursor: grab;
  user-select: none;
}

.partners-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.partners-carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
}

.partner-carousel-card {
  flex: 0 0 calc((100% - (20px * 4)) / 5);
  max-width: calc((100% - (20px * 4)) / 5);
  background: #ffffff;
  border-radius: 18px;
  border: 1.5px solid #e2ece5;
  box-shadow: 0 4px 16px rgba(0, 70, 35, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  height: 110px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.partner-carousel-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-green-dark);
  box-shadow: 0 12px 28px -6px rgba(0, 108, 53, 0.16);
  background: #fbfdfc;
}

.partner-card-logo-only {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.partner-card-logo-only img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(20%);
}

.partner-carousel-card:hover .partner-card-logo-only img {
  transform: scale(1.12);
  filter: grayscale(0%);
}

.partner-side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #d8e5de;
  color: var(--c-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 70, 35, 0.14);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.partner-side-arrow.prev {
  right: -22px;
}

.partner-side-arrow.next {
  left: -22px;
}

.partner-side-arrow svg {
  width: 20px;
  height: 20px;
}

.partner-side-arrow:hover {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 108, 53, 0.28);
}

.partner-side-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

/* Hide dots — infinite partner carousel uses no dots */
.partners-carousel-dots {
  display: none;
}

@media (max-width: 1240px) {
  .partner-side-arrow.prev {
    right: -8px;
  }
  .partner-side-arrow.next {
    left: -8px;
  }
  .partner-carousel-card {
    flex: 0 0 calc((100% - (18px * 3)) / 4);
    max-width: calc((100% - (18px * 3)) / 4);
  }
}

@media (max-width: 860px) {
  .partner-carousel-card {
    flex: 0 0 calc((100% - (16px * 2)) / 3);
    max-width: calc((100% - (16px * 2)) / 3);
  }
}

@media (max-width: 540px) {
  .partner-carousel-card {
    flex: 0 0 calc((100% - 14px) / 2);
    max-width: calc((100% - 14px) / 2);
    height: 100px;
  }
  .partner-side-arrow {
    width: 38px;
    height: 38px;
  }
  .partner-side-arrow.prev {
    right: -4px;
  }
  .partner-side-arrow.next {
    left: -4px;
  }
}

/* ═══════════════════════════════════════════════════
   11. CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
  padding: var(--section-padding);
  background: var(--c-bg-warm);
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  background: var(--c-bg-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-slate-200);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-slate-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--c-slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-ar);
  font-size: 14px;
  color: var(--c-slate-900);
  background: var(--c-bg-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--c-green-dark);
  box-shadow: 0 0 0 4px rgba(0, 108, 53, 0.08);
}

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

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--c-bg-white);
  border: 1px solid var(--c-slate-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: var(--c-green-light);
  box-shadow: var(--shadow-md);
  transform: translateX(-4px);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: var(--c-green-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--c-green-dark);
}

.contact-info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-slate-900);
  margin-bottom: 6px;
}

.contact-info-text p {
  font-size: 14px;
  color: var(--c-slate-500);
  line-height: 1.6;
}

.contact-info-text a {
  color: var(--c-green-dark);
  font-weight: 600;
}

.contact-info-text a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--c-bg-dark);
  color: var(--c-slate-400);
  padding: 80px 0 0;
}

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 16px;
  color: var(--c-slate-400);
}

.footer-brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-heading {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--c-slate-400);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--c-green-light);
  padding-right: 6px;
}

.footer-links a::before {
  content: '‹';
  font-size: 18px;
  color: var(--c-green-light);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-slate-400);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
  color: #fff;
  transform: translateY(-3px);
}

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

/* Footer Contact Bar */
.footer-contact-bar {
  margin: 40px 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--c-green-light);
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 14px;
  color: var(--c-slate-300);
}

.footer-contact-item a {
  color: var(--c-slate-300);
}

.footer-contact-item a:hover {
  color: var(--c-green-light);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: var(--c-slate-500);
}

.footer-bottom a {
  color: var(--c-green-light);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   13. WHATSAPP FLOAT
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* Scroll-to-top */
.scroll-top {
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--c-green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #005027;
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
  transition-delay: 0.5s;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 20px;
  }

  .hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .corporate-hero-showcase {
    max-width: 440px;
    height: 440px;
    margin: 0 auto;
  }

  .showcase-main-disc {
    width: 380px;
    height: 380px;
  }

  .hero-description {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust-grid {
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .stats .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-card,
  .about-logo-card {
    height: 380px;
    max-width: 520px;
    margin: 0 auto 30px;
    width: 100%;
  }

  .about-content .section-title::before {
    display: none;
  }

  .about-content .section-title {
    padding-right: 0;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--c-slate-200);
    box-shadow: var(--shadow-lg);
  }

  .navbar-nav.active {
    display: flex;
  }

  .navbar-vision {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 576px) {
  :root {
    --section-padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
  }

  /* ─── Hero Section Responsive Overhaul ─── */
  .hero {
    padding: 100px 0 35px;
    min-height: auto;
    overflow-x: clip;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    padding: 0 16px;
  }

  /* Hero Visual Showcase for Mobile (Appears First) */
  .hero-visual {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6px 0 16px;
    overflow: visible;
  }

  .hero-content {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-company-name {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
  }

  .hero-company-subtitle {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 13.5px;
    line-height: 1.75;
    margin: 0 auto 18px;
    max-width: 100%;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-download-profile,
  .hero-buttons .btn-outline-clean {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
  }

  .corporate-hero-showcase {
    width: 100%;
    max-width: 325px;
    height: 305px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .showcase-glow-ring {
    width: 78%;
    height: 78%;
  }

  .showcase-main-disc {
    width: 240px;
    height: 240px;
    box-shadow: 
      0 14px 30px rgba(0, 50, 25, 0.1),
      0 0 0 1px rgba(0, 108, 53, 0.1),
      inset 0 0 0 5px rgba(255, 255, 255, 0.85),
      inset 0 0 0 7px rgba(197, 160, 89, 0.35);
  }

  /* Precision Mobile Anchored Floating Badges (Balanced Triangular Orbit & No WhatsApp Overlap) */
  .showcase-badge-top {
    top: 8px;
    right: 8px;
    left: auto;
    padding: 5px 10px;
    gap: 6px;
    border-radius: 8px;
  }

  .badge-icon-wrap {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .badge-icon-wrap svg {
    width: 13px;
    height: 13px;
  }

  .badge-headline {
    font-size: 9px;
  }

  .badge-subline {
    font-size: 7.5px;
  }

  .showcase-badge-brand {
    top: 95px;
    left: 8px;
    bottom: auto;
    padding: 5px 10px;
    gap: 7px;
    border-radius: 8px;
  }

  .brand-badge-logo {
    height: 22px;
  }

  .brand-badge-name {
    font-size: 11px;
  }

  .brand-badge-tag {
    font-size: 8px;
  }

  .showcase-badge-clients {
    bottom: 8px;
    right: 8px;
    padding: 6px 12px;
    border-radius: 8px;
  }

  .clients-badge-number {
    font-size: 15px;
  }

  .clients-badge-label {
    font-size: 8px;
  }

  /* Mobile Trust Factors Grid */
  .hero .hero-trust-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 9px;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 108, 53, 0.12);
  }

  .hero-trust-grid .trust-grid-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 108, 53, 0.1);
    padding: 10px 14px;
    border-radius: 10px;
    text-align: right;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 50, 25, 0.04);
  }

  .hero-trust-grid .trust-grid-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .hero-trust-grid .trust-grid-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero-trust-grid .trust-grid-info strong {
    font-size: 12.5px;
  }

  .hero-trust-grid .trust-grid-info span {
    font-size: 10.5px;
  }

  .stats .container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    flex-direction: column;
  }

  .service-visual {
    width: 100%;
    min-width: 100%;
    padding: 18px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    text-align: right;
  }

  .service-visual-icon {
    margin-bottom: 0;
    width: 50px;
    height: 50px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .btn {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }

  .scroll-top {
    bottom: 80px;
    left: 20px;
    width: 38px;
    height: 38px;
  }
}