/* ============================================================
   Africa for Import & Export — Shared Stylesheet
   Clean & Professional · Navy + White
   ============================================================ */

:root {
  --navy:      #1e4d8c;
  --navy-dark: #163970;
  --navy-xdark:#0f2a52;
  --navy-light:#e8f0fb;
  --red:       #c0392b;
  --red-dark:  #992d22;
  --white:     #ffffff;
  --gray-50:   #f8f9fa;
  --gray-100:  #f0f2f5;
  --gray-200:  #e4e8ed;
  --gray-400:  #9aa3af;
  --gray-600:  #5a6472;
  --gray-800:  #2d3340;
  --text:      #1c2331;
  --text-muted:#5a6472;
  --radius:    6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 2px 8px rgba(0,0,0,.10);
  --shadow-lg: 0 4px 20px rgba(0,0,0,.12);
  --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Arabic / RTL support ── */
[lang="ar"] body,
body.rtl {
  direction: rtl;
  font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark span {
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-logo-text {
  line-height: 1.2;
}
.nav-logo-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo-text small {
  font-size: 11px;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 6px 14px;
  font-size: 14px;
  color: var(--gray-600);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  font-weight: 500;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--navy-light);
}
.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition);
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--navy-dark);
}
.lang-toggle {
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  margin-left: 8px;
}
.lang-toggle:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-600);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--gray-200);
  padding: 12px 0;
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 24px;
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--navy); background: var(--navy-light); }

/* ── Products dropdown ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-trigger .nav-dropdown-arrow {
  font-size: 10px;
  transition: transform var(--transition);
}
.nav-dropdown.open .nav-dropdown-arrow,
.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 700px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform 0.2s ease;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
  padding-top: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu-wide {
  min-width: 760px;
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 20px;
  gap: 8px;
}
.nav-dropdown-grid-4 {
  grid-template-columns: repeat(5, 1fr);
}
.nav-dropdown-col {
  padding: 8px;
}
.nav-dropdown-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gray-100);
}
.nav-dropdown-col a {
  display: block;
  padding: 6px 8px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-col a:hover {
  color: var(--navy);
  background: var(--navy-light);
}
.nav-dropdown-footer {
  border-top: 1px solid var(--gray-100);
  padding: 12px 20px;
  background: var(--gray-50);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.nav-dropdown-footer a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.nav-dropdown-footer a:hover { text-decoration: underline; }

/* ── Mobile products group ── */
.mobile-products-group {
  border-bottom: 1px solid var(--gray-100);
}
.mobile-products-label {
  padding: 12px 24px 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
}
.mobile-sub {
  display: block;
  padding: 9px 24px 9px 36px !important;
  font-size: 14px !important;
  color: var(--gray-600) !important;
  border-bottom: 1px solid var(--gray-100) !important;
}
.mobile-sub:hover { color: var(--navy) !important; background: var(--navy-light) !important; }
.mobile-sub-all {
  font-weight: 600 !important;
  color: var(--navy) !important;
}

/* ── Product page card ── */
.prod-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.prod-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.prod-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--gray-50);
  padding: 16px;
}
.prod-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 16px;
}
.prod-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-card-brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.prod-card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.prod-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.prod-card-specs {
  list-style: none;
  margin-bottom: 18px;
  flex: 1;
}
.prod-card-specs li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}
.prod-card-specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}
.prod-card-btn {
  display: block;
  text-align: center;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
}
.prod-card-btn:hover { background: var(--navy-dark); }

/* ── Product grid (3 cols) ── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .prod-grid { grid-template-columns: 1fr; }
}

/* ── Product category section ── */
.prod-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}
.prod-category-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.prod-category-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.prod-category-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Brand banner ── */
.brand-banner {
  background: var(--navy-light);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.brand-banner-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  flex-shrink: 0;
  min-width: 100px;
}
.brand-banner-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.brand-banner-info strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

