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

:root {
  /* Core Brand Colors */
  --primary-navy: #092347;
  --primary-navy-dark: #06162d;
  --primary-navy-deep: #030b17;
  --primary-navy-light: #10376d;
  
  /* Accents */
  --brand-cyan: #00bfdb;
  --brand-cyan-glow: rgba(0, 191, 219, 0.35);
  --brand-cyan-light: #e0f7fa;
  --accent-green: #6da71e;
  --accent-green-hover: #5d9217;
  --accent-green-light: #eaf5db;
  --accent-orange: #f59e0b;
  --accent-orange-light: #fef3c7;
  
  /* Text & Surfaces */
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --border-focus: #00bfdb;
  
  /* Premium Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 16px -2px rgba(9, 35, 71, 0.08), 0 2px 6px -1px rgba(9, 35, 71, 0.04);
  --shadow-lg: 0 16px 32px -4px rgba(9, 35, 71, 0.1), 0 6px 12px -2px rgba(9, 35, 71, 0.06);
  --shadow-xl: 0 24px 48px -8px rgba(9, 35, 71, 0.16), 0 10px 20px -4px rgba(9, 35, 71, 0.08);
  --shadow-glow: 0 0 25px rgba(0, 191, 219, 0.25);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Animations */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --container-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-navy);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* ==========================================================
   TOP BAR
   ========================================================== */
.top-bar {
  background: linear-gradient(90deg, #030b17 0%, #06162d 50%, #092347 100%);
  color: #cbd5e1;
  font-size: 0.84rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-weight: 500;
}

.top-bar-item i {
  color: var(--brand-cyan);
  font-size: 0.95rem;
}

.top-bar-item a:hover {
  color: var(--brand-cyan);
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.social-link:hover {
  background: var(--brand-cyan);
  color: #06162d;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 191, 219, 0.35);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 3px 6px;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lang-btn.active {
  background: var(--brand-cyan);
  color: #06162d;
  box-shadow: 0 2px 8px rgba(0, 191, 219, 0.4);
}

.lang-btn:hover:not(.active) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================
   HEADER & NAVBAR
   ========================================================== */
.main-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 20px rgba(9, 35, 71, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo-brand img {
  height: 48px;
  width: auto;
  max-width: 185px;
  display: block;
}

.logo-brand:hover {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--primary-navy);
  position: relative;
  padding: 8px 2px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--accent-green));
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--brand-cyan);
}

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

.nav-link.active {
  color: var(--primary-navy);
  font-weight: 700;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  background: linear-gradient(135deg, #6da71e 0%, #5b9218 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(109, 167, 30, 0.3);
  border: none;
  cursor: pointer;
}

.header-cta-btn:hover {
  background: linear-gradient(135deg, #7bb825 0%, #6da71e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(109, 167, 30, 0.4);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 85% 30%, #0d386c 0%, #082142 45%, #041021 100%);
  color: #ffffff;
  overflow: hidden;
  padding: 75px 0 0;
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 191, 219, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr;
  align-items: center;
  gap: 36px;
}

.hero-content {
  padding-bottom: 55px;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-cyan);
  background: rgba(0, 191, 219, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 191, 219, 0.25);
  margin-bottom: 20px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-cyan);
  box-shadow: 0 0 8px var(--brand-cyan);
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6da71e 0%, #5d9217 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  box-shadow: 0 6px 18px rgba(109, 167, 30, 0.35);
  border: none;
  cursor: pointer;
}

.btn-primary i {
  transition: transform var(--transition-fast);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7bb825 0%, #6da71e 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(109, 167, 30, 0.45);
  color: #ffffff;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: all var(--transition-fast);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.hero-composite-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}

.hero-image-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  height: 390px;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-trio-item {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-trio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-trio-item:hover img {
  transform: scale(1.08);
}

.hero-trio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 22, 45, 0.05) 0%, rgba(6, 22, 45, 0.25) 45%, rgba(6, 22, 45, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px 10px;
  box-sizing: border-box;
}

.hero-trio-label {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  background: rgba(6, 22, 45, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.hero-trio-item:hover .hero-trio-label {
  background: var(--brand-cyan);
  color: #06162d;
  border-color: var(--brand-cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 219, 0.4);
}

/* Badges Bar */
.hero-badges-bar {
  background: #041021;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

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

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.hero-badge-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hero-badge-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  border: 2px solid var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  font-size: 1.35rem;
  background: rgba(0, 191, 219, 0.1);
  box-shadow: 0 0 15px rgba(0, 191, 219, 0.2);
}

.hero-badge-text h4 {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.hero-badge-text p {
  color: #94a3b8;
  font-size: 0.84rem;
  line-height: 1.35;
}

/* ==========================================================
   KEY METRICS & STATISTICS SECTION
   ========================================================== */
.metrics-section {
  padding: 65px 0 55px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

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

.stat-metric-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.stat-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--accent-green));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.stat-metric-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-xl);
}

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

.metric-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 16px;
  transition: transform var(--transition-bounce);
}

