/* =========================================================
   Visalen Import Export — Global Stylesheet
   Light theme, corporate, clean, responsive
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --color-red: #e6382f;
  --color-red-dark: #c22a22;
  --color-red-soft: #fdeceb;
  --color-dark: #161719;
  --color-text: #2b2f36;
  --color-muted: #6b7280;
  --color-light: #ffffff;
  --color-soft: #f7f8fa;
  --color-border: #e6e8ec;
  --color-section: #fafafa;

  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(22, 23, 25, 0.04);
  --shadow: 0 12px 30px rgba(22, 23, 25, 0.08);
  --shadow-hover: 0 18px 44px rgba(22, 23, 25, 0.12);

  --header-h: 76px;
  --topbar-h: 40px;
  --transition: all 0.2s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

.section-soft { background: var(--color-soft); }
.section-tint { background: var(--color-section); }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-red);
  display: inline-block;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--color-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}
.btn-primary:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--color-red);
  border-color: var(--color-red);
}
.btn-secondary:hover {
  background: var(--color-red-soft);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-dark);
}
.text-link::after {
  content: "→";
  transition: var(--transition);
  color: var(--color-red);
}
.text-link:hover { color: var(--color-red); }
.text-link:hover::after { transform: translateX(4px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Header ---------- */
/* ---------- RTL (Arabic / Persian) ---------- */
[dir="rtl"] .lang-switch { flex-wrap: wrap; }
[dir="rtl"] .hero-slider::after {
  background: linear-gradient(265deg, rgba(15,16,18,0.92) 0%, rgba(15,16,18,0.74) 44%, rgba(15,16,18,0.32) 100%);
}
[dir="rtl"] .ha-hero-bg::after {
  background: linear-gradient(265deg, rgba(16,17,19,0.94) 0%, rgba(16,17,19,0.78) 42%, rgba(16,17,19,0.35) 100%);
}
[dir="rtl"] .ha-banner::after {
  background: linear-gradient(270deg, rgba(198,42,34,0.94) 0%, rgba(22,23,25,0.72) 60%, rgba(22,23,25,0.5) 100%);
}
[dir="rtl"] .eyebrow::before { margin-left: 8px; }
[dir="rtl"] .text-link::after { content: "←"; }
[dir="rtl"] .breadcrumb { direction: rtl; }

/* ---------- Top bar (contact + language) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 101;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-h);
}
.topbar-contact { display: flex; align-items: center; gap: 10px; }
.topbar-contact a { color: rgba(255, 255, 255, 0.72); }
.topbar-contact a:hover { color: #fff; }
.topbar-contact span { opacity: 0.4; }
.lang-switch { display: flex; gap: 6px; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover { border-color: #fff; color: #fff; }
.lang-btn.active { background: var(--color-red); border-color: var(--color-red); color: #fff; }

.site-header {
  position: sticky;
  top: var(--topbar-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav > nav { margin-left: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-dark);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Nav buttons: tidy padding so they sit neatly in the bar */
.nav-menu li .btn {
  padding: 10px 22px;
  font-size: 0.9rem;
}
.nav-menu li .btn::after { display: none; }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (Home) ---------- */
.hero {
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(230, 56, 47, 0.06), transparent 60%),
    var(--color-soft);
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--color-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-bottom: 20px;
}
.hero .hero-sub {
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 16px;
}
.hero .hero-support {
  color: var(--color-muted);
  margin-bottom: 30px;
  max-width: 560px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}
.trust-badges li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
}

/* Hero visual: world/trade collage built with CSS */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 0.92;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, #fff 0%, var(--color-soft) 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .map-svg {
  width: 88%;
  height: auto;
  opacity: 0.95;
}
.hero-visual .float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
}
.float-card .dot {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--color-red-soft);
  display: flex; align-items: center; justify-content: center;
}
.float-card .dot svg { width: 18px; height: 18px; color: var(--color-red); }
.hero-visual .fc-1 { top: 20px; left: 20px; }
.hero-visual .fc-2 { bottom: 24px; right: 20px; }
.hero-visual .fc-3 { bottom: 34%; left: 14px; }

