/* ============================================================
   MEDICAL EXCELLENCE — Global stylesheet
   Palette: Deep medical blue + Amber (from company logo)
   ============================================================ */

:root {
  --blue: #003A70;
  --blue-dark: #002A52;
  --blue-light: #0A5CA8;
  --amber: #F7A800;
  --amber-dark: #D98E00;
  --amber-light: #FFF4DC;
  --ink: #1A2733;
  --muted: #5A6B7C;
  --bg-soft: #F4F8FC;
  --line: #E2EAF3;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(0, 58, 112, 0.10);
  --shadow-lg: 0 20px 50px rgba(0, 58, 112, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-ar: 'Tajawal', 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 720px; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .section-sub { margin: 0 auto; }

section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--amber);
  color: var(--blue-dark);
  box-shadow: 0 8px 20px rgba(247, 168, 0, 0.35);
}
.btn-primary:hover { background: var(--amber-dark); color: #fff; }

.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { background: var(--amber); color: var(--blue-dark); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 6px 24px rgba(0, 58, 112, 0.12); }

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo { height: 52px; width: auto; }

.nav-desktop { display: flex; gap: 6px; }
.nav-link {
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--blue); background: var(--bg-soft); }
.nav-link.active { color: var(--blue-dark); background: var(--amber-light); }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  cursor: pointer;
  transition: background 0.2s;
}
.lang-btn:hover { background: var(--line); }
.lang-btn .fa-chevron-down { font-size: 0.65rem; }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 150px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: block;
  width: 100%;
  text-align: start;
  padding: 9px 14px;
  border: none;
  background: none;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.lang-option:hover { background: var(--bg-soft); }
.lang-option.active { background: var(--amber-light); color: var(--blue-dark); }

.btn-quote { padding: 10px 20px; font-size: 0.88rem; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #fff;
}
.nav-mobile.open { max-height: 420px; padding: 12px 24px 20px; }
.nav-mobile .nav-link { display: block; padding: 12px 14px; border-radius: var(--radius-sm); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-light) 100%);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,168,0,0.22), transparent 65%);
}
.hero::before { width: 520px; height: 520px; top: -180px; inset-inline-end: -140px; }
.hero::after { width: 420px; height: 420px; bottom: -200px; inset-inline-start: -120px; background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 65%); }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--amber); }

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--amber); display: block; }

.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 30px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-bottom: 36px; }
.hero-point { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.94rem; }
.hero-point i { color: var(--amber); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { display: flex; justify-content: center; }
.hero-logo-card {
  background: #fff;
  border-radius: 24px;
  padding: 42px 38px;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}
.hero-logo-card:hover { transform: rotate(0) scale(1.02); }
.hero-logo-card img { width: 100%; height: auto; }

/* Wave divider */
.hero-wave { display: block; width: 100%; margin-top: -2px; }

/* ============================================================
   SPECIALTY CARDS
   ============================================================ */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.spec-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.spec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--blue));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.spec-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.spec-card:hover::before { transform: scaleX(1); }

.spec-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 10px 22px rgba(0,58,112,0.25);
}
.spec-card:nth-child(3) .spec-icon { background: linear-gradient(135deg, var(--amber-dark), var(--amber)); box-shadow: 0 10px 22px rgba(247,168,0,0.35); }