.stat-metric-card:hover .metric-icon-wrap {
  transform: scale(1.12) rotate(4deg);
}

.metric-value {
  font-size: 2.65rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.metric-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.metric-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* 3D Tilt Card Base & Glare */
.service-card,
.engagement-card,
.stat-metric-card,
.presence-card,
.detail-card,
.team-card,
.process-step-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.card-tilt-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.pole-number-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--brand-cyan);
  background: rgba(0, 191, 219, 0.1);
  border: 1px solid rgba(0, 191, 219, 0.25);
  padding: 2px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.engagements-section {
  padding: 70px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* ==========================================================
   SERVICES SECTION (DOMAINE D'EXPERTISE)
   ========================================================== */
.services-section {
  padding: 85px 0 75px;
  background-color: var(--bg-light);
  position: relative;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-green);
  background: var(--accent-green-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.services-grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

/* 6 Engagements Grid */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.engagement-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.engagement-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--accent-green-light);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.engagement-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
}

/* International Presence Showcase */
.presence-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.presence-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-fast);
}

.presence-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--brand-cyan);
  transform: translateY(-2px);
}

.presence-flag {
  font-size: 1.8rem;
}

.presence-info h5 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.presence-info p {
  color: #cbd5e1;
  font-size: 0.78rem;
}

/* ==========================================================================
   Clean & Compact UI: KADVERT International Presence (No map)
   ========================================================================== */
.kadvert-presence-container.compact-mode {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 8px 30px -8px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f6;
  margin: 35px 0;
  font-family: inherit;
}

/* Top Header */
.compact-mode .kadv-top-header {
  margin-bottom: 22px;
}

.compact-mode .kadv-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.compact-mode .kadv-tag i {
  color: #06b6d4;
  font-size: 0.78rem;
}

.compact-mode .kadv-main-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.compact-mode .kadv-title-bar {
  width: 50px;
  height: 3.5px;
  background: linear-gradient(90deg, #0284c7 0%, #10b981 100%);
  border-radius: 99px;
}

/* Cards Row (Compact) */
.compact-mode .kadv-cards-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 16px;
  margin-bottom: 20px;
}

.compact-mode .kadv-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  border: 1px solid #edf2f7;
  position: relative;
}

.compact-mode .kadv-card.card-cyan {
  border-left: 4px solid #06b6d4;
}

.compact-mode .kadv-card.card-green {
  border-left: 4px solid #84cc16;
}

.compact-mode .kadv-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.compact-mode .kadv-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.icon-cyan {
  background: #ecfeff;
  color: #06b6d4;
  border: 1px solid #cffafe;
}

.icon-green {
  background: #f7fee7;
  color: #65a30d;
  border: 1px solid #ecfccb;
}

.compact-mode .kadv-card-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: 0.02em;
  margin: 0;
}

/* List Items (Compact) */
.compact-mode .kadv-card-list {
  display: flex;
  flex-direction: column;
}

.compact-mode .kadv-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 3px 0;
}

.compact-mode .kadv-flag-wrap {
  flex-shrink: 0;
  margin-top: 1px;
}

.compact-mode .kadv-round-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.compact-mode .kadv-item-info {
  flex: 1;
}

.compact-mode .kadv-country-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.compact-mode .kadv-country-desc {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

.compact-mode .kadv-divider {
  height: 1px;
  background-color: #f1f5f9;
  margin: 8px 0;
}

/* Bottom Value Highlights Bar (Compact) */
.compact-mode .kadv-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.compact-mode .kadv-bottom-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 8px;
}

