/* =====================================================
   Al-Abd Alwahed Recruitment — style.css
   Professional bilingual website (Arabic/English)
   Brand colors: Turquoise / Teal / Navy palette
   ===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --cyan:        #38ADC7;
  --bright-cyan: #10B9E4;
  --dark-navy:   #044C5C;
  --teal:        #02819F;
  --cool-gray:   #949696;
  --dark-gray:   #6C7273;
  --light-gray:  #D0D6D7;
  --off-white:   #f8fafb;
  --white:       #FFFFFF;

  /* Semantic */
  --primary:     var(--dark-navy);
  --accent:      var(--bright-cyan);
  --accent2:     var(--cyan);
  --text:        #1a2e35;
  --text-light:  #4a6572;
  --border:      #e1e8ea;
  --shadow:      0 4px 24px rgba(4, 76, 92, 0.10);
  --shadow-lg:   0 12px 48px rgba(4, 76, 92, 0.16);

  /* Typography */
  --font-ar:     'Cairo', sans-serif;
  --font-en:     'Cairo', sans-serif;

  /* Spacing */
  --section-pad: 96px;
  --container:   1200px;
  --radius:      16px;
  --radius-sm:   8px;
  --radius-lg:   24px;

  /* Transitions */
  --transition:  0.3s 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;
}

body {
  font-family: var(--font-ar);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* ===== SECTION BASE ===== */
.section {
  padding: var(--section-pad) 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(56,173,199,0.12), rgba(16,185,228,0.12));
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(56,173,199,0.25);
}

.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--dark-navy));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(2,129,159,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,129,159,0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.65);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

/* RTL: float on left, LTR: float on right */
[dir="ltr"] .whatsapp-float {
  left: auto;
  right: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  left: 68px;
  background: var(--dark-navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
[dir="ltr"] .whatsapp-tooltip {
  left: auto;
  right: 68px;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(4,76,92,0.10);
  transition: box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 28px rgba(4,76,92,0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.site-logo {
  height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.site-logo--footer {
  height: 52px;
  margin-bottom: 4px;
  border-radius: 8px;
}

/* Nav */
.nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 7px 13px;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--teal);
  background: rgba(2,129,159,0.08);
}

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

/* Language Toggle */
.lang-btn {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.lang-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--dark-navy) 0%, #063d4d 40%, #02687f 75%, var(--teal) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 96px;
}

/* Hero Background */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero-circle-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--bright-cyan), transparent);
  top: -200px; right: -150px;
  animation: pulse-circle 6s ease-in-out infinite;
}
.hero-circle-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--cyan), transparent);
  bottom: -100px; left: -100px;
  opacity: 0.06;
  animation: pulse-circle 8s ease-in-out infinite reverse;
}
.hero-circle-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--white), transparent);
  top: 40%; left: 35%;
  opacity: 0.04;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

@keyframes pulse-circle {
  0%, 100% { transform: scale(1); opacity: 0.08; }
  50% { transform: scale(1.08); opacity: 0.12; }
}

/* Hero Inner */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 64px 24px;
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--bright-cyan);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.7s ease forwards;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.15s ease both;
}

.hero-title-main {
  display: block;
}

.hero-title-accent {
  display: block;
  color: var(--bright-cyan);
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.7s 0.25s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.35s ease both;
}

/* Trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.45s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-item i {
  color: var(--bright-cyan);
  font-size: 0.9rem;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* Hero visual cards */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-card-stack {
  position: relative;
  width: 320px;
  height: 320px;
}

.hcard {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.hcard i {
  font-size: 1.6rem;
  color: var(--bright-cyan);
  flex-shrink: 0;
}

.hcard div { display: flex; flex-direction: column; }
.hcard strong { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.hcard span { font-size: 0.78rem; opacity: 0.7; }

.hcard-1 { top: 0; right: 0; left: 0; animation: float1 4s ease-in-out infinite; }
.hcard-2 { top: 110px; right: 20px; left: 20px; animation: float2 4.5s ease-in-out infinite 0.5s; }
.hcard-3 { top: 210px; right: 0; left: 0; animation: float1 5s ease-in-out infinite 1s; }

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Arrow direction for CTA */
.btn-arrow-en { display: none; }
[dir="ltr"] .btn-arrow-ar { display: none; }
[dir="ltr"] .btn-arrow-en { display: inline; }

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
}
.hero-wave svg { width: 100%; height: 100%; }

/* Hero scroll indicator */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ABOUT ===== */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-highlight {
  background: linear-gradient(135deg, var(--dark-navy), var(--teal));
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.about-year {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--bright-cyan);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.about-highlight p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.about-body {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.9;
}

.about-strengths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.strength-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56,173,199,0.3);
}

.strength-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(56,173,199,0.15), rgba(16,185,228,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.strength-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.strength-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== SERVICES ===== */
.services { background: var(--white); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--bright-cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); transform-origin: left; }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56,173,199,0.25);
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--dark-navy), var(--teal));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(4,76,92,0.25);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover { color: var(--dark-navy); gap: 10px; }