.spec-card h3 { color: var(--blue); font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.spec-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.spec-link {
  font-weight: 700;
  color: var(--blue-light);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.spec-link i { transition: transform 0.25s; }
.spec-card:hover .spec-link i { transform: translateX(5px); }
body.rtl .spec-card:hover .spec-link i { transform: translateX(-5px) scaleX(-1); }
body.rtl .spec-link i { transform: scaleX(-1); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--amber-light);
  color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.why-card h3 { color: var(--blue); font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 72px 0;
}
.stats .section-title { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .plus { font-size: 0.6em; vertical-align: super; }
.stat-label { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.95rem; }

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.marquee { overflow: hidden; position: relative; padding: 10px 0; }
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
body.rtl .marquee-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

.brand-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue);
  white-space: nowrap;
}
.brand-chip i { color: var(--amber); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--amber), var(--amber-dark));
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--blue-dark);
  box-shadow: 0 20px 45px rgba(247,168,0,0.35);
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 8px; }
.cta-band p { font-weight: 600; opacity: 0.85; max-width: 520px; }
.cta-band .btn { background: var(--blue-dark); color: #fff; }
.cta-band .btn:hover { background: var(--blue); }

/* ============================================================
   PRODUCT CARDS & FILTERS
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--blue-light); color: var(--blue); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

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

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

.product-visual {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  color: #fff;
  position: relative;
}
.pv-cardio { background: linear-gradient(135deg, #003A70, #0A5CA8); }
.pv-pneumo { background: linear-gradient(135deg, #0A6E8C, #11A0B8); }
.pv-sleep  { background: linear-gradient(135deg, #3B2D6E, #6A4FC4); }
.pv-other  { background: linear-gradient(135deg, #55636F, #8496A6); }

.product-cat {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.placeholder-badge {
  position: absolute;
  bottom: 12px;
  inset-inline-end: 12px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

.product-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { color: var(--blue); font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.product-body p { color: var(--muted); font-size: 0.89rem; flex: 1; }
.product-link {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue-light);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.product-link:hover { color: var(--amber-dark); }

.catalog-note {
  margin-top: 48px;
  background: var(--amber-light);
  border-inline-start: 4px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.catalog-note i { color: var(--amber-dark); font-size: 1.2rem; margin-top: 2px; }
.catalog-note p { color: var(--ink); font-size: 0.95rem; font-weight: 600; }

/* ============================================================
   SPECIALTY DETAIL SECTIONS
   ============================================================ */
.spec-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.spec-detail:last-of-type { border-bottom: none; }
.spec-detail-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.spec-detail-head .spec-icon { margin: 0; width: 60px; height: 60px; font-size: 1.5rem; border-radius: 16px; }
.spec-detail h2 { color: var(--blue); font-size: 1.6rem; font-weight: 800; }
.spec-detail-desc { color: var(--muted); }

.equip-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.equip-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.equip-box.treat { background: var(--amber-light); border-color: #F3DFAF; }
.equip-box h4 {
  display: flex; align-items: center; gap: 9px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.equip-box h4 i { color: var(--amber-dark); }
.equip-box p { color: var(--ink); font-size: 0.92rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.page-hero .kicker { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: var(--amber); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 680px; margin: 0 auto; font-size: 1.05rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.about-visual img { width: 100%; height: auto; }

.about-text .kicker { margin-bottom: 14px; }
.about-text h2 { color: var(--blue); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.value-card h3 { color: var(--blue); font-weight: 800; margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { color: var(--muted); font-size: 0.89rem; }

.legal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.legal-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
}
.legal-item .lbl { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.legal-item .val { font-size: 1.05rem; font-weight: 800; color: var(--blue); direction: ltr; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}
.contact-card h2 { color: var(--blue); font-size: 1.4rem; font-weight: 800; margin-bottom: 22px; }

.contact-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item .ci {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--amber-light);
  color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item .lbl { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.contact-item .val { font-weight: 600; color: var(--ink); font-size: 0.97rem; }
.contact-item .val a:hover { color: var(--blue-light); }
.ltr-val { direction: ltr; unicode-bidi: plaintext; }

.bank-box {
  margin-top: 22px;
  background: var(--bg-soft);
  border: 1px dashed var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.bank-box h4 { color: var(--blue); font-size: 0.95rem; font-weight: 800; margin-bottom: 6px; display: flex; gap: 8px; align-items: center; }
.bank-box .rib { font-weight: 700; font-size: 0.98rem; direction: ltr; unicode-bidi: plaintext; color: var(--ink); }
.bank-box small { color: var(--muted); }

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 36px;
  box-shadow: var(--shadow);
}
.form-card h2 { color: var(--blue); font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--blue); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  display: none;
}
.form-status.ok { display: block; background: #E7F6EC; color: #1D7A3E; border: 1px solid #BCE4C8; }
.form-status.err { display: block; background: #FDECEC; color: #B42318; border: 1px solid #F5C6C2; }

.map-embed {
  margin-top: 44px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--blue-dark); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.2fr;
  gap: 48px;
  padding-bottom: 44px;
}
.footer-logo { height: 64px; width: auto; background: #fff; border-radius: 12px; padding: 8px 12px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; max-width: 340px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--amber); color: var(--blue-dark); transform: translateY(-3px); }

.footer-col h3 { color: #fff; font-size: 1.05rem; font-weight: 800; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.93rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }

.footer-contact li { display: flex; gap: 12px; margin-bottom: 12px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact i { color: var(--amber); margin-top: 4px; }
.footer-contact a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
}
.footer-legal { direction: ltr; unicode-bidi: plaintext; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 26px;
  inset-inline-end: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--amber); color: var(--blue-dark); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .spec-grid, .why-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { gap: 36px; }
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .btn-quote span { display: none; }
  .btn-quote { padding: 10px 14px; }
  .hero-grid, .about-grid, .contact-grid, .spec-detail { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-logo-card { max-width: 320px; padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0 80px; }
  .spec-grid, .why-grid, .values-grid, .products-grid, .legal-grid, .equip-cols, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 28px; text-align: center; justify-content: center; }
  .brand-logo { height: 42px; }
  .form-card, .contact-card { padding: 28px 22px; }
}

/* ============================================================
   2026 BRAND-ALIGNED REDESIGN
   White-led composition with blue structure and amber focus
   ============================================================ */
:root {
  --blue: #003A70;
  --blue-dark: #002B54;
  --blue-light: #176BA6;
  --amber: #F7A800;
  --amber-dark: #C98200;
  --amber-light: #FFF5DF;
  --ink: #182736;
  --muted: #5C6E7F;
  --bg-soft: #F5F8FB;
  --line: #DFE7EE;
  --shadow: 0 14px 34px rgba(0, 58, 112, 0.09);
  --shadow-lg: 0 26px 60px rgba(0, 58, 112, 0.15);
  --radius: 18px;
}

body { background: #fff; }
section { padding: 96px 0; }
.container { max-width: 1240px; }
.section-head { margin-bottom: 48px; }
.section-title { letter-spacing: -0.025em; }
.kicker {
  color: var(--blue);
  background: transparent;
  border: 0;
  border-inline-start: 3px solid var(--amber);
  border-radius: 0;
  padding: 2px 0 2px 11px;
}
.btn { min-height: 48px; }
.btn:focus-visible,
.nav-link:focus-visible,
.lang-btn:focus-visible,
.mega-menu a:focus-visible,
.filter-btn:focus-visible {
  outline: 3px solid rgba(247, 168, 0, 0.45);
  outline-offset: 3px;
}

/* Header + mega menu */
.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 58, 112, 0.12);
}
.header-topbar {
  max-height: 38px;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
  border-bottom: 2px solid var(--amber);
  transition: max-height 0.3s ease;
}
.header-topbar-inner {
  max-width: 1240px;
  min-height: 36px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.76rem;
  font-weight: 600;
}
.header-topbar-inner > span { display: inline-flex; align-items: center; gap: 8px; }
.header-topbar-inner i { color: var(--amber); }
.header-topbar-contact .fa-circle { font-size: 0.24rem; opacity: 0.75; }
.header-topbar a:hover { color: var(--amber); }
.header.scrolled .header-topbar { max-height: 0; }
.header-inner { position: relative; min-height: 76px; padding-block: 10px; }
.brand-logo { height: 54px; }
.nav-desktop { position: static; gap: 2px; }
.nav-link { color: #263746; border-radius: 9px; padding: 10px 13px; }
.nav-link:hover { color: var(--blue); background: rgba(0, 58, 112, 0.055); }
.nav-link.active { color: var(--blue); background: var(--amber-light); }
.mega-nav { position: static; }
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}
.mega-trigger .fa-chevron-down { color: var(--amber-dark); font-size: 0.64rem; transition: transform 0.25s ease; }
.mega-nav.active .mega-trigger { color: var(--blue); background: var(--amber-light); }
.mega-menu {
  position: absolute;
  z-index: 110;
  top: calc(100% - 1px);
  inset-inline: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.28fr;
  align-items: start;
  gap: 12px;
  padding: 22px;
  color: var(--ink);
  border: 1px solid rgba(0, 58, 112, 0.12);
  border-top: 3px solid var(--amber);
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 30px 64px rgba(0, 42, 82, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.32s cubic-bezier(.22,1,.36,1), visibility 0.24s;
}
.mega-nav:hover .mega-menu,
.mega-nav:focus-within .mega-menu,
.mega-nav.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-nav:hover .mega-trigger .fa-chevron-down,
.mega-nav:focus-within .mega-trigger .fa-chevron-down,
.mega-nav.open .mega-trigger .fa-chevron-down { transform: rotate(180deg); }
.mega-column { padding: 8px 10px; }
.mega-label {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mega-column a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 5px;
  color: #44596A;
  border-bottom: 1px solid rgba(0, 58, 112, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}
.mega-column a i { width: 18px; color: var(--amber-dark); text-align: center; }
.mega-column a:hover { color: var(--blue); transform: translateX(4px); }
.mega-feature { position: relative; height: 230px; overflow: hidden; border-radius: 14px; background: var(--blue); }
.mega-feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.64; transition: transform 0.6s cubic-bezier(.22,1,.36,1); }
.mega-feature:hover > img { transform: scale(1.055); }
.mega-feature::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 15%, rgba(0, 42, 82, 0.94)); }
.mega-feature-overlay { position: absolute; z-index: 2; inset: auto 20px 18px; color: #fff; }
.mega-feature-overlay > span { display: block; color: var(--amber); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.mega-feature-overlay strong { display: block; margin: 5px 0 10px; font-size: 1.05rem; line-height: 1.35; }
.mega-feature-overlay a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 0.86rem; font-weight: 700; }

/* Homepage hero */
.hero-redesign {
  padding: 0;
  color: #fff;
  background: #fff;
  overflow: hidden;
}
.hero-redesign::before,
.hero-redesign::after { display: none; }
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  max-width: 1500px;
  min-height: 610px;
  margin: 0 auto;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px clamp(32px, 5vw, 76px) 94px max(28px, calc((100vw - 1240px) / 2 + 24px));
  background: var(--blue);
}
body.rtl .hero-content { padding-inline: max(28px, calc((100vw - 1240px) / 2 + 24px)) clamp(32px, 5vw, 76px); }
.hero-content::after {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-end: -86px;
  width: 150px;
  height: 100%;
  background: var(--blue);
  clip-path: polygon(0 0, 58% 0, 0 100%);
}
body.rtl .hero-content::after { clip-path: polygon(42% 0, 100% 0, 100% 100%); }
.hero-redesign .hero-badge {
  width: fit-content;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}
.hero-redesign h1 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}
.hero-redesign h1 .highlight { color: var(--amber); }
.hero-redesign .hero-sub { max-width: 650px; color: rgba(255, 255, 255, 0.84); font-size: 1.04rem; }
.hero-redesign .hero-ctas { margin-top: 2px; }
.btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.65); background: transparent; }
.btn-ghost:hover { color: var(--blue); background: #fff; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 28px; color: rgba(255, 255, 255, 0.82); font-size: 0.82rem; font-weight: 600; }
.hero-assurances > span { display: inline-flex; align-items: center; gap: 8px; }
.hero-assurances i { color: var(--amber); }
.hero-media { position: relative; min-width: 0; min-height: 610px; overflow: hidden; background: #EAF0F4; }
.hero-media > img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; object-position: center; transform: scale(1.04); transition: transform 1.2s cubic-bezier(.22,1,.36,1); }
.site-ready .hero-media > img { transform: scale(1); }
.hero-media-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,58,112,.22), transparent 42%), linear-gradient(180deg, transparent 60%, rgba(0,42,82,.25)); }
.hero-floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 218px;
  padding: 13px 15px;
  color: var(--blue);
  border: 1px solid rgba(0,58,112,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 34px rgba(0,42,82,.16);
  backdrop-filter: blur(8px);
  animation: float-card 5.5s ease-in-out infinite;
}
.hero-floating-card-top { top: 42px; inset-inline-end: 34px; }
.hero-floating-card-bottom { bottom: 46px; inset-inline-start: 44px; animation-delay: -2.4s; }
.floating-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 40px; color: var(--blue); border-radius: 50%; background: var(--amber); }
.hero-floating-card strong,
.hero-floating-card small { display: block; }
.hero-floating-card strong { font-size: 0.87rem; }
.hero-floating-card small { color: var(--muted); font-size: 0.7rem; }
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-pulse {
  position: absolute;
  z-index: 5;
  inset-inline-start: max(28px, calc((100vw - 1240px) / 2 + 24px));
  bottom: 33px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: min(260px, 28vw);
  height: 24px;
  color: var(--amber);
}
.hero-pulse::before,
.hero-pulse::after { content: ''; height: 2px; flex: 1; background: currentColor; opacity: 0.8; }
.hero-pulse span { width: 2px; height: 8px; background: currentColor; animation: pulse-bars 1.8s ease-in-out infinite; }
.hero-pulse span:nth-child(2) { height: 22px; animation-delay: -.25s; }
.hero-pulse span:nth-child(3) { height: 13px; animation-delay: -.5s; }
.hero-pulse span:nth-child(4) { height: 19px; animation-delay: -.75s; }
.hero-pulse span:nth-child(5) { height: 7px; animation-delay: -1s; }
@keyframes pulse-bars { 0%, 100% { transform: scaleY(.65); opacity: .65; } 50% { transform: scaleY(1.15); opacity: 1; } }

.js .hero-content > * { opacity: 1; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1); }
.js .site-ready .hero-content > * { opacity: 1; transform: translateY(0); }
.js .site-ready .hero-content > *:nth-child(2) { transition-delay: .07s; }
.js .site-ready .hero-content > *:nth-child(3) { transition-delay: .14s; }
.js .site-ready .hero-content > *:nth-child(4) { transition-delay: .21s; }
.js .site-ready .hero-content > *:nth-child(5) { transition-delay: .28s; }