.compact-mode .kadv-bottom-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: #0284c7;
  flex-shrink: 0;
}

.compact-mode .kadv-bottom-item:nth-child(3) .kadv-bottom-icon { color: #059669; }
.compact-mode .kadv-bottom-item:nth-child(5) .kadv-bottom-icon { color: #16a34a; }
.compact-mode .kadv-bottom-item:nth-child(7) .kadv-bottom-icon { color: #65a30d; }

.compact-mode .kadv-bottom-text {
  display: flex;
  flex-direction: column;
}

.compact-mode .kadv-bottom-text strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.compact-mode .kadv-bottom-text span {
  font-size: 0.7rem;
  color: #64748b;
}

.compact-mode .kadv-bottom-sep {
  width: 1px;
  height: 24px;
  background-color: #e2e8f0;
}

/* Responsive Handling */
@media (max-width: 992px) {
  .compact-mode .kadv-cards-row {
    grid-template-columns: 1fr;
  }
  .compact-mode .kadv-bottom-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .compact-mode .kadv-bottom-sep {
    display: none;
  }
}

@media (max-width: 576px) {
  .kadvert-presence-container.compact-mode {
    padding: 18px 14px;
  }
  .compact-mode .kadv-main-title {
    font-size: 1.2rem;
  }
  .compact-mode .kadv-bottom-bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Quality Process 5 Steps */
.quality-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.process-step-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-cyan);
}

.step-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #092347 0%, var(--brand-cyan) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0, 191, 219, 0.3);
}

.process-step-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.process-step-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 992px) {
  .engagements-grid {
    grid-template-columns: 1fr;
  }
  .quality-process-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 22px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 191, 219, 0.4);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--accent-green));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.service-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-md);
}

.service-card.tech .service-card-icon {
  background: linear-gradient(135deg, #092347 0%, #00bfdb 100%);
  color: #ffffff;
}

.service-card.plumbing .service-card-icon {
  background: linear-gradient(135deg, #0d3b66 0%, #1e6091 100%);
  color: #ffffff;
}

.service-card.landscape .service-card-icon {
  background: linear-gradient(135deg, #6da71e 0%, #8ac926 100%);
  color: #ffffff;
}

.service-card.electromech .service-card-icon {
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  color: #ffffff;
}

.service-card:hover .service-card-icon {
  transform: scale(1.12) rotate(4deg);
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 18px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-features {
  list-style: none;
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-features li {
  font-size: 0.86rem;
  color: #334155;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.service-card-features li i {
  color: var(--accent-green);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  transition: all var(--transition-fast);
  border: 1px solid #e2e8f0;
}

.service-card-link:hover {
  background: var(--brand-cyan);
  color: #06162d;
  border-color: var(--brand-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 191, 219, 0.3);
}

/* ==========================================================
   ABOUT US SECTION (A PROPOS DE NOUS)
   ========================================================== */
.about-strip-section {
  background: radial-gradient(circle at 10% 50%, #0d386c 0%, #06162d 60%, #030b17 100%);
  color: #ffffff;
  padding: 60px 0;
  position: relative;
}

.about-strip-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 45px;
}

.about-strip-content .about-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: 10px;
  display: block;
}

.about-strip-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.about-strip-content p {
  color: #cbd5e1;
  font-size: 0.96rem;
  line-height: 1.65;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-item-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.stat-item-box:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--brand-cyan);
  transform: translateY(-3px);
}

.stat-circle-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(0, 191, 219, 0.15);
  border: 1px solid var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--brand-cyan);
}

.stat-item-text .stat-number {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-item-text .stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 4px;
  line-height: 1.25;
}

/* ==========================================================
   BOTTOM VALUE PROPS & CALL BAR
   ========================================================== */
.bottom-banner-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 32px 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.02);
}

.bottom-banner-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
  width: 100%;
}

.value-props-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  width: 100%;
}

.value-prop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.value-prop-icon {
  font-size: 1.6rem;
  color: var(--accent-green);
  background: var(--accent-green-light);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-prop-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.value-prop-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.quick-call-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #6da71e 0%, #5b9218 100%);
  color: #ffffff;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(109, 167, 30, 0.35);
  transition: all var(--transition-fast);
  margin: 0 auto;
}