/* ---------- Home Hero Slider ---------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-bottom: 1px solid var(--color-border);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 6s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slider::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(95deg, rgba(15,16,18,0.92) 0%, rgba(15,16,18,0.74) 44%, rgba(15,16,18,0.32) 100%);
}
.hero-slider .container { position: relative; z-index: 2; padding: 112px 0 96px; }
.hero-slider .eyebrow { color: #ff8079; }
.hero-slider .eyebrow::before { background: #ff8079; }
.hero-slider h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.3rem); max-width: 840px; margin-bottom: 18px; }
.hero-slider .hero-sub { color: rgba(255,255,255,0.94); font-size: 1.18rem; max-width: 660px; margin-bottom: 14px; }
.hero-slider .hero-support { color: rgba(255,255,255,0.74); max-width: 640px; margin-bottom: 30px; }
.hero-slider .trust-badges li { color: #fff; }
.hero-slider .trust-badges li::before { background: var(--color-red); }
.hero-dots { display: flex; gap: 10px; margin-top: 40px; }
.hero-dot {
  width: 11px; height: 11px; padding: 0;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
}
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dot.active { background: var(--color-red); width: 28px; border-radius: 6px; }
@media (max-width: 720px) {
  .hero-slider .container { padding: 72px 0 64px; }
}

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 300px at 85% -30%, rgba(230, 56, 47, 0.06), transparent 60%),
    var(--color-soft);
  border-bottom: 1px solid var(--color-border);
  padding: 64px 0;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 14px;
}
.page-hero p {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 640px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--color-red); }
.breadcrumb span { color: var(--color-border); }
.page-hero .btn-row { margin-top: 28px; }

/* ---------- Cards Grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: transparent;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-red);
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Product preview card (with visual band) */
.product-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.product-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}
.product-card .thumb svg,
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .thumb svg,
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.product-card p { color: var(--color-muted); font-size: 0.9rem; margin-bottom: 16px; flex: 1; }

/* Card media band (service cards, generic) */
.card-media {
  margin: -28px -28px 20px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-media svg, .card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.card:hover .card-media svg, .card:hover .card-media img { transform: scale(1.06); }

/* Media frame for product detail rows */
.media-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.media-frame svg, .media-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.detail-block:hover .media-frame svg,
.detail-block:hover .media-frame img { transform: scale(1.05); }
.detail-block.with-media { grid-template-columns: 240px 1fr; align-items: start; }
@media (max-width: 720px) {
  .detail-block.with-media { grid-template-columns: 1fr; }
}

/* ---------- Intro / Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }

.info-panel {
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.info-panel.red {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
}
.info-panel.red h3, .info-panel.red h2 { color: #fff; }
.info-panel.red p { color: rgba(255,255,255,0.75); }

/* ---------- Detailed product / service blocks ---------- */
.detail-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
}
.detail-block:hover { box-shadow: var(--shadow); }
.detail-block .num {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--color-red-soft);
  color: var(--color-red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
}
.detail-block .num svg { width: 26px; height: 26px; }
.detail-block h3 { font-size: 1.25rem; margin-bottom: 12px; }
.detail-block p { color: var(--color-muted); margin-bottom: 12px; }
.detail-block p:last-child { margin-bottom: 0; }

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  padding: 5px 11px;
  border-radius: 100px;
}

/* Feature list (checks) */
.feature-list {
  display: grid;
  gap: 12px;
}
.feature-list.cols-2 { grid-template-columns: 1fr 1fr; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text);
}
.feature-list li::before {
  content: "";
  flex: none;
  margin-top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e6382f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--color-dark);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.step h4 { font-size: 1rem; }

/* ---------- Regions ---------- */
.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.region-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
}
.region-tag svg { width: 16px; height: 16px; color: var(--color-red); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-red);
  letter-spacing: -0.02em;
}
.stat p { color: var(--color-muted); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 100% 0%, rgba(230,56,47,0.35), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 620px; margin: 0 auto 28px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, var(--color-soft), #eef0f3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: default;
}
.gallery-item svg { width: 34px; height: 34px; color: var(--color-red); opacity: 0.8; }
.gallery-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-card .ic {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-red-soft);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ic svg { width: 22px; height: 22px; color: var(--color-red); }
.contact-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--color-muted); font-size: 0.95rem; }
.contact-card a:hover { color: var(--color-red); }

/* Form */
.form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-soft);
  transition: var(--transition);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-red);
  background: #fff;
  box-shadow: 0 0 0 3px var(--color-red-soft);
}
.form-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-red-soft);
  color: var(--color-red-dark);
  font-size: 0.92rem;
  display: none;
}
.form-note.show { display: block; }

/* Map placeholder */
.map-placeholder {
  margin-top: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-soft), #eef0f3);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 30px;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--color-red); }
.map-placeholder h4 { font-size: 1.1rem; }
.map-placeholder p { color: var(--color-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 18px;
  /* logo is dark text on transparent — put it on a light chip for dark footer */
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
}
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col li { font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--color-red); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--color-red); }
.footer-bottom a:hover { color: #fff; }

/* ---------- UNGM Official Supplier ---------- */
.ungm-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid #1c72c7;
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}
.ungm-banner .ungm-logo {
  height: 58px;
  width: auto;
  flex: none;
}
.ungm-banner .ungm-text { flex: 1; min-width: 220px; }
.ungm-banner .ungm-text .kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c72c7;
  margin-bottom: 4px;
}
.ungm-banner .ungm-text h3 { font-size: 1.15rem; margin-bottom: 4px; }
.ungm-banner .ungm-text p { color: var(--color-muted); font-size: 0.92rem; }
.ungm-banner .ungm-no {
  flex: none;
  text-align: center;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: #eaf3fc;
  color: #1c5fa0;
}
.ungm-banner .ungm-no span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}
.ungm-banner .ungm-no strong { font-size: 1.15rem; }