/* ── CTA strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-xdark), var(--navy));
  color: white;
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-strip p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip .btn-white {
  display: inline-block;
  background: white;
  color: var(--navy);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: opacity var(--transition);
}
.cta-strip .btn-white:hover { opacity: 0.9; }

/* ── Products hub grid ── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.hub-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.hub-card-top {
  background: var(--navy);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hub-card-icon { font-size: 32px; }
.hub-card-title { font-size: 17px; font-weight: 700; color: white; }
.hub-card-body {
  padding: 16px 20px 20px;
  flex: 1;
}
.hub-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.hub-card-brand { font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; }
.hub-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.hub-card-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .nav-dropdown-menu { display: none; }
  .nav-dropdown-trigger .nav-dropdown-arrow { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-xdark) 0%, var(--navy) 60%, #2a5fa8 100%);
  color: white;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: white;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red);
  color: white;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.btn-navy {
  background: var(--navy);
  color: white;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--navy);
  transition: all var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: white; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.hero-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.hero-stat-num {
  font-size: 26px;
  font-weight: 700;
  color: white;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-img-main {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
}
.hero-img-main img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.hero-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-img-row img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.15);
}

/* ============================================================
   SECTOR STRIP
   ============================================================ */
.sector-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.sector-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.sector-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 24px;
  white-space: nowrap;
}
.sector-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sector-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.sector-chip:hover {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-light);
}
.sector-chip-icon {
  font-size: 16px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-50); }
.section-header {
  margin-bottom: 48px;
  text-align: center;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================================
   PRODUCT CATEGORY CARDS
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.cat-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: block;
  color: inherit;
}
.cat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.cat-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--gray-100);
}
.cat-card-body {
  padding: 18px 20px;
}
.cat-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 6px;
}
.cat-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.cat-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cat-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cat-card-link::after { content: ' →'; }

/* ============================================================
   PRODUCT DETAIL CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--gray-100);
}
.product-card-body { padding: 18px 20px; }
.product-card-brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.product-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.product-card-specs {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 8px 12px;
  margin-bottom: 14px;
  line-height: 1.7;
}
.product-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
  background: var(--navy-light);
  color: var(--navy);
}
.badge-cert {
  background: #d4edda;
  color: #155724;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.why-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-section {
  background: var(--navy-xdark);
  color: white;
  padding: 80px 0;
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.quote-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.25;
}
.quote-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}
.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.quote-contact-icon {
  font-size: 18px;
  width: 20px;
  text-align: center;
}
.quote-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-light);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--navy-dark); }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-item {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-400);
  letter-spacing: -0.5px;
  transition: color var(--transition);
}
.brand-item:hover { color: var(--navy); }

/* ============================================================
   COVERAGE MAP
   ============================================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.coverage-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.coverage-flag { font-size: 28px; margin-bottom: 10px; }
.coverage-region {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.coverage-countries {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-offices {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.footer-office-flag { margin-right: 6px; }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-icon { margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-xdark) 0%, var(--navy) 100%);
  color: white;
  padding: 56px 0;
}
.page-hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ============================================================
   ABOUT PAGE SPECIFICS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.office-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.office-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-top: 4px solid var(--navy);
}
.office-flag { font-size: 36px; margin-bottom: 12px; }
.office-country {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.office-address {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.cert-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.cert-chip {
  background: var(--navy-light);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
}

/* ============================================================
   PRODUCTS PAGE FILTER
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--navy-light);
}
.product-category-section {
  margin-bottom: 56px;
}
.product-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-200);
}
.product-cat-icon {
  font-size: 28px;
}
.product-cat-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.product-cat-count {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 12px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
}
.contact-info-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.contact-info-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-info-row:last-child { margin-bottom: 0; }
.contact-form-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ============================================================
   ALERT / SUCCESS
   ============================================================ */
.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .hero-visual { display: none; }
  .quote-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .office-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .lang-toggle { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 52px 0 44px; }
  .hero h1 { font-size: 24px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 24px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .hero-stat-num { font-size: 20px; }
}

/* ============================================================
   RTL ADJUSTMENTS
   ============================================================ */
body.rtl .nav-links { margin-left: 0; margin-right: auto; }
body.rtl .nav-logo { flex-direction: row-reverse; }
body.rtl .sector-label { margin-right: 0; margin-left: 24px; }
body.rtl .quote-contact-item { flex-direction: row-reverse; }
body.rtl .footer-contact-item { flex-direction: row-reverse; }
body.rtl .cat-card-link::after { content: ' ←'; }
body.rtl .breadcrumb { flex-direction: row-reverse; }