.quick-call-cta:hover {
  background: linear-gradient(135deg, #7bb825 0%, #6da71e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(109, 167, 30, 0.45);
  color: #ffffff;
}

.call-icon {
  font-size: 1.4rem;
  animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.call-text-box {
  display: flex;
  flex-direction: column;
}

.call-subtitle {
  font-size: 0.76rem;
  font-weight: 500;
  opacity: 0.95;
}

.call-number {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.main-footer {
  background: #030b17;
  color: #94a3b8;
  padding: 60px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--accent-green));
  border-radius: 2px;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-cyan);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--brand-cyan);
  font-size: 1rem;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}

/* ==========================================================
   PAGE HERO / INNER PAGE BANNER
   ========================================================== */
.inner-hero {
  background: radial-gradient(circle at 75% 30%, #0d386c 0%, #082142 50%, #041021 100%);
  color: #ffffff;
  padding: 65px 0 55px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-hero::after {
  content: '';
  position: absolute;
  inset: 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='%23ffffff' fill-opacity='0.02'%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/svg%3E");
  pointer-events: none;
}

.inner-hero-tag {
  color: var(--brand-cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 191, 219, 0.12);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  display: inline-block;
  border: 1px solid rgba(0, 191, 219, 0.25);
}

.inner-hero-title {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.inner-hero-desc {
  color: #cbd5e1;
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 18px;
}

.breadcrumbs a {
  color: #cbd5e1;
}

.breadcrumbs a:hover {
  color: var(--brand-cyan);
}

/* ==========================================================
   INNER PAGE SECTIONS & DETAIL COMPONENTS
   ========================================================== */
.content-section {
  padding: 65px 0;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

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

.detail-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-cyan);
}

.detail-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--brand-cyan-light);
  color: #008fa4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.detail-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-navy);
}

.detail-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.features-check-list {
  list-style: none;
  margin: 22px 0;
}

.features-check-list li {
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-check-list li i {
  color: var(--accent-green);
  font-size: 1.15rem;
}

/* Service Detail Banner & CTA */
.service-cta-banner {
  background: radial-gradient(circle at 10% 50%, #0d386c 0%, #092347 70%, #06162d 100%);
  border-radius: var(--radius-lg);
  padding: 45px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-cta-text h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.service-cta-text p {
  color: #cbd5e1;
  font-size: 0.98rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #ffffff;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(0, 191, 219, 0.15);
}

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

/* ==========================================================
   MODAL POPUP - UNIFIED GLOBAL QUOTE COMPONENT
========================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 14, 33, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 100%;
  padding: 38px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.85);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.modal-backdrop.active .modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Modal Header */
.modal-header {
  margin-bottom: 22px;
  padding-right: 40px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(0, 191, 219, 0.1);
  color: var(--brand-cyan);
  border: 1px solid rgba(0, 191, 219, 0.25);
  margin-bottom: 10px;
}

.modal-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Modal Close Button */
.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #ef4444;
  transform: rotate(90deg);
}

/* Modal Form Layout */
.modal-quote-form .form-row {
  margin-bottom: 16px;
}

.modal-quote-form .form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-quote-form .form-group {
  margin-bottom: 0;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 0.95rem;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.input-with-icon .form-control {
  padding-left: 42px;
}

.input-with-icon .form-control:focus ~ .input-icon,
.input-with-icon:focus-within .input-icon {
  color: var(--brand-cyan);
}

.form-control.is-invalid {
  border-color: #ef4444 !important;
  background: #fff8f8;
}

.form-feedback {
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

.form-group.has-error .form-feedback {
  display: block;
  animation: fadeIn 0.2s ease;
}

.modal-form-actions {
  margin-top: 22px;
}

.modal-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.02rem;
  padding: 14px 24px;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 191, 219, 0.25);
}

.modal-submit-btn:hover {
  box-shadow: 0 12px 30px rgba(0, 191, 219, 0.35);
}

.modal-privacy-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.4;
}

/* Success Confirmation State */
.modal-success-state {
  text-align: center;
  padding: 30px 10px;
  animation: modalFadeIn 0.35s ease;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 10px rgba(22, 163, 74, 0.1);
  animation: pulseSuccess 1.5s infinite;
}

@keyframes pulseSuccess {
  0% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.25); }
  70% { transform: scale(1); box-shadow: 0 0 0 14px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.success-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.success-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 24px;
}