/* Compact UNGM chip (hero / trust strips) */
.ungm-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 8px 18px 8px 10px;
  box-shadow: var(--shadow-sm);
}
.ungm-chip img { height: 30px; width: auto; }
.ungm-chip .txt { font-size: 0.85rem; font-weight: 600; color: var(--color-dark); line-height: 1.25; }
.ungm-chip .txt small { display: block; color: var(--color-muted); font-weight: 500; font-size: 0.75rem; }

/* Footer UNGM */
.footer-ungm {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
}
.footer-ungm img { height: 34px; width: auto; background: #fff; border-radius: 6px; padding: 5px 7px; }
.footer-ungm .txt { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.35; }
.footer-ungm .txt strong { color: #fff; }

@media (max-width: 720px) {
  .ungm-banner { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* =========================================================
   Humanitarian Aid — modern layout
   ========================================================= */
.ha-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.ha-hero-bg { position: absolute; inset: 0; z-index: 0; }
.ha-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.ha-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(16,17,19,0.94) 0%, rgba(16,17,19,0.78) 42%, rgba(16,17,19,0.35) 100%);
}
.ha-hero .container { position: relative; z-index: 1; padding: 104px 0; }
.ha-hero .breadcrumb { color: rgba(255,255,255,0.7); }
.ha-hero .breadcrumb a:hover { color: #fff; }
.ha-hero .breadcrumb span { color: rgba(255,255,255,0.4); }
.ha-hero .eyebrow { color: #ff8079; }
.ha-hero .eyebrow::before { background: #ff8079; }
.ha-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 780px; margin-bottom: 18px; }
.ha-hero .ha-lead { color: rgba(255,255,255,0.92); font-size: 1.18rem; max-width: 640px; margin-bottom: 14px; }
.ha-hero .ha-sub { color: rgba(255,255,255,0.74); max-width: 640px; }
.ha-hero .btn-row { margin-top: 30px; }
.ha-hero .ungm-chip { margin-top: 26px; }

/* Modern image for split sections */
.media-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.media-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.split:hover .media-img img { transform: scale(1.04); }

/* Focus image cards with overlay */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.focus-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.focus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.focus-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.6s ease; }
.focus-card::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(14,15,17,0.94) 0%, rgba(14,15,17,0.55) 45%, rgba(14,15,17,0.05) 100%);
}
.focus-card:hover img { transform: scale(1.07); }
.focus-card .fc-body { position: relative; z-index: 2; padding: 28px; }
.focus-card .fc-tag {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px; margin-bottom: 14px;
}
.focus-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 10px; }
.focus-card p { color: rgba(255,255,255,0.86); font-size: 0.92rem; }

/* Full-width image banner strip */
.ha-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  color: #fff;
}
.ha-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ha-banner::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(198,42,34,0.94) 0%, rgba(22,23,25,0.72) 60%, rgba(22,23,25,0.5) 100%);
}
.ha-banner .banner-inner { position: relative; z-index: 2; padding: 48px; max-width: 640px; }
.ha-banner .banner-inner h2 { color: #fff; margin-bottom: 12px; }
.ha-banner .banner-inner p { color: rgba(255,255,255,0.9); }

/* Modern "who we serve" cards */
.serve-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.serve-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--color-red);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.25s ease;
}
.serve-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: transparent; }
.serve-card:hover::before { transform: scaleY(1); }
.serve-card .card-icon { margin-bottom: 16px; }
.serve-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.serve-card p { color: var(--color-muted); font-size: 0.92rem; }

/* Process timeline (modern) */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tl-step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  transition: var(--transition);
}
.tl-step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.tl-step .tl-num {
  font-size: 2rem; font-weight: 800; color: var(--color-red);
  opacity: 0.25; line-height: 1; margin-bottom: 10px;
}
.tl-step h4 { font-size: 1rem; }

@media (max-width: 960px) {
  .focus-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .ha-hero .container { padding: 72px 0; }
}
@media (max-width: 720px) {
  .timeline { grid-template-columns: 1fr; }
  .ha-banner .banner-inner { padding: 28px; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ---------- Utilities ---------- */
.mt-40 { margin-top: 40px; }
.text-center { text-center: center; text-align: center; }
.divider { height: 1px; background: var(--color-border); margin: 0; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 48px 0; }
  .hero { padding: 48px 0 56px; }

  .nav-menu {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 24px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    transform: translateY(-160%);
    transition: transform 0.28s ease;
    max-height: calc(100vh - var(--topbar-h) - var(--header-h));
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
  }
  .nav-menu a::after { display: none; }
  .nav-menu .btn { margin-top: 14px; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-desktop { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .feature-list.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 40px 24px; }
  .info-panel { padding: 28px; }
  .detail-block { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