/* Service arrows */
.service-arrow-en { display: none; }
[dir="ltr"] .service-arrow-ar { display: none; }
[dir="ltr"] .service-arrow-en { display: inline; }

/* CTA card */
.service-card-cta {
  background: linear-gradient(145deg, var(--dark-navy), var(--teal));
  border-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.service-card-cta::before { display: none; }

.service-cta-icon {
  font-size: 2rem;
  color: var(--bright-cyan);
  margin-bottom: 16px;
}

.service-card-cta h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.service-card-cta p {
  color: rgba(255,255,255,0.75);
}

/* ===== WHY US ===== */
.why-us { background: var(--off-white); }

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

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56,173,199,0.3);
}

.why-number {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(4,76,92,0.06);
  line-height: 1;
  pointer-events: none;
}
[dir="ltr"] .why-number { left: auto; right: 24px; }

.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(56,173,199,0.15), rgba(16,185,228,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--teal), var(--dark-navy));
  color: var(--white);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== PROCESS ===== */
.process { background: var(--white); }

.process-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 28px;
  right: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--bright-cyan), var(--dark-navy));
  border-radius: 2px;
}

[dir="ltr"] .process-timeline::before {
  right: auto;
  left: 28px;
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
  padding-right: 68px;
}

[dir="ltr"] .process-step {
  padding-right: 0;
  padding-left: 68px;
}

.step-number {
  position: absolute;
  right: 14px;
  top: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--bright-cyan), var(--teal));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(56,173,199,0.2);
}

[dir="ltr"] .step-number { right: auto; left: 14px; }

.step-content {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  flex: 1;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.step-content:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  border-color: rgba(56,173,199,0.25);
}

.step-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--dark-navy), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(145deg, var(--dark-navy) 0%, #063d4d 50%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.stats .section-header { position: relative; z-index: 1; margin-bottom: 48px; }

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

.stat-item {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--bright-cyan);
  margin-bottom: 16px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }

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

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

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(56,173,199,0.25);
}

.ci-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(56,173,199,0.15), rgba(16,185,228,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-whatsapp .ci-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
}

.contact-info-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  direction: ltr;
  text-align: right;
}
[dir="ltr"] .contact-info-card p { text-align: left; }

/* Office Map */
.contact-map-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.map-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.contact-map {
  position: relative;
  width: 100%;
  min-height: 380px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--off-white);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.btn-map-link {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.75);
}

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin: 16px 0 20px;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  transition: var(--transition);
}

.footer-whatsapp-btn:hover {
  background: rgba(37,211,102,0.25);
}

.footer-col-title {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--bright-cyan); padding-right: 4px; }
[dir="ltr"] .footer-links a:hover { padding-right: 0; padding-left: 4px; }

.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-list i {
  color: var(--bright-cyan);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-list span, .footer-contact-list a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: block;
  line-height: 1.5;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  transition: var(--transition);
  direction: ltr;
}
[dir="ltr"] .footer-contact-list a { direction: auto; }
.footer-contact-list a:hover { color: var(--bright-cyan); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }

/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {

  .header-inner {
    justify-content: space-between;
    gap: 12px;
  }

  .logo-link {
    flex-shrink: 0;
  }

  .header-actions {
    flex-shrink: 0;
    margin-inline-start: auto;
  }

  .nav {
    flex: none;
    position: fixed;
    top: 0; bottom: 0;
    right: -100%;
    width: 280px;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(4,76,92,0.15);
    padding: 80px 24px 32px;
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  [dir="ltr"] .nav {
    right: auto;
    left: -100%;
    transition: left var(--transition);
  }

  .nav.open { right: 0; }
  [dir="ltr"] .nav.open { left: 0; right: auto; }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-link {
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .hamburger { display: flex; }
  .header-cta { display: none; }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4,76,92,0.35);
    z-index: 998;
  }
  .nav-overlay.show { display: block; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-inner { max-width: 700px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-badge { /* keep */ }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-strengths { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .process-step { padding-right: 56px; }
  [dir="ltr"] .process-step { padding-left: 56px; padding-right: 0; }
}

@media (max-width: 480px) {
  .site-logo {
    height: 48px;
    max-width: 160px;
  }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; text-align: center; }
  .trust-divider { display: none; }
  .about-highlight { flex-direction: column; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-header { margin-bottom: 40px; }
  .contact-map-wrap { padding: 24px 20px; }
  .contact-map { min-height: 280px; }
}

/* ===== RTL / LTR Adjustments ===== */
[dir="ltr"] .hero-inner { direction: ltr; }
[dir="ltr"] .nav-list { direction: ltr; }
[dir="ltr"] body { font-family: var(--font-en); }

/* Number formatting: always LTR */
.stat-number { direction: ltr; unicode-bidi: isolate; }
