:root {
  --navy: #0b2a43;
  --navy-dark: #071c2e;
  --teal: #1f8ea6;
  --mint: #d9f3f0;
  --gold: #d1a74f;
  --text: #0f1d2b;
  --muted: #5f6c78;
  --border: #dbe5ec;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(9, 30, 52, 0.12);
  --radius: 18px;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-heading: "Sora", "Segoe UI", sans-serif;
  --font-rtl: "Noto Naskh Arabic", "Source Sans 3", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at top left, #f7fbff 0%, #eef5fb 35%, #e9f0f7 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  margin: 0 0 12px;
  line-height: 1.2;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: #f6f9fc;
}

.section-accent {
  background: linear-gradient(120deg, #f0fbfa 0%, #ffffff 60%);
}

.section-brochure {
  background: linear-gradient(120deg, rgba(11, 42, 67, 0.07), rgba(31, 142, 166, 0.08));
}

.section-products {
  background: #ffffff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #0b2a43;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-icon {
  width: 72px;
  max-width: none;
  height: auto;
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--text);
}

.nav a {
  padding: 6px 8px;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus {
  background: #eef5fb;
}

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

.lang-switch {
  display: inline-flex;
  background: #eef5fb;
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.lang-btn.active {
  background: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.nav-toggle {
  border: none;
  background: transparent;
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 30px rgba(11, 42, 67, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(11, 42, 67, 0.22);
}

.btn-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(31, 142, 166, 0.18), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(209, 167, 79, 0.2), transparent 45%);
  pointer-events: none;
}

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

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2rem;
  color: var(--teal);
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 24px 0 28px;
  flex-wrap: wrap;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.trust-card h3 {
  font-size: 1rem;
}

.hero-panel {
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-title {
  font-weight: 700;
  color: var(--text);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 142, 166, 0.12);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.8rem;
}

.pill.subtle {
  background: #f0f4f8;
  color: var(--muted);
}

.network-map {
  position: relative;
  display: grid;
  gap: 14px;
  border-radius: 20px;
  background: linear-gradient(140deg, #eaf4f8, #f7fbff 65%);
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(11, 42, 67, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 20px rgba(9, 30, 52, 0.08);
}

.network-map::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(11, 42, 67, 0.18);
  border-radius: 16px;
  pointer-events: none;
}

.network-hub {
  position: relative;
  z-index: 1;
  justify-self: start;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(9, 30, 52, 0.2);
}

.network-region-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.network-region {
  border-radius: 12px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid rgba(11, 42, 67, 0.14);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.86rem;
  box-shadow: 0 8px 14px rgba(9, 30, 52, 0.08);
}

.network-map-v2 {
  border-radius: 20px;
  background: linear-gradient(145deg, #edf5fa, #f8fcff 70%);
  border: 1px solid rgba(11, 42, 67, 0.12);
  box-shadow: 0 10px 24px rgba(9, 30, 52, 0.08);
  padding: 16px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) 1.6fr;
  gap: 14px;
  align-items: stretch;
}

.network-hub-card {
  background: linear-gradient(160deg, var(--navy), #184364);
  border-radius: 14px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 12px 22px rgba(9, 30, 52, 0.22);
}

.network-region-list {
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(11, 42, 67, 0.22);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.network-region-item {
  background: #ffffff;
  border: 1px solid rgba(11, 42, 67, 0.12);
  border-radius: 10px;
  padding: 9px 10px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 6px 12px rgba(9, 30, 52, 0.06);
}

.panel-body {
  margin-bottom: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}

.section-subtitle {
  max-width: 520px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.category-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(9, 30, 52, 0.08);
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.wholesale-review {
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(140deg, #f5fafc, #ffffff 70%);
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.wholesale-review-text {
  max-width: 700px;
  margin: 0;
}

.product-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.search-field input {
  min-width: 260px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.results-count {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

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

.product-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-card img {
  height: 160px;
  object-fit: cover;
  background: var(--mint);
}

.product-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.specs strong {
  color: var(--text);
}

.no-results {
  margin-top: 16px;
  font-weight: 600;
  color: var(--muted);
}

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

.feature-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow);
}

.note {
  margin-top: 18px;
  font-weight: 600;
  color: var(--navy);
}

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

.about-cards {
  display: grid;
  gap: 20px;
}

.about-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow);
}

.brochure-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section-contact {
  background: #f7fafc;
}

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

.form-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.form-card label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}

input,
select,
textarea {
  font-family: var(--font-body);
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 18px 0 0;
}

.contact-link {
  color: var(--navy);
  font-weight: 700;
}

.contact-link:hover,
.contact-link:focus-visible {
  text-decoration: underline;
}

.site-footer {
  padding: 36px 0 48px;
  background: var(--navy-dark);
  color: #fff;
}

.site-footer p,
.site-footer h4 {
  color: #d6e4f2;
}

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

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
}

.footer-wordmark {
  width: 240px;
  height: auto;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .logo-icon {
    width: 58px;
    max-width: none;
    height: auto;
  }

  .footer-wordmark {
    width: 190px;
  }
}

@media (max-width: 560px) {
  .network-map-v2 {
    grid-template-columns: 1fr;
  }

  .network-region-list {
    grid-template-columns: 1fr;
  }

  .network-map {
    gap: 10px;
    padding: 14px;
  }

  .network-region-grid {
    grid-template-columns: 1fr;
  }

  .network-hub {
    font-size: 0.78rem;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .brochure-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px 0;
    display: none;
    border-bottom: 1px solid var(--border);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}

[dir="rtl"] body {
  font-family: var(--font-rtl);
}

[dir="rtl"] .header-inner,
[dir="rtl"] .section-head,
[dir="rtl"] .hero-copy,
[dir="rtl"] .about-grid,
[dir="rtl"] .contact-grid,
[dir="rtl"] .footer-grid {
  text-align: right;
}

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

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

[dir="rtl"] .hero-actions {
  justify-content: flex-end;
}