/* Trust rail */
.trust-rail { position: relative; z-index: 8; padding: 0; background: #fff; }
.trust-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -22px;
  border: 1px solid rgba(0,58,112,.11);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0,58,112,.13);
}
.trust-rail-grid > div { display: flex; align-items: center; gap: 13px; min-height: 88px; padding: 18px 20px; border-inline-end: 1px solid var(--line); }
.trust-rail-grid > div:last-child { border-inline-end: 0; }
.trust-rail-grid b { color: var(--amber-dark); font-size: .78rem; }
.trust-rail-grid strong,
.trust-rail-grid small { display: block; }
.trust-rail-grid strong { color: var(--blue); font-size: .92rem; }
.trust-rail-grid small { color: var(--muted); font-size: .75rem; }

/* Expertise */
.home-expertise { padding-top: 110px; background: #fff; }
.expertise-showcase { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.photo-composition { position: relative; min-height: 510px; }
.photo-main { position: absolute; inset: 0 18% 16% 0; width: 82%; height: 84%; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-lg); }
.photo-inset { position: absolute; inset: auto 0 0 auto; width: 52%; height: 48%; object-fit: cover; border: 8px solid #fff; border-radius: 18px; box-shadow: var(--shadow-lg); }
.photo-ring { position: absolute; inset: auto auto 18px 22px; width: 88px; height: 88px; border: 13px solid var(--amber); border-radius: 50%; }
.photo-caption { position: absolute; top: 28px; inset-inline-end: 6px; display: flex; align-items: center; gap: 10px; max-width: 210px; padding: 14px; color: var(--blue); border-radius: 13px; background: #fff; box-shadow: var(--shadow); }
.photo-caption > i { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 50%; background: var(--amber); }
.photo-caption strong,
.photo-caption small { display: block; }
.photo-caption strong { font-size: .84rem; }
.photo-caption small { color: var(--muted); font-size: .67rem; line-height: 1.35; }
.spec-grid-modern { grid-template-columns: repeat(2, 1fr); gap: 15px; }
.spec-grid-modern .spec-card { min-height: 230px; padding: 25px; text-align: start; }
.spec-grid-modern .spec-icon { width: 54px; height: 54px; margin: 0 0 17px; color: var(--blue); border-radius: 50%; background: var(--amber); box-shadow: 0 9px 22px rgba(247,168,0,.24); }
.spec-grid-modern .spec-number { position: absolute; top: 22px; inset-inline-end: 22px; color: rgba(0,58,112,.25); font-size: .76rem; font-weight: 800; letter-spacing: .1em; }
.spec-grid-modern .spec-card:nth-child(3) .spec-icon { color: var(--blue); background: var(--amber); }
.spec-grid-modern .spec-card h3 { font-size: 1.08rem; }
.spec-grid-modern .spec-card p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }

/* Selected solutions */
.solutions-section { background: rgba(0,58,112,.045); }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card { overflow: hidden; border: 1px solid rgba(0,58,112,.11); border-radius: 17px; background: #fff; box-shadow: 0 10px 28px rgba(0,58,112,.08); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease; }
.solution-card:hover { transform: translateY(-8px); box-shadow: 0 22px 42px rgba(0,58,112,.15); }
.solution-image { position: relative; height: 235px; overflow: hidden; }
.solution-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,42,82,.54)); }
.solution-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,1,.36,1); }
.solution-card:hover .solution-image img { transform: scale(1.055); }
.solution-image span { position: absolute; z-index: 2; bottom: 14px; inset-inline-start: 14px; padding: 6px 11px; color: var(--blue); border-radius: 999px; background: var(--amber); font-size: .74rem; font-weight: 800; }
.solution-copy { padding: 23px; }
.solution-copy h3 { color: var(--blue); font-size: 1.08rem; line-height: 1.35; }
.solution-copy p { margin-top: 8px; color: var(--muted); font-size: .88rem; }
.solution-copy a { display: inline-block; margin-top: 15px; color: var(--blue); border-bottom: 2px solid var(--amber); font-size: .84rem; font-weight: 800; }
.section-action { margin-top: 34px; text-align: center; }

