/* =============================================
   SHARKS GROUP — BRAND STYLESHEET
   Colors: Navy #0b1929 | Gold #c9a227 | Teal #0099b5
   Bilingual: Arabic (RTL) / English (LTR)
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --navy:        #0b1929;
  --navy-mid:    #122038;
  --navy-light:  #1a3357;
  --gold:        #c9a227;
  --gold-light:  #e2bc45;
  --gold-dark:   #a8851a;
  --teal:        #0099b5;
  --teal-light:  #00b8d9;
  --teal-dark:   #007a92;
  --white:       #ffffff;
  --off-white:   #f3f5f8;
  --light-gray:  #e8ecf2;
  --mid-gray:    #7a8fa6;
  --text:        #111f30;
  --text-light:  #4a5f77;

  --font: 'Cairo', 'Tajawal', sans-serif;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 10px rgba(11,25,41,0.08);
  --shadow:    0 6px 28px rgba(11,25,41,0.13);
  --shadow-lg: 0 16px 56px rgba(11,25,41,0.2);
  --transition: 0.3s ease;
  --container: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl;          /* Default: Arabic RTL */
}
html[lang="en"] { direction: ltr; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* --- Bilingual visibility --- */
html[lang="ar"] .lang-en { display: none !important; }
html[lang="en"] .lang-ar { display: none !important; }

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

/* =============================================
   LANGUAGE TOGGLE
   ============================================= */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-radius: 100px;
}
.lang-btn:hover:not(.active) { color: rgba(255,255,255,0.85); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 52px;
  width: auto;
}
.nav__logo-text { line-height: 1.2; }
.nav__logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
}
.nav__logo-sub {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  padding: 8px 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  color: var(--gold);
  background: rgba(201,162,39,0.1);
}
.nav__cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover {
  background: var(--teal-light) !important;
  transform: translateY(-1px);
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px 32px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    border-top: 1px solid rgba(201,162,39,0.2);
    justify-content: flex-start;
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav__link { width: 100%; padding: 14px 16px; font-size: 1rem; text-align: center; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26,51,87,0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0,153,181,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201,162,39,0.06) 0%, transparent 45%),
    linear-gradient(160deg, #0b1929 0%, #122038 60%, #0d2040 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
/* Decorative teal line */
.hero__teal-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--teal), transparent);
  opacity: 0.4;
}
html[lang="ar"] .hero__teal-line { right: 15%; }
html[lang="en"] .hero__teal-line { left: 15%; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 100px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,153,181,0.12);
  border: 1px solid rgba(0,153,181,0.3);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 44px;
  max-width: 560px;
  line-height: 1.85;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero__stat { }
.hero__stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-weight: 600;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.4);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,153,181,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11,25,41,0.22);
}
.btn-outline-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* =============================================
   SECTION COMMONS
   ============================================= */
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}
html[lang="ar"] .section-label { direction: ltr; flex-direction: row-reverse; }
html[lang="ar"] .section-label::before { /* right side for RTL */ }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}
.section-title span { color: var(--gold-dark); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.85;
  margin-top: 16px;
}
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-desc { margin: 16px auto 0; }

.divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* =============================================
   OVERVIEW (Home)
   ============================================= */