.success-actions {
  display: flex;
  justify-content: center;
}

/* RTL Adjustments for Modal */
[dir="rtl"] .modal-header {
  padding-right: 0;
  padding-left: 40px;
}

[dir="rtl"] .modal-close {
  right: auto;
  left: 22px;
}

[dir="rtl"] .input-with-icon .input-icon {
  left: auto;
  right: 14px;
}

[dir="rtl"] .input-with-icon .form-control {
  padding-left: 14px;
  padding-right: 42px;
}

@media (max-width: 640px) {
  .modal-box {
    padding: 28px 20px;
  }

  .modal-title {
    font-size: 1.35rem;
  }

  .modal-quote-form .form-row-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Realisations Filter */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brand-cyan);
  border-color: var(--brand-cyan);
  color: #06162d;
  box-shadow: 0 4px 14px rgba(0, 191, 219, 0.35);
}

.portfolio-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

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

.portfolio-img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  background: #e2e8f0;
  transition: transform 0.5s ease;
}

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

.portfolio-info {
  padding: 24px;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.team-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px 20px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.team-avatar-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
}

.team-avatar-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 25px rgba(9, 35, 71, 0.18);
  transition: all var(--transition-normal);
}

.team-card:hover .team-avatar-img {
  transform: scale(1.06);
  border-color: var(--brand-cyan);
  box-shadow: 0 0 20px rgba(0, 191, 219, 0.4);
}

.team-badge-icon {
  position: absolute;
  bottom: 2px;
  right: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-md);
}