/* Service journey */
.service-section { background: #fff; }
.service-flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-flow::before { content: ''; position: absolute; top: 36px; inset-inline: 10%; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 1s .18s cubic-bezier(.22,1,.36,1); }
body.rtl .service-flow::before { transform-origin: right; }
.service-flow.revealed::before { transform: scaleX(1); }
.service-step { position: relative; z-index: 2; padding: 0 14px; text-align: center; }
.service-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 18px; color: var(--blue); border: 2px solid var(--amber); border-radius: 50%; background: #fff; box-shadow: 0 10px 24px rgba(0,58,112,.1); transition: transform .36s ease, background .3s ease; }
.service-step:hover .service-icon { transform: translateY(-5px) rotate(-5deg); background: var(--amber); }
.service-index { position: absolute; top: -2px; inset-inline-start: calc(50% + 25px); color: var(--amber-dark); font-size: .7rem; font-weight: 800; }
.service-step h3 { color: var(--blue); font-size: 1rem; }
.service-step p { margin-top: 7px; color: var(--muted); font-size: .84rem; }

/* About split */
.home-about { display: grid; grid-template-columns: 1.03fr .97fr; max-width: 1500px; min-height: 520px; margin: 0 auto; padding: 0; border-block: 1px solid var(--line); background: #fff; }
.home-about-media { min-height: 520px; overflow: hidden; }
.home-about-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.home-about:hover .home-about-media img { transform: scale(1.025); }
.home-about-copy { align-self: center; max-width: 650px; padding: 68px clamp(34px, 6vw, 82px); }
.home-about-copy h2 { margin: 6px 0 18px; color: var(--blue); font-size: clamp(1.8rem, 3.5vw, 2.65rem); line-height: 1.2; letter-spacing: -.03em; }
.home-about-copy > p { color: var(--muted); }
.about-checks { display: grid; gap: 10px; margin: 24px 0; }
.about-checks li { display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: var(--blue); border-inline-start: 3px solid var(--amber); background: rgba(0,58,112,.045); font-size: .9rem; font-weight: 650; }
.about-checks i { color: var(--amber-dark); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: .88rem; font-weight: 800; }
.text-link i { color: var(--amber-dark); transition: transform .25s ease; }
.text-link:hover i { transform: translateX(5px); }

/* Partners */
.partners-section { background: rgba(0,58,112,.045); }
.partner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.partner-logo { display: grid; place-items: center; align-content: center; gap: 11px; min-height: 112px; padding: 20px; border: 1px solid rgba(0,58,112,.1); border-radius: 15px; background: #fff; box-shadow: 0 8px 24px rgba(0,58,112,.055); transition: transform .32s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .3s ease; }
.partner-logo img { max-width: 125px; max-height: 40px; opacity: .58; filter: grayscale(1); transition: opacity .3s ease, transform .3s ease; }
.partner-logo > span { color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .04em; opacity: .72; }
.partner-logo:first-child img { transform: scale(1.5); }
.partner-logo:hover { transform: translateY(-6px); border-color: var(--amber); box-shadow: 0 18px 34px rgba(0,58,112,.11); }
.partner-logo:hover img { opacity: .9; transform: scale(1.04); }
.partner-logo:first-child:hover img { transform: scale(1.57); }
.partner-note { margin: 17px auto 0; max-width: 780px; color: #708191; text-align: center; font-size: .72rem; }

/* Closing CTA */
.closing-section { padding: 72px 0 96px; background: #fff; }
.cta-band { position: relative; overflow: hidden; color: var(--blue-dark); background: var(--amber); box-shadow: 0 22px 48px rgba(247,168,0,.23); }
.cta-band::after { content: ''; position: absolute; width: 240px; height: 240px; inset-inline-end: -70px; top: -95px; border: 34px solid rgba(0,58,112,.11); border-radius: 50%; }
.cta-band > * { position: relative; z-index: 2; }
.cta-eyebrow { display: block; margin-bottom: 7px; color: rgba(0,42,82,.7); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* Interior pages inherit the same white-led visual system */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(115deg, #fff 0%, #fff 58%, #EEF4F8 58%, #DDEAF3 100%);
}
.page-hero::after { content: ''; position: absolute; width: 190px; height: 190px; inset-inline-end: 7%; top: -75px; border: 28px solid rgba(247,168,0,.55); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .kicker { color: var(--blue); border-color: var(--amber); background: transparent; }
.page-hero h1 { color: var(--blue); letter-spacing: -.035em; }
.page-hero p { color: var(--muted); }
.about-visual,
.contact-card,
.form-card,
.product-card,
.value-card { box-shadow: 0 12px 34px rgba(0,58,112,.08); }
.about-visual { position: relative; overflow: hidden; background: #fff; }
.about-visual { min-height: 500px; padding: 0; }
.about-photo { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.about-logo-panel { position: absolute; inset: auto 24px 24px; padding: 16px 18px; border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-lg); backdrop-filter: blur(8px); }
.about-logo-panel img { width: min(280px, 75vw); }
.product-card { border-color: rgba(0,58,112,.1); }
.product-visual { color: var(--blue); background-position: center; background-size: cover; }
.product-visual::before { content: ''; position: absolute; inset: 0; background: rgba(0,42,82,.42); }
.product-visual > i { position: relative; z-index: 2; display: grid; place-items: center; width: 76px; height: 76px; color: var(--blue); border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.pv-cardio { background-image: url('../images/medical-specialty.jpg'); }
.pv-pneumo { background-image: url('../images/medical-hero.jpg'); }
.pv-sleep { background-image: url('../images/medical-support.jpg'); }
.pv-other { background-image: url('../images/medical-specialty.jpg'); }
.product-cat,
.placeholder-badge { z-index: 3; }
.product-cat { color: var(--blue); border: 0; background: var(--amber); }
.placeholder-badge { color: #fff; background: rgba(0,42,82,.82); }
.spec-detail { scroll-margin-top: 135px; }
.equip-box { background: rgba(0,58,112,.045); }
.equip-box.treat { background: var(--amber-light); }
.footer { position: relative; background: var(--blue-dark); }
.footer::before { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: var(--amber); }

/* Text stays visible without JavaScript; motion is progressive enhancement */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 1; transform: translateY(26px); }
.js .reveal.revealed { opacity: 1; transform: translateY(0); }

/* RTL */
body.rtl .mega-column a:hover { transform: translateX(-4px); }
body.rtl .text-link i,
body.rtl .solution-copy a + i { transform: scaleX(-1); }
body.rtl .text-link:hover i { transform: translateX(-5px) scaleX(-1); }

/* Responsive */
@media (max-width: 1100px) {
  .header-topbar-inner > span:nth-child(2) { display: none; }
  .hero-shell { grid-template-columns: 1fr 1fr; }
  .hero-content { padding-inline-start: 34px; padding-inline-end: 42px; }
  .trust-rail-grid > div { padding-inline: 15px; }
  .expertise-showcase { gap: 28px; }
  .photo-composition { min-height: 455px; }
}

@media (max-width: 900px) {
  .header-topbar { display: none; }
  .header-inner { min-height: 70px; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-content { padding: 66px 28px 78px; }
  .hero-content::after { display: none; }
  .hero-media,
  .hero-media > img { min-height: 430px; }
  .hero-pulse { bottom: 26px; inset-inline-start: 28px; width: 220px; }
  .trust-rail-grid { grid-template-columns: repeat(2, 1fr); margin-top: 0; border-radius: 0; box-shadow: none; }
  .trust-rail-grid > div:nth-child(2) { border-inline-end: 0; }
  .trust-rail-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .expertise-showcase { grid-template-columns: 1fr; }
  .photo-composition { max-width: 650px; width: 100%; margin: 0 auto; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 10px); width: 100%; justify-self: center; }
  .home-about { grid-template-columns: 1fr; }
  .home-about-media,
  .home-about-media img { min-height: 420px; max-height: 520px; }
  .home-about-copy { max-width: 760px; }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 650px) {
  section { padding: 68px 0; }
  .container { padding-inline: 20px; }
  .header-actions { gap: 7px; }
  .lang-btn { padding: 8px 11px; }
  .hero-content { padding: 54px 21px 70px; }
  .hero-redesign h1 { font-size: clamp(2.2rem, 11vw, 3.15rem); }
  .hero-redesign .hero-sub { font-size: .95rem; }
  .hero-redesign .hero-ctas { align-items: stretch; flex-direction: column; }
  .hero-redesign .hero-ctas .btn { justify-content: center; }
  .hero-media,
  .hero-media > img { min-height: 360px; }
  .hero-floating-card { min-width: 190px; }
  .hero-floating-card-top { top: 20px; inset-inline-end: 18px; }
  .hero-floating-card-bottom { bottom: 20px; inset-inline-start: 18px; }
  .trust-rail-grid { grid-template-columns: 1fr; }
  .trust-rail-grid > div { border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .trust-rail-grid > div:last-child { border-bottom: 0; }
  .home-expertise { padding-top: 76px; }
  .photo-composition { min-height: 350px; }
  .photo-caption { display: none; }
  .photo-ring { width: 66px; height: 66px; border-width: 9px; }
  .spec-grid-modern,
  .solution-grid,
  .service-flow,
  .partner-grid { grid-template-columns: 1fr; }
  .solution-card:last-child { grid-column: auto; max-width: none; }
  .service-flow::before { display: none; }
  .service-step { padding: 10px 22px; }
  .home-about-copy { padding: 56px 24px; }
  .partner-logo { min-height: 96px; }
  .page-hero { background: linear-gradient(145deg, #fff 0%, #fff 72%, #EEF4F8 72%); }
  .page-hero::after { width: 130px; height: 130px; inset-inline-end: -45px; top: -58px; border-width: 18px; }
  .cta-band { padding: 40px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .js .hero-content > *,
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero-media > img,
  .hero-floating-card,
  .hero-pulse span,
  .service-flow::before { animation: none !important; transition: none !important; transform: none !important; }
}