.overview { background: var(--off-white); }
.overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.overview__visual { position: relative; }
.overview__img-box {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201,162,39,0.15);
}
.overview__img-inner {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex; align-items: center; justify-content: center;
}
.overview__img-inner svg { width: 110px; height: 110px; opacity: 0.12; }
.overview__badge {
  position: absolute;
  bottom: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  font-weight: 900;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
html[lang="ar"] .overview__badge { left: -20px; }
html[lang="en"] .overview__badge { right: -20px; }
.overview__badge-num  { font-size: 2rem; line-height: 1; display: block; }
.overview__badge-text { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.overview__pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.overview__pillar {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
html[lang="ar"] .overview__pillar { border-right: 3px solid var(--teal); }
html[lang="en"] .overview__pillar { border-left:  3px solid var(--teal); }
.overview__pillar:hover { transform: translateX(4px); box-shadow: var(--shadow); }
html[lang="ar"] .overview__pillar:hover { transform: translateX(-4px); }
.overview__pillar-icon {
  width: 44px; height: 44px;
  background: rgba(0,153,181,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.overview__pillar-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.overview__pillar-title { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.overview__pillar-text  { font-size: 0.84rem; color: var(--text-light); margin-top: 3px; }

@media (max-width: 860px) {
  .overview__grid { grid-template-columns: 1fr; gap: 56px; }
  .overview__badge { bottom: -14px; }
  html[lang="ar"] .overview__badge { left: -8px; }
  html[lang="en"] .overview__badge { right: -8px; }
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,162,39,0.2); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-card__icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.service-card__num {
  position: absolute;
  top: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(11,25,41,0.04);
  line-height: 1;
  pointer-events: none;
}
html[lang="ar"] .service-card__num { left: 24px; }
html[lang="en"] .service-card__num { right: 24px; }
.service-card__title { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-card__desc  { font-size: 0.88rem; color: var(--text-light); line-height: 1.85; }

/* =============================================
   CEO SECTION
   ============================================= */
.ceo-section { background: var(--navy); position: relative; overflow: hidden; }
.ceo-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.ceo-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
html[lang="ar"] .ceo-inner { direction: rtl; }

.ceo-photo-wrap {
  position: relative;
}
.ceo-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid rgba(201,162,39,0.3);
  position: relative;
  background: var(--navy-mid);
}
.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(8%) contrast(1.05);
}
.ceo-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-light));
}
.ceo-photo-placeholder svg { width: 80px; height: 80px; stroke: var(--gold); fill: none; stroke-width: 1; opacity: 0.4; }
.ceo-photo-placeholder p { color: rgba(255,255,255,0.3); font-size: 0.85rem; text-align: center; padding: 0 20px; }
/* Gold corner accent */
.ceo-photo::before {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 2;
}
html[lang="ar"] .ceo-photo::before { top: -3px; right: -3px; border-top-width: 3px; border-right-width: 3px; border-radius: 0 var(--radius-xl) 0 0; }
html[lang="en"] .ceo-photo::before { top: -3px; left: -3px;  border-top-width: 3px; border-left-width: 3px;  border-radius: var(--radius-xl) 0 0 0; }

.ceo-badge {
  position: absolute;
  bottom: -16px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
html[lang="ar"] .ceo-badge { right: -16px; text-align: right; }
html[lang="en"] .ceo-badge { left: -16px; }

.ceo-content { padding-bottom: 16px; }
.ceo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.ceo-name {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
}
.ceo-title-pos {
  font-size: 1rem;
  color: var(--teal-light);
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.ceo-bio {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 520px;
}
.ceo-quote {
  padding: 20px 24px;
  background: rgba(201,162,39,0.07);
  border-radius: var(--radius);
  margin-bottom: 32px;
  position: relative;
}
html[lang="ar"] .ceo-quote { border-right: 3px solid var(--gold); }
html[lang="en"] .ceo-quote { border-left: 3px solid var(--gold); }
.ceo-quote p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
}

@media (max-width: 960px) {
  .ceo-inner { grid-template-columns: 1fr; gap: 48px; }
  .ceo-photo-wrap { max-width: 360px; margin: 0 auto; }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,153,181,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,153,181,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,181,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner .section-label { justify-content: center; }
.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.cta-desc {
  color: rgba(255,255,255,0.58);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.85;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
html[lang="ar"] .page-hero__breadcrumb { flex-direction: row-reverse; justify-content: flex-end; }
.page-hero__breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: var(--gold); }
.page-hero__breadcrumb .sep { opacity: 0.35; }
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero__desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.58);
  max-width: 580px;
  line-height: 1.85;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border-bottom: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-card__icon {
  width: 56px; height: 56px;
  background: rgba(0,153,181,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-card__icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.value-card__title { font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.value-card__desc  { font-size: 0.85rem; color: var(--text-light); line-height: 1.8; }

.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.vm-card { padding: 36px; border-radius: var(--radius-lg); }
.vm-card--vision  { background: var(--navy); color: var(--white); }
.vm-card--mission { background: var(--gold); color: var(--navy); }
.vm-card__label { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; opacity: 0.65; margin-bottom: 10px; }
.vm-card__title { font-size: 1.4rem; font-weight: 900; margin-bottom: 14px; }
.vm-card__text  { font-size: 0.9rem; line-height: 1.85; opacity: 0.82; }

@media (max-width: 760px) {
  .about-intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .vision-mission    { grid-template-columns: 1fr; }
}

/* =============================================
   SERVICES DETAIL
   ============================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse .service-detail__visual { order: 2; }
.service-detail--reverse .service-detail__content { order: 1; }
html[lang="ar"] .service-detail--reverse .service-detail__visual  { order: unset; }
html[lang="ar"] .service-detail--reverse .service-detail__content { order: unset; }
.service-detail__visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,162,39,0.12);
}
.service-detail__visual-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.service-detail__visual svg { width: 90px; height: 90px; fill: var(--gold); opacity: 0.13; position: relative; }
.service-detail__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px;
}
.service-detail__tag::before { content: ''; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; flex-shrink: 0; }
html[lang="ar"] .service-detail__tag { direction: ltr; flex-direction: row-reverse; }
.service-detail__title { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin-bottom: 14px; line-height: 1.25; }
.service-detail__desc  { font-size: 0.96rem; color: var(--text-light); line-height: 1.9; margin-bottom: 28px; }
.service-detail__features { display: flex; flex-direction: column; gap: 12px; }
.service-feature { display: flex; gap: 12px; align-items: flex-start; }
html[lang="ar"] .service-feature { flex-direction: row-reverse; }
.service-feature__check {
  width: 22px; height: 22px;
  background: rgba(0,153,181,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.service-feature__check svg { width: 12px; height: 12px; stroke: var(--teal); stroke-width: 2.5; fill: none; }
.service-feature__text { font-size: 0.9rem; color: var(--text-light); }

@media (max-width: 860px) {
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail--reverse .service-detail__visual,
  .service-detail--reverse .service-detail__content { order: unset; }
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--light-gray) 20%, var(--light-gray) 80%, transparent);
}
.process-step { text-align: center; padding: 32px 16px; }
.process-step__num {
  width: 80px; height: 80px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: var(--navy);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.process-step:hover .process-step__num { border-color: var(--teal); background: var(--teal); color: var(--white); }
.process-step__title { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.process-step__desc  { font-size: 0.82rem; color: var(--text-light); line-height: 1.75; }

/* =============================================
   PROJECTS
   ============================================= */
.projects-cta {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  border: 1px solid var(--light-gray);
}
.projects-cta__icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.projects-cta__icon svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.projects-cta__title { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.projects-cta__desc  { font-size: 0.95rem; color: var(--text-light); max-width: 480px; margin: 0 auto 32px; line-height: 1.85; }

/* =============================================
   CONTACT
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info__title { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.contact-info__desc  { font-size: 0.92rem; color: var(--text-light); margin-bottom: 40px; line-height: 1.85; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
html[lang="ar"] .contact-item { flex-direction: row-reverse; }
.contact-item__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.contact-item__label { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--mid-gray); font-weight: 700; margin-bottom: 4px; }
.contact-item__value { font-size: 0.95rem; color: var(--text); font-weight: 600; line-height: 1.65; }
.contact-item__value a { color: var(--teal); transition: color var(--transition); }
.contact-item__value a:hover { color: var(--teal-light); }

/* Teal email highlight */
.contact-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 6px;
}
.contact-highlight svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.contact-form-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--light-gray);
}
.form-title { font-size: 1.3rem; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.form-desc  { font-size: 0.88rem; color: var(--text-light); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  border: 1.5px solid #dae0ea;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  font-family: var(--font);
  direction: inherit;
}
html[lang="ar"] .form-input,
html[lang="ar"] .form-select,
html[lang="ar"] .form-textarea { text-align: right; }
.form-textarea { min-height: 130px; resize: vertical; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,153,181,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: #aab5c2; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
.form-note { font-size: 0.78rem; color: var(--mid-gray); text-align: center; margin-top: 14px; }

@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SOCIAL LINKS
   ============================================= */
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.social-link:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.social-link svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.7); }
.social-link:hover svg { fill: var(--white); }

/* Facebook icon specifics */
.social-link--fb:hover { background: #1877f2; border-color: #1877f2; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
  border-top: 4px solid var(--gold);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer__logo-img { height: 48px; width: auto; }
.footer__logo-name { font-size: 1rem; font-weight: 800; color: var(--white); }
.footer__brand-desc { font-size: 0.85rem; line-height: 1.85; max-width: 280px; }
.footer__col-title {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition), padding var(--transition);
}
html[lang="ar"] .footer__link:hover { color: var(--gold); padding-right: 4px; }
html[lang="en"] .footer__link:hover { color: var(--gold); padding-left: 4px; }
.footer__contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item { display: flex; gap: 10px; align-items: flex-start; }
html[lang="ar"] .footer__contact-item { flex-direction: row-reverse; }
.footer__contact-item svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.footer__contact-item span, .footer__contact-item a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--teal-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  gap: 16px;
  flex-wrap: wrap;
}
html[lang="ar"] .footer__bottom { flex-direction: row-reverse; }
.footer__copy { color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__legal a:hover { color: var(--gold); }
.footer__fb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1877f2;
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 16px;
  transition: background var(--transition), transform var(--transition);
}
.footer__fb-link:hover { background: #1565d8; transform: translateY(-1px); }
.footer__fb-link svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: unset; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   MAP PLACEHOLDER
   ============================================= */
.map-placeholder {
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  aspect-ratio: 16/9;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.map-placeholder svg { width: 36px; height: 36px; stroke: var(--mid-gray); fill: none; stroke-width: 1.5; }
.map-placeholder p { font-size: 0.82rem; color: var(--mid-gray); text-align: center; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}
html[lang="ar"] .whatsapp-float { left: 32px; }
html[lang="en"] .whatsapp-float { right: 32px; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 32px;
  z-index: 900;
  width: 48px; height: 48px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,162,39,0.45);
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0;
  pointer-events: none;
}
html[lang="ar"] .scroll-top { right: 32px; }
html[lang="en"] .scroll-top { right: 32px; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 2.5; }

/* =============================================
   ANIMATIONS / REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero__content { padding-top: 100px; padding-bottom: 48px; }
  .hero__stats { gap: 28px; }
  .projects-cta { padding: 36px 20px; }
  .contact-form-wrapper { padding: 24px 18px; }
}