.team-card.management .team-badge-icon { background: #092347; color: var(--brand-cyan); }
.team-card.tech .team-badge-icon { background: var(--brand-cyan); color: #06162d; }
.team-card.quality .team-badge-icon { background: #0f3c73; color: var(--brand-cyan); }
.team-card.plumbing .team-badge-icon { background: #0d3b66; }
.team-card.landscape .team-badge-icon { background: #6da71e; }

.team-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.team-speciality {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #008fa4;
  background: var(--brand-cyan-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  line-height: 1.4;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Skills preview tags on card */
.team-skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 18px;
  width: 100%;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--primary-navy);
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.skill-tag:hover {
  background: var(--brand-cyan-light);
  border-color: var(--brand-cyan);
  color: #008fa4;
}

.skill-tag-more {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand-cyan);
  background: rgba(0, 191, 219, 0.1);
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

/* Team More Info Action Button */
.btn-team-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  background: linear-gradient(135deg, rgba(0, 191, 219, 0.12), rgba(109, 167, 30, 0.08));
  border: 1px solid rgba(0, 191, 219, 0.35);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: 14px;
}

.btn-team-more i {
  color: var(--brand-cyan);
  font-size: 1rem;
  transition: transform var(--transition-fast);
}

.btn-team-more:hover {
  background: var(--brand-cyan);
  color: #06162d;
  border-color: var(--brand-cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 191, 219, 0.28);
}

.btn-team-more:hover i {
  color: #06162d;
  transform: scale(1.15);
}

.team-contact-list {
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.team-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.team-contact-item:hover {
  background: #ffffff;
  border-color: var(--brand-cyan);
  color: #008fa4;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.team-contact-item i {
  color: var(--brand-cyan);
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
}

/* ==========================================================
   TEAM MEMBER DETAIL MODAL
   ========================================================== */
.team-modal-box {
  max-width: 720px;
  width: 92%;
  padding: 36px 32px 30px;
}

.team-modal-profile {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 22px;
}

.team-modal-avatar {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-cyan);
  box-shadow: 0 8px 22px rgba(9, 35, 71, 0.15);
  flex-shrink: 0;
}

.team-modal-intro {
  flex-grow: 1;
}

.team-modal-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.team-modal-role {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #008fa4;
  background: var(--brand-cyan-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.team-modal-bio {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 22px;
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--brand-cyan);
}

.team-modal-skills-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 14px;
}

.team-modal-skills-heading i {
  color: var(--brand-cyan);
}

.team-modal-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}

.team-modal-skill-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.4;
  transition: all var(--transition-fast);
}

.team-modal-skill-item:hover {
  border-color: var(--brand-cyan);
  background: #f0fdf4;
  transform: translateX(3px);
}

.team-modal-skill-item i {
  color: var(--accent-green);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.team-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.team-modal-direct-contacts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.team-modal-cta-btn {
  padding: 12px 22px;
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .team-modal-profile {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .team-modal-skills-grid {
    grid-template-columns: 1fr;
  }
  .team-modal-actions {
    flex-direction: column;
  }
  .team-modal-direct-contacts,
  .team-modal-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* RTL Support for Team Modal */
[dir="rtl"] .team-modal-profile {
  text-align: right;
}

[dir="rtl"] .team-modal-bio {
  border-left: none;
  border-right: 4px solid var(--brand-cyan);
}

[dir="rtl"] .team-modal-skill-item:hover {
  transform: translateX(-3px);
}

[dir="rtl"] .btn-team-more i {
  margin-left: 6px;
  margin-right: 0;
}

/* Floating Actions: Back-to-Top & Fast Contact */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-bounce);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn.back-to-top {
  background: #092347;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.floating-btn.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.floating-btn.back-to-top:hover {
  background: var(--brand-cyan);
  color: #06162d;
  transform: translateY(-4px) scale(1.05);
}

.floating-btn.whatsapp-fast {
  background: #25d366;
}

.floating-btn.whatsapp-fast:hover {
  background: #20ba5a;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.floating-btn.call-fast {
  background: linear-gradient(135deg, #0284c7 0%, #00bfdb 100%);
}

.floating-btn.call-fast:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 191, 219, 0.45);
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #030b17;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  opacity: 0;
  border: 1px solid var(--brand-cyan);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notice i {
  color: var(--brand-cyan);
  font-size: 1.3rem;
}

/* ==========================================================
   SPLASH SCREEN / INTRO ANIMATION WITH TECH MESH
   ========================================================== */
#splashScreen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: radial-gradient(circle at center, #082652 0%, #05152a 60%, #020813 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s ease;
}

#splashScreen.hide {
  opacity: 0;
  transform: scale(1.08);
  visibility: hidden;
  pointer-events: none;
}

.splash-interactive-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.splash-bg-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: splashGlowPulse 5s ease-in-out infinite alternate;
}

.splash-bg-glow.glow-cyan {
  background: radial-gradient(circle, #00bfdb 0%, transparent 70%);
  top: 10%;
  left: 15%;
}

.splash-bg-glow.glow-green {
  background: radial-gradient(circle, #6da71e 0%, transparent 70%);
  bottom: 10%;
  right: 15%;
  animation-delay: -2.5s;
}

@keyframes splashGlowPulse {
  0% {
    transform: scale(0.85) translate(-30px, -20px);
    opacity: 0.25;
  }
  100% {
    transform: scale(1.2) translate(30px, 20px);
    opacity: 0.45;
  }
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  max-width: 90%;
  perspective: 1000px;
  position: relative;
  z-index: 2;
}

.splash-logo-box {
  width: 350px;
  max-width: 86vw;
  margin-bottom: 26px;
  animation: splashLogoAnimation 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  filter: drop-shadow(0 0 45px rgba(0, 191, 219, 0.5));
}

.splash-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.splash-welcome-box {
  opacity: 0;
  transform: translateY(25px);
  animation: splashTextSlideUp 1s ease 0.6s forwards;
}

.splash-welcome-title {
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.splash-welcome-title span {
  color: #00bfdb;
}

.splash-welcome-subtitle {
  color: #cbd5e1;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.splash-progress-track {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.splash-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00bfdb, #6da71e);
  border-radius: 4px;
  box-shadow: 0 0 10px #00bfdb;
  animation: splashProgressFill 1.8s ease-in-out forwards;
}

@keyframes splashLogoAnimation {
  0% {
    opacity: 0;
    transform: scale(0.2) rotateY(-180deg) rotate(-20deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.18) rotateY(15deg) rotate(4deg);
  }
  80% {
    transform: scale(0.95) rotateY(-5deg) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg) rotate(0deg);
  }
}

@keyframes splashTextSlideUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashProgressFill {
  0% {
    width: 0%;
  }
  50% {
    width: 65%;
  }
  100% {
    width: 100%;
  }
}

/* ==========================================================
   MOBILE FULLSCREEN DRAWER BACKDROP
   ========================================================== */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 11, 23, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body.drawer-open {
  overflow: hidden !important;
}

/* ==========================================================
   RESPONSIVE DESIGN
   ========================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-badges-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-strip-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    justify-content: center;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
    z-index: 1000;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 86%;
    max-width: 380px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 90px 28px 40px;
    box-shadow: -15px 0 45px rgba(9, 35, 71, 0.2);
    z-index: 999;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    gap: 12px;
    align-items: stretch;
  }
  .nav-menu.show {
    right: 0;
  }
  .nav-link {
    padding: 13px 18px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    color: var(--primary-navy);
    background: #f8fafc;
    border: 1px solid #edf2f7;
    display: block;
    transition: all var(--transition-fast);
  }
  .nav-link:hover, .nav-link.active {
    background: rgba(0, 191, 219, 0.12);
    color: var(--brand-cyan);
    border-color: rgba(0, 191, 219, 0.3);
  }
  .nav-link::after {
    display: none;
  }
  .mobile-menu-extras {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
  }
  .mobile-drawer-lang {
    justify-content: center;
    background: #f1f5f9;
    border-color: #cbd5e1;
    padding: 6px;
  }
  .mobile-drawer-lang .lang-btn {
    color: var(--primary-navy);
    font-size: 0.85rem;
    padding: 6px 14px;
  }
  .mobile-drawer-lang .lang-btn.active {
    background: var(--brand-cyan);
    color: #06162d;
  }
}

.mobile-menu-extras {
  display: none;
}

@media (max-width: 768px) {
  .top-bar-left {
    justify-content: center;
    gap: 12px;
  }
  .top-bar-right {
    display: none;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bottom-banner-grid {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .value-props-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }
  .quick-call-cta {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid-2col, .grid-3col {
    grid-template-columns: 1fr;
  }
  .service-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 30px auto 0;
  }
}

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

[dir="rtl"] .nav-menu {
  right: auto;
  left: -100%;
  box-shadow: 15px 0 45px rgba(9, 35, 71, 0.2);
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .nav-menu.show {
  left: 0;
}

[dir="rtl"] .hero-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .service-card-features li {
  text-align: right;
}

[dir="rtl"] .service-card-features li i {
  margin-left: 10px;
  margin-right: 0;
}

[dir="rtl"] .pole-number-badge {
  right: auto;
  left: 18px;
}

[dir="rtl"] .hero-badge-item {
  flex-direction: row;
}

[dir="rtl"] .stat-item-box {
  flex-direction: row;
}

[dir="rtl"] .value-prop-item {
  flex-direction: row;
  text-align: right;
}

[dir="rtl"] .footer-links a i {
  transform: rotate(180deg);
  margin-left: 8px;
  margin-right: 0;
}

[dir="rtl"] .footer-links a:hover {
  transform: translateX(-5px);
}

[dir="rtl"] .footer-col h4::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .service-card-link i {
  transform: rotate(180deg);
}

[dir="rtl"] .service-card-link:hover i {
  transform: rotate(180deg) translateX(3px);
}

[dir="rtl"] .team-contact-list {
  text-align: right;
}

[dir="rtl"] .team-badge-icon {
  right: auto;
  left: 6px;
}

[dir="rtl"] .floating-actions {
  right: auto;
  left: 28px;
}

[dir="rtl"] .modal-close {
  right: auto;
  left: 20px;
}

[dir="rtl"] .btn-primary i.fa-chevron-right {
  transform: rotate(180deg);
}

[dir="rtl"] .btn-primary:hover i.fa-chevron-right {
  transform: rotate(180deg) translateX(4px);
}

[dir="rtl"] .hero-trio-overlay {
  text-align: center;
  direction: rtl;
}

[dir="rtl"] .compact-mode .kadv-card.card-cyan {
  border-left: 1px solid #edf2f7;
  border-right: 4px solid #06b6d4;
}

[dir="rtl"] .compact-mode .kadv-card.card-green {
  border-left: 1px solid #edf2f7;
  border-right: 4px solid #84cc16;
}

[dir="rtl"] .kadv-item-info {
  text-align: right;
}

[dir="rtl"] .kadv-country-desc {
  text-align: right;
}

[dir="rtl"] .kadv-bottom-text {
  text-align: right;
}






