/* ===========================================================
   TONZ — Premium Frozen Food Supply
   Production stylesheet
   =========================================================== */

:root {
  --navy-950: #050d18;
  --navy-900: #0a1628;
  --navy-850: #0c1c33;
  --navy-800: #0d1e35;
  --navy-700: #13294a;
  --gold-300: #e8c96d;
  --gold-400: #d4af37;
  --gold-500: #c9a84c;
  --gold-600: #a07830;
  --white: #ffffff;
  --off-white: #e8eef6;
  --muted: #9ab0c8;
  --body-text: #b9c9da;
  --border-gold: rgba(212, 175, 55, .35);
  --border-soft: rgba(255, 255, 255, .08);
  --glow-gold: rgba(212, 175, 55, .18);
  --steel-400: #93a9c4;
  --border-steel: rgba(147, 169, 196, .28);
  --steel-tint: rgba(147, 169, 196, .08);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 18px 44px rgba(0, 0, 0, .45);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
  --header-h: 70px;
  --container: 1140px;
}

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

html {
  font-size: 15px;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--navy-900);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity .2s ease;
}

body.fade-out {
  opacity: 0;
}

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

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

ul {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none
}

input,
select,
textarea {
  font-family: inherit
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--navy-950)
}

::-webkit-scrollbar-thumb {
  background: var(--navy-700);
  border-radius: 3px
}

.section-tag {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 14px;
}

.section-tag.center {
  text-align: center
}

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(5, 13, 24, .9) 0%, rgba(5, 13, 24, .45) 100%);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(6, 14, 26, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0
}

.logo-container img {
  width: clamp(46px, 4.5vw, 58px);
  height: clamp(46px, 4.5vw, 58px);
  object-fit: contain;
  padding: 4px;
  background: radial-gradient(circle, rgba(5, 13, 24, .55) 60%, transparent 100%);
  border-radius: 50%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .4));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .3px;
  line-height: 1;
}

.logo-text .dot {
  color: var(--gold-400)
}

.logo-text small {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-400);
  margin-top: 6px;
}

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

.nav-menu a {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: rgba(232, 238, 246, .82);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white)
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  transform: scaleX(1)
}

/* ---- "Company" dropdown: groups secondary pages so the main
   nav stays at 6 visible items ---- */
.nav-dropdown {
  position: relative;
}

.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: rgba(232, 238, 246, .82);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-drop-toggle svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-drop-toggle,
.nav-dropdown.open .nav-drop-toggle,
.nav-dropdown.has-active .nav-drop-toggle {
  color: var(--white);
}

.nav-dropdown:hover .nav-drop-toggle svg,
.nav-dropdown.open .nav-drop-toggle svg {
  transform: rotate(180deg);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  background: var(--navy-850);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}

.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown.open .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-menu li {
  display: block;
}

.nav-menu .nav-drop-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-menu .nav-drop-menu a::after {
  display: none;
}

.nav-menu .nav-drop-menu a:hover,
.nav-menu .nav-drop-menu a.active {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}

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

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950);
  padding: 11px 22px;
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .8px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, .4);
  filter: brightness(1.06)
}

.btn-gold svg {
  flex-shrink: 0
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--off-white);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}

.language-selector:hover {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .05)
}

.language-selector svg {
  transition: transform var(--transition)
}

.language-selector[aria-expanded="true"] svg {
  transform: rotate(180deg)
}

.lang-switcher {
  position: relative;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 170px;
  background: var(--navy-850);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-option:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}

.lang-option.active {
  color: var(--gold-400);
  background: rgba(255, 255, 255, .06);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  margin: 0 auto;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(6, 14, 26, .98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  z-index: 999;
}

.mobile-nav.open {
  max-height: 560px
}

.mobile-nav ul {
  padding: 8px 28px 0
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--off-white);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--gold-400)
}

.mobile-cta {
  display: block;
  margin: 18px 28px 26px;
  text-align: center
}

/* ===========================================================
   HERO
   =========================================================== */
.hero-section {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  scroll-snap-align: start;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: none !important;
  backdrop-filter: none !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Ultra-subtle left text scrim ONLY so truck and port stay 100% crystal clear */
  background: linear-gradient(90deg, rgba(5, 13, 24, 0.75) 0%, rgba(5, 13, 24, 0.35) 40%, rgba(5, 13, 24, 0) 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  padding: 36px 0 48px
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -.5px;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .65), 0 1px 3px rgba(0, 0, 0, .8);
}

.hero-content h1 .accent {
  color: var(--gold-400)
}

.hero-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}

.hero-content p {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 38px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .7px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), filter var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212, 175, 55, .4);
  filter: brightness(1.06)
}

/* Secondary actions read as quiet outlined buttons so the solid
   gold primary CTA stands out at a glance */
.btn-secondary {
  background: rgba(8, 18, 33, .35);
  border: 1px solid rgba(232, 238, 246, .3);
  color: var(--off-white);
  padding: 14px 29px;
  font-weight: 600;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}

.btn-primary svg,
.btn-secondary svg {
  flex-shrink: 0
}

.trust-badges {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px 64px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px 52px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .9px;
  color: var(--off-white);
  text-transform: uppercase;
  line-height: 1.45;
  white-space: nowrap;
}

.trust-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border-steel);
  background: var(--steel-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
}

.trust-icon svg {
  width: 24px;
  height: 24px
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about-section {
  padding: 64px 0;
  background: var(--navy-900);
}

.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  position: relative;
}

.about-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(145deg, rgba(147, 169, 196, .14), transparent 55%);
  pointer-events: none;
}

.about-media img {
  width: 100%;
  aspect-ratio: 2.2/1;
  object-fit: cover;
  display: block
}

.about-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
}

.about-text p {
  font-size: .95rem;
  color: var(--body-text);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 32px;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-steel);
  background: var(--steel-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
}

.feature-icon svg {
  width: 21px;
  height: 21px
}

.feature-item span:last-child {
  font-size: .82rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.4;
}

/* ===========================================================
   PRODUCTS
   =========================================================== */
.products-section {
  padding: 64px 0;
  background: var(--navy-850);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 56px
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
}

.products-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.products-grid.products-grid-catalog {
  grid-template-columns: repeat(3, 1fr);
}

.products-grid.products-grid-picker {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
}

.product-card {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .4);
}

.product-img-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(155deg, #e4ecf2, #c2d0dc);
  overflow: hidden;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.06)
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950);
  padding: 5px 11px;
  border-radius: 5px;
  z-index: 2;
}

.temp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3px;
  background: rgba(10, 22, 40, .82);
  backdrop-filter: blur(6px);
  color: #7dd3fc;
  padding: 5px 11px;
  border-radius: 20px;
  border: 1px solid rgba(125, 211, 252, .3);
  z-index: 2;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, .92) 0%, rgba(10, 22, 40, .1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.overlay-btn {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950);
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  width: 100%;
  text-align: center;
  transform: translateY(10px);
  transition: transform var(--transition);
}

.product-card:hover .overlay-btn {
  transform: translateY(0);
}

.product-info {
  padding: 22px
}

.product-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-info p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.spec-tag {
  display: inline-block;
  background: var(--steel-tint);
  border-left: 3px solid var(--steel-400);
  color: var(--off-white);
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3px;
  border-radius: 4px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.product-specs div {
  text-align: center;
}

.product-specs span {
  display: block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .6px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-specs strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--off-white);
}

/* ===========================================================
   QUALITY + EXPORT
   =========================================================== */
.quality-section {
  background: var(--navy-900)
}

/* ---- Logistics layout: photo + text column (Import & Distribution) ---- */
.quality-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 54px 32px;
  display: grid;
  grid-template-columns: .7fr 1.6fr;
  gap: 56px;
  align-items: center;
}

.quality-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  aspect-ratio: 2/1;
}

.quality-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* ---- Quality banner: photo + logo + heading + icons in one strip ---- */
.quality-banner {
  background: var(--navy-950);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  scroll-snap-align: start;
}

.quality-banner-row {
  display: flex;
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
}

.quality-banner-media {
  position: relative;
  flex: 0 0 300px;
  min-height: 340px;
}

.quality-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 150px 150px 0;
  box-shadow: inset 0 0 0 2px var(--border-steel);
}

.quality-banner-divider {
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
  margin: 36px 0;
  background: linear-gradient(to bottom, transparent, var(--border-gold) 15%, var(--border-gold) 85%, transparent);
}

.quality-banner-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 28px 36px;
  flex-wrap: wrap;
}

.quality-banner-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  padding-right: 32px;
}

.quality-banner-brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
}

.quality-banner-brand strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.quality-banner-brand small {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-top: 4px;
}

.quality-banner-heading {
  flex-shrink: 0;
  max-width: 260px;
  padding-left: 32px;
}

.quality-banner-heading h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 8px;
  line-height: 1.2;
}

.quality-banner-heading p {
  font-size: .78rem;
  color: var(--body-text);
  line-height: 1.6;
}

.quality-banner-icons {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.quality-banner-icon-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  min-width: 110px;
}

.quality-banner-icon-item .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border-steel);
  background: var(--steel-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
  margin-bottom: 10px;
  flex-shrink: 0;
}

.quality-banner-icon-item .icon-circle svg {
  width: 23px;
  height: 23px
}

.quality-banner-icon-item .icon-circle.halal-ico {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  direction: rtl;
}

.quality-banner-icon-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.quality-banner-icon-item p {
  font-size: .74rem;
  color: var(--body-text);
  line-height: 1.45;
}

/* ---- Export feature (full-bleed background banner) ---- */
.export-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  border-top: 1px solid var(--border-soft);
}

.export-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.export-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%
}

.export-panel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(5, 13, 24, .8) 28%, rgba(5, 13, 24, .45) 55%, rgba(5, 13, 24, .12) 80%),
    linear-gradient(0deg, rgba(5, 13, 24, .45) 0%, rgba(5, 13, 24, 0) 30%, rgba(5, 13, 24, 0) 65%, rgba(5, 13, 24, .55) 100%);
}

.export-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 48px;
}

.export-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 16px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .6);
}

.export-content p {
  font-size: .88rem;
  color: var(--body-text);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
}

.export-route {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.route-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.route-step-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--border-steel);
  background: rgba(13, 30, 53, .45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
  flex-shrink: 0;
}

.route-step-icon svg {
  width: 26px;
  height: 26px
}

.route-step span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.route-arrow {
  color: var(--muted);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  align-self: center;
  margin-top: -28px;
}

/* ===========================================================
   TARGET MARKET
   =========================================================== */
.target-section {
  padding: 56px 0;
  background: var(--navy-850);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}

.target-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px
}

.target-inner>.section-tag {
  text-align: center
}

.target-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.target-inner>p:not(.target-note) {
  font-size: .92rem;
  color: var(--body-text);
  margin-bottom: 44px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.target-card {
  position: relative;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.target-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.target-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: var(--shadow);
}

.target-card:hover img {
  transform: scale(1.08)
}

.target-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--off-white);
  max-width: 640px;
  margin: 0 auto;
}

.target-note svg {
  flex-shrink: 0;
  color: var(--steel-400)
}

.delivery-table-wrap {
  margin: 40px auto 0;
  max-width: 560px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.delivery-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .86rem;
}

.delivery-table thead tr {
  background: rgba(147, 169, 196, .1);
}

.delivery-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--off-white);
}

.delivery-table td {
  padding: 13px 20px;
  color: var(--off-white);
  border-top: 1px solid rgba(255,255,255,.06);
}

.delivery-table tbody tr:hover {
  background: rgba(255, 255, 255, .04);
}

.hub-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--steel-400);
  background: var(--steel-tint);
  border: 1px solid var(--border-steel);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ===========================================================
   PARTNERSHIP
   =========================================================== */
.partnership-section {
  padding: 64px 0;
  background: var(--navy-850);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.partnership-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.partnership-inner>.section-tag {
  text-align: center
}

.partnership-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}

.partnership-inner>p {
  font-size: .92rem;
  color: var(--body-text);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto 56px;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.partnership-item {
  padding: 32px 28px;
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
}

.partnership-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .18)
}

.p-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(147, 169, 196, .45);
  margin-bottom: 14px;
}

.partnership-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.partnership-item p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-section {
  padding: 64px 0;
  background: var(--navy-900);
  scroll-snap-align: start;
}

.contact-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-info-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-info-box p {
  font-size: .9rem;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 32px;
}

.info-details p {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 16px;
}

.info-details svg {
  flex-shrink: 0;
  color: var(--steel-400)
}

.info-details a {
  transition: color var(--transition)
}

.info-details a:hover {
  color: var(--gold-400)
}

.qr-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}

.qr-card img {
  border-radius: 6px;
  flex-shrink: 0;
  background: #fff;
  padding: 4px;
}

.qr-card span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 160px;
}

.contact-form-box {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 38px;
}

.supplier-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.b2b-form {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.b2b-form input,
.b2b-form select,
.b2b-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(5, 13, 24, .65);
  border: 1px solid var(--border-soft);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: .86rem;
  transition: border-color var(--transition), background var(--transition);
}

.b2b-form input::placeholder,
.b2b-form textarea::placeholder {
  color: var(--muted)
}

.b2b-form select {
  color: var(--muted)
}

.b2b-form select:valid {
  color: var(--white)
}

.b2b-form select option {
  background: var(--navy-800);
  color: var(--white)
}

.b2b-form input:focus,
.b2b-form select:focus,
.b2b-form textarea:focus {
  outline: none;
  border-color: rgba(147, 169, 196, .5);
  background: rgba(8, 18, 33, .85);
}

.b2b-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6
}

.btn-submit {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950);
  padding: 15px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212, 175, 55, .4);
  filter: brightness(1.06)
}

.btn-submit.success {
  background: linear-gradient(135deg, #34d399, #059669);
  color: #fff
}

.btn-submit:disabled {
  cursor: default
}

/* ===========================================================
   MAP EMBED
   =========================================================== */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  filter: grayscale(.15) brightness(.92) contrast(1.05);
}

.map-embed iframe {
  display: block;
}

/* ===========================================================
   FAQ ACCORDION
   =========================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--border-steel);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--steel-400);
  border: 1px solid var(--border-steel);
  border-radius: 50%;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 14px;
  font-size: .88rem;
  line-height: 1.75;
  color: var(--body-text);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border-soft);
  padding: 30px 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.footer-brand img {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, .2))
}

.footer-brand span {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand .dot {
  color: var(--gold-400)
}

.footer-copy {
  font-size: .84rem;
  color: var(--muted)
}

/* ===========================================================
   PAGE HERO (sub-page banners)
   =========================================================== */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  scroll-snap-align: start;
}

/* Subdued hero: drops the large photo background in favor of a
   navy gradient + soft gold glow, at a more compact height — used
   on pages where a calmer, less photo-heavy title bar reads as more
   professional than a full-bleed image. */
.page-hero.subdued {
  min-height: 28vh;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-850) 55%, var(--navy-900) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero.subdued::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 12%, rgba(147, 169, 196, .12), transparent 55%);
  pointer-events: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5, 13, 24, .93) 35%, rgba(5, 13, 24, .62) 75%, rgba(5, 13, 24, .4) 100%),
    linear-gradient(0deg, rgba(5, 13, 24, .4) 0%, rgba(5, 13, 24, 0) 40%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 48px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  transition: color var(--transition)
}

.breadcrumb a:hover {
  color: var(--gold-400)
}

.breadcrumb span {
  color: rgba(255, 255, 255, .3)
}

.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.4px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: .95rem;
  color: var(--body-text);
  line-height: 1.8;
  max-width: 560px;
}

/* ===========================================================
   CTA BANNER (slim cross-page links)
   =========================================================== */
.cta-banner {
  background: var(--navy-850);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 64px 0;
  scroll-snap-align: start;
}

.cta-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  font-size: .88rem;
  color: var(--body-text)
}

.cta-banner .btn-primary {
  flex-shrink: 0
}

/* ===========================================================
   GENERIC SECTION WRAPPERS (sub-pages)
   =========================================================== */
.std-section {
  padding: 60px 0;
  scroll-snap-align: start;
}

.std-section.alt {
  background: var(--navy-850);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft)
}

.std-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px
}

.std-header {
  max-width: 640px;
  margin-bottom: 48px
}

.std-header.center {
  margin: 0 auto 48px;
  text-align: center
}

.std-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
}

.std-header p {
  font-size: .92rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-top: 14px
}

/* Shared heading for sections that use a custom 2-column layout
   instead of the standard .std-header stack (same size/weight as
   .std-header h2, so headings stay visually consistent site-wide). */
.block-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}

/* ===========================================================
   ICON CARD (categories without product photography)
   =========================================================== */
.icon-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.icon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .4)
}

.icon-card .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  border: 1px solid var(--border-steel);
  background: var(--steel-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
  flex-shrink: 0;
}

.icon-card .icon-wrap svg {
  width: 24px;
  height: 24px
}

.icon-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white)
}

.icon-card p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.65
}

/* ===========================================================
   LEADERSHIP
   =========================================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px
}

.leader-card {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform var(--transition), border-color var(--transition);
}

.leader-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .18)
}

.leader-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--border-steel);
  background: var(--steel-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.leader-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px
}

.leader-card span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--steel-400)
}

.leader-bio {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  font-size: .85rem;
  font-style: italic;
  color: var(--body-text);
  line-height: 1.75;
}

/* ===========================================================
   PRESENCE / LOCATIONS (two-office trust cards)
   =========================================================== */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.presence-card {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.presence-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .4)
}

.presence-card.primary {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, .07), var(--navy-800) 45%);
}

.presence-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  color: var(--steel-400);
  background: var(--steel-tint);
  border: 1px solid var(--border-steel);
}

.presence-card.primary .presence-badge {
  color: var(--navy-900);
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.presence-card .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  border: 1px solid var(--border-steel);
  background: var(--steel-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
  margin-bottom: 18px;
}

.presence-card .icon-wrap svg {
  width: 24px;
  height: 24px
}

.presence-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 10px;
}

.presence-card p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.75;
}

.presence-trust {
  text-align: center;
  margin-top: 36px;
  font-size: .88rem;
  color: var(--body-text);
  font-style: italic;
}

/* ===========================================================
   COMPANY INFO TABLE
   =========================================================== */
.info-table {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-soft);
}

.info-row:last-child {
  border-bottom: none
}

.info-row dt {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .4px;
  color: var(--muted);
  text-transform: uppercase
}

.info-row dd {
  font-size: .9rem;
  font-weight: 600;
  color: var(--off-white)
}

/* ===========================================================
   PARTNER POINTS LIST
   =========================================================== */
.partner-points {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.partner-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.6;
}

.partner-points li svg {
  flex-shrink: 0;
  color: var(--steel-400);
  margin-top: 2px
}

/* Two-column variant (company profile compliance checklist) */
.partner-points.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 44px;
  max-width: 720px;
}

@media (max-width: 640px) {
  .partner-points.two-col {
    grid-template-columns: 1fr;
  }
}

/* Category pill chips (company profile) — same chip treatment
   as the distribution-network country chips */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pill-list > span {
  font-size: .84rem;
  font-weight: 600;
  color: var(--off-white);
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  padding: 10px 20px;
  border-radius: 999px;
}

/* ===========================================================
   PRODUCT DETAIL
   =========================================================== */
.product-detail {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.product-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  background: linear-gradient(155deg, #e4ecf2, #c2d0dc);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block
}

.product-detail-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.product-detail-info p.lead {
  font-size: .92rem;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 480px
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--off-white);
  background: var(--steel-tint);
  border: 1px solid var(--border-soft);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
}

.spec-list li svg {
  flex-shrink: 0;
  color: var(--steel-400)
}

/* ---- Product detail CTA hierarchy ----
   Primary: solid gold "Request a Quote". Secondary: gold-outlined
   "Add to Order" beside it. Utility actions (back link at top,
   spec-sheet download below) are quiet text links so they don't
   compete with the two real calls-to-action. */
.product-detail-info .back-to-blog {
  display: flex;
  width: fit-content;
  margin-bottom: 24px;
}

.product-cta-row {
  align-items: center;
}

.product-cta-row .add-to-order-btn {
  margin-top: 0;
  padding: 13px 26px;
  font-size: .8rem;
  letter-spacing: .6px;
  justify-content: center;
}

.spec-sheet-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--muted);
  transition: color var(--transition);
}

.spec-sheet-link:hover {
  color: var(--gold-400);
}

.spec-sheet-link svg {
  flex-shrink: 0;
}

/* ===========================================================
   EXPANDED FOOTER
   =========================================================== */
.site-footer {
  padding: 0
}

.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 48px 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-about .footer-brand {
  margin-bottom: 16px
}

.footer-about p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 300px
}

.footer-col h3 {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer-col a {
  font-size: .88rem;
  color: var(--muted);
  transition: color var(--transition)
}

.footer-col a:hover {
  color: var(--gold-400)
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 22px 48px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-steel);
  background: var(--steel-tint);
  color: var(--steel-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-social-icon:hover {
  transform: translateY(-3px);
  background: #25d366;
  border-color: #25d366;
  color: #06210f;
}

.footer-bottom .footer-inner {
  padding: 0;
  max-width: var(--container);
  margin: 0 auto
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 12px;
}

.hero-scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, .65);
  border-radius: 2px;
  animation: scrollCue 1.8s ease infinite;
}

@keyframes scrollCue {
  0% { opacity: 1; transform: translateY(0) }
  70% { opacity: 0; transform: translateY(10px) }
  100% { opacity: 0; transform: translateY(0) }
}

/* ===========================================================
   BY THE NUMBERS
   =========================================================== */
.stats-section {
  padding: 64px 0;
  background: var(--navy-900);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.stats-section .section-tag {
  margin-bottom: 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.stat-item {
  position: relative;
  padding: 20px 24px 22px;
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 140% at 50% 0%, rgba(147, 169, 196, .08), rgba(147, 169, 196, 0) 70%);
  box-shadow: inset 0 0 0 1px var(--border-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.stat-icon {
  position: relative;
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1.5px solid var(--border-steel);
  background: var(--steel-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
}

.stat-icon svg {
  width: 20px;
  height: 20px
}

/* Soft gold glow around each stat icon — same pulse used on the maps
   and the supply-chain flow diagrams, staggered left to right */
.stat-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  box-shadow: 0 0 16px 3px rgba(212, 175, 55, .22);
  opacity: .45;
  animation: ksaPulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

.stat-item:nth-child(2) .stat-icon::after {
  animation-delay: .4s;
}

.stat-item:nth-child(3) .stat-icon::after {
  animation-delay: .8s;
}

.stat-item:nth-child(4) .stat-icon::after {
  animation-delay: 1.2s;
}

.stat-item:nth-child(5) .stat-icon::after {
  animation-delay: 1.6s;
}

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-400);
  animation: statGlow 3.2s ease-in-out infinite;
}

.stat-item:nth-child(2) .stat-number {
  animation-delay: .4s;
}

.stat-item:nth-child(3) .stat-number {
  animation-delay: .8s;
}

.stat-item:nth-child(4) .stat-number {
  animation-delay: 1.2s;
}

.stat-item:nth-child(5) .stat-number {
  animation-delay: 1.6s;
}

@keyframes statGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, .55));
  }
}

.stat-label {
  display: block;
  margin-top: 10px;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--body-text);
}

/* ===========================================================
   CERTIFICATIONS
   =========================================================== */
.cert-section {
  padding: 56px 0;
  background: var(--navy-850);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  scroll-snap-align: start;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

.cert-card {
  text-align: center;
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: var(--shadow);
}

/* One calm, consistent treatment for every certification badge
   (Halal / ISO / HACCP / SFDA) instead of four different colors */
.cert-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-steel);
  background: var(--steel-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
}

.cert-badge svg {
  width: 28px;
  height: 28px
}

.cert-badge.halal-ico {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  direction: rtl;
}

.cert-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.cert-card p {
  font-size: .86rem;
  color: var(--body-text);
  line-height: 1.7;
}

.cert-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: .72rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(34, 197, 94, .1);
  padding: 5px 13px;
  border-radius: 20px;
}

/* ---- Homepage variant: light band so consecutive dark sections
   don't all read the same ---- */
.cert-section.light {
  background: #e9eef5;
  border-top: 1px solid rgba(13, 30, 53, .06);
  border-bottom: 1px solid rgba(13, 30, 53, .06);
}

.cert-section.light .section-tag {
  color: var(--gold-600);
}

.cert-section.light .std-header h2 {
  color: var(--navy-900);
}

.cert-section.light .std-header p {
  color: #4a5c72;
}

.cert-section.light .cert-card {
  background: #ffffff;
  border-color: rgba(13, 30, 53, .08);
  box-shadow: 0 10px 24px rgba(13, 30, 53, .05);
}

.cert-section.light .cert-card:hover {
  border-color: rgba(13, 30, 53, .16);
  box-shadow: 0 16px 32px rgba(13, 30, 53, .1);
}

.cert-section.light .cert-card h3 {
  color: var(--navy-900);
}

.cert-section.light .cert-card p {
  color: #55677d;
}

.cert-section.light .cert-badge {
  border-color: rgba(13, 30, 53, .16);
  background: rgba(13, 30, 53, .04);
  color: #3d5271;
}

.cert-section.light .cert-verified {
  background: rgba(22, 163, 74, .1);
  color: #15803d;
}

/* ---- Homepage variant: "why choose us" as open rows instead of
   yet another band of boxed cards ---- */
.why-us .why-grid {
  gap: 40px 36px;
}

.why-us .cert-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  align-items: start;
  text-align: left;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.why-us .cert-card:hover {
  transform: none;
  box-shadow: none;
  border: none;
}

.why-us .cert-badge {
  width: 52px;
  height: 52px;
  margin: 0;
  grid-row: 1 / span 2;
}

.why-us .cert-badge svg {
  width: 24px;
  height: 24px;
}

.why-us .cert-card h3 {
  grid-column: 2;
  margin-bottom: 6px;
}

.why-us .cert-card p {
  grid-column: 2;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials-section {
  padding: 56px 0;
  background: var(--navy-950);
  scroll-snap-align: start;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimonial-quote {
  font-size: .9rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.75;
  margin-bottom: 22px;
  flex: 1;
}

.testimonial-quote::before {
  content: '\201C';
  color: var(--steel-400);
  font-size: 1.6rem;
  font-style: normal;
  line-height: 0;
  margin-right: 4px;
}

.testimonial-company {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--white);
}

.testimonial-country {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ===========================================================
   BLOG / INSIGHTS
   =========================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .4);
}

.blog-card-media {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 150% at 50% -20%, rgba(147, 169, 196, .12), rgba(147, 169, 196, 0) 62%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--steel-400);
  border-bottom: 1px solid var(--border-soft);
}

.blog-card-media svg {
  width: 68px;
  height: 68px;
  padding: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-steel);
  background: var(--steel-tint);
  box-sizing: border-box;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: .88rem;
  color: var(--body-text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.blog-card-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-400);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .15s;
}

.blog-card-link:hover {
  gap: 10px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .78rem;
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.article-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 10px;
  color: var(--muted);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  color: var(--body-text);
  font-size: .98rem;
  line-height: 1.85;
}

.article-body h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 16px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul {
  margin: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-body li {
  list-style: disc;
}

.article-cta {
  margin-top: 48px;
  padding: 32px;
  text-align: center;
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}

.article-cta h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.article-cta p {
  font-size: .88rem;
  color: var(--body-text);
  margin-bottom: 22px;
}

.article-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-400);
  text-decoration: none;
  margin-bottom: 28px;
}

/* ===========================================================
   PROCESS FLOW (homepage "How We Serve Your Business")
   Uses the shared .supply-strip flow-diagram treatment from the
   cold-chain section; .process-strip modifiers adapt it to 4 steps.
   =========================================================== */
.process-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--steel-400);
  margin-bottom: 6px;
}

/* Dashed connector spans icon-centre to icon-centre (4 columns) */
.supply-strip.process-strip::before {
  left: 12%;
  right: 12%;
}

/* 4 columns leave more room — let the longer step copy breathe */
.process-strip .supply-stage p {
  max-width: 250px;
}

/* ===========================================================
   GLOBAL EXPORT NETWORK
   =========================================================== */
.network-section {
  padding: 60px 0;
  background:
    radial-gradient(90% 55% at 50% 0%, rgba(19, 41, 74, .45) 0%, rgba(19, 41, 74, 0) 65%),
    var(--navy-900);
  scroll-snap-align: start;
}

.network-countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.network-countries > span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--body-text);
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  padding: 8px 16px;
  border-radius: 999px;
}

/* Country chips with small flag badges */
.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.chip-flag {
  width: 19px;
  height: 13px;
  border-radius: 2.5px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12);
  flex: none;
}

.network-countries > span.chip-dest {
  border-color: var(--border-gold);
  color: var(--gold-300);
}

.network-countries > span.chip-sep {
  background: none;
  border: none;
  padding: 0 2px;
  color: var(--steel-400);
  font-size: 1.05rem;
  align-self: center;
}

/* Compact variant used inside the homepage FAQ answer */
.faq-origins {
  margin: 14px 0 4px;
  gap: 8px;
  justify-content: flex-start;
}

.faq-origins > span {
  font-size: .68rem;
  padding: 6px 12px;
}

.faq-origins .chip-flag {
  width: 16px;
  height: 11px;
}

/* ---- Stylized world sourcing map ---- */
.world-map-wrap {
  max-width: 940px;
  margin: 56px auto 0;
}

.world-map {
  display: block;
  width: 100%;
  height: auto;
}

.map-land path,
.map-land ellipse {
  fill: rgba(147, 169, 196, .10);
  stroke: rgba(147, 169, 196, .22);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.map-route {
  fill: none;
  stroke: rgba(147, 169, 196, .55);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 1 8;
  animation: routeFlow 60s linear infinite;
}

.map-pin {
  fill: var(--steel-400);
}

.map-pin-halo {
  fill: rgba(147, 169, 196, .16);
}

.map-label {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 2px;
  fill: var(--muted);
  text-anchor: middle;
}

html[dir="rtl"] .map-label {
  font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  letter-spacing: 0;
}

.map-label-ksa {
  fill: var(--gold-300);
  font-weight: 700;
  font-size: 21px;
}

.map-ksa-dot {
  fill: var(--gold-300);
}

.map-ksa-ring {
  fill: none;
  stroke: var(--border-gold);
  stroke-width: 1.5;
}

.map-ksa-halo {
  fill: rgba(212, 175, 55, .10);
  animation: ksaPulse 3.2s ease-in-out infinite;
}

.map-caption {
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 18px;
  letter-spacing: .3px;
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -540;
  }
}

@keyframes ksaPulse {

  0%,
  100% {
    opacity: .45;
  }

  50% {
    opacity: 1;
  }
}

/* ---- Stylized Saudi Arabia distribution map (same visual language) ---- */
.ksa-map-wrap {
  max-width: 720px;
  margin: 52px auto 0;
}

.ksa-map {
  display: block;
  width: 100%;
  height: auto;
}

/* Neighbouring land is a faint hint; the Saudi silhouette is the focus */
.ksa-map .map-land path {
  fill: rgba(147, 169, 196, .045);
  stroke: rgba(147, 169, 196, .10);
}

.ksa-map .map-land path.map-ksa-land {
  fill: rgba(147, 169, 196, .15);
  stroke: rgba(147, 169, 196, .38);
  stroke-width: 1.4;
}

.ksa-map .map-label {
  font-size: 17px;
}

.ksa-map .map-label-ksa {
  font-size: 19px;
}

@media (max-width: 640px) {
  .world-map .map-label,
  .ksa-map .map-label {
    display: none;
  }
}

/* ---- Supply chain strip (iconographic logistics visual) ---- */
.supply-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px 18px;
  margin-top: 52px;
}

/* Dashed connector rendered as a repeating gradient so the dash
   pattern can drift slowly (same idea as the map's routeFlow
   stroke-dashoffset animation) — reads as product moving through
   the pipeline. */
.supply-strip::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 9%;
  right: 9%;
  height: 1.5px;
  background-image: repeating-linear-gradient(90deg,
      var(--border-steel) 0,
      var(--border-steel) 6px,
      transparent 6px,
      transparent 12px);
  animation: supplyDashFlow 13s linear infinite;
}

/* In RTL the pipeline reads right-to-left, so the dashes flow the
   other way */
html[dir="rtl"] .supply-strip::before {
  animation-direction: reverse;
}

@keyframes supplyDashFlow {
  to {
    background-position: 120px 0;
  }
}

.supply-stage {
  position: relative;
  text-align: center;
}

.supply-stage-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1.5px solid var(--border-steel);
  color: var(--steel-400);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px var(--navy-900);
}

.std-section.alt .supply-stage-icon {
  box-shadow: 0 0 0 10px var(--navy-850);
}

/* Soft gold glow around each stage icon — reuses the map hub's
   ksaPulse opacity animation for visual consistency */
.supply-stage-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border-radius: 50%;
  box-shadow: 0 0 16px 3px rgba(212, 175, 55, .22);
  opacity: .45;
  animation: ksaPulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

/* Stagger the pulse so it travels stage-to-stage along the strip */
.supply-strip .supply-stage:nth-child(2) .supply-stage-icon::after {
  animation-delay: .5s;
}

.supply-strip .supply-stage:nth-child(3) .supply-stage-icon::after {
  animation-delay: 1s;
}

.supply-strip .supply-stage:nth-child(4) .supply-stage-icon::after {
  animation-delay: 1.5s;
}

.supply-strip .supply-stage:nth-child(5) .supply-stage-icon::after {
  animation-delay: 2s;
}

.supply-stage-icon svg {
  width: 30px;
  height: 30px;
}

.supply-stage h3 {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 7px;
}

.supply-stage p {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 200px;
  margin: 0 auto;
}

.origins-row {
  margin-top: 44px;
}

@media (max-width: 920px) {
  .supply-strip::before {
    display: none;
  }

  .supply-stage-icon,
  .std-section.alt .supply-stage-icon {
    box-shadow: none;
  }
}

/* Header block for the distribution half of the merged
   import + distribution section (needs to out-rank the
   .std-header.center margin shorthand) */
.std-header.center.network-dist-header {
  margin-top: 96px;
}

/* ===========================================================
   FINAL CTA + WHATSAPP
   =========================================================== */
.final-cta {
  padding: 60px 0;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-850) 100%);
  border-top: 1px solid var(--border-soft);
  scroll-snap-align: start;
}

.final-cta-inner {
  text-align: center;
  max-width: 720px;
}

.final-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin: 10px 0 16px;
}

.final-cta > .std-inner > p {
  font-size: .95rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 36px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-lg {
  padding: 19px 38px;
  font-size: .95rem;
  box-shadow: 0 8px 28px rgba(212, 175, 55, .4);
}

.btn-lg:hover {
  box-shadow: 0 12px 32px rgba(212, 175, 55, .55);
}

/* WhatsApp reads as a quiet outlined secondary action next to the
   solid gold primary CTA */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .7px;
  border-radius: var(--radius-sm);
  background: rgba(37, 211, 102, .07);
  border: 1px solid rgba(37, 211, 102, .45);
  color: #3ddc78;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, .75);
  background: rgba(37, 211, 102, .14)
}

.final-cta-direct {
  font-size: .82rem;
  color: var(--muted);
}

.final-cta-direct a {
  color: var(--gold-400);
  font-weight: 600;
}

/* ===========================================================
   ORDER REQUEST CART
   =========================================================== */
.add-to-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--gold-400);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.add-to-order-btn:hover {
  background: var(--gold-400);
  color: var(--navy-950);
  border-color: var(--gold-400);
}

.add-to-order-btn.added {
  background: #25d366;
  border-color: #25d366;
  color: #06210f;
}

/* Cart float only appears once something is in the order request,
   keeping the screen edge clear for the primary WhatsApp button */
.cart-float {
  position: fixed;
  right: 24px;
  bottom: 94px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--border-steel);
  color: var(--off-white);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.cart-float.has-items {
  display: flex;
}

.cart-float svg {
  width: 21px;
  height: 21px;
}

.cart-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--navy-700);
}

.cart-float-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: #25d366;
  color: #06210f;
  font-size: .68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.cart-float-badge.visible {
  display: flex;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 24, .6);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cart-overlay.open {
  display: flex;
}

.cart-panel {
  background: var(--navy-850);
  border: 1px solid var(--border-steel);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-soft);
}

.cart-panel-head h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.cart-panel-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}

.cart-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 22px;
}

.cart-empty {
  color: var(--muted);
  font-size: .85rem;
  text-align: center;
  padding: 32px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 3px;
}

.cart-item-spec {
  font-size: .7rem;
  color: var(--muted);
}

.cart-item-qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cart-qty-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border-steel);
  background: transparent;
  color: var(--off-white);
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-val {
  min-width: 22px;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--off-white);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
}

.cart-item-remove:hover {
  color: #e25555;
}

.cart-panel-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border-soft);
}

.cart-note {
  font-size: .7rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.cart-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px;
  background: #25d366;
  color: #06210f;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .4px;
  cursor: pointer;
  margin-bottom: 10px;
}

.cart-clear-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: var(--muted);
  font-size: .72rem;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width:768px) {
  .cart-float {
    width: 44px;
    height: 44px;
    right: 16px;
    bottom: 78px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #d4a13c;
  color: #0e2142;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px rgba(212, 161, 60, .4);
}

/* Back-to-top: small and low-key, only appears after a long scroll */
.back-to-top {
  position: fixed;
  right: 29px;
  bottom: 152px;
  z-index: 900;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 30, 53, .8);
  border: 1px solid var(--border-soft);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition), color var(--transition);
}

.back-to-top svg {
  width: 15px;
  height: 15px;
}

.back-to-top.visible {
  opacity: .75;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  opacity: 1;
  background: var(--navy-700);
  color: var(--off-white);
}

/* ===========================================================
   404 PAGE
   =========================================================== */
.not-found-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 24px 60px;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-850) 55%, var(--navy-900) 100%);
}

.not-found-inner {
  text-align: center;
  max-width: 520px;
}

.not-found-code {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4.5rem, 12vw, 7rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.not-found-inner h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.not-found-inner p {
  color: var(--body-text);
  font-size: .94rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ===========================================================
   RTL (Arabic)
   Setting dir="rtl" on <html> already flips direction-aware
   layout (flexbox/grid row order, default text alignment).
   These are the explicit left/right declarations that don't
   flip on their own.
   =========================================================== */
html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

html[dir="rtl"] .lang-option,
html[dir="rtl"] .partnership-grid,
html[dir="rtl"] .target-note {
  text-align: right;
}

/* Back-link arrows point "backwards" — mirror them in RTL */
html[dir="rtl"] .back-to-blog svg {
  transform: scaleX(-1);
}

/* Arabic uses the Tajawal web font (loaded alongside Outfit/Inter)
   for a modern, consistent look instead of the old Tahoma fallback.
   Headings and buttons that specify 'Outfit' are overridden too. */
html[dir="rtl"] body,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea,
html[dir="rtl"] .btn-primary,
html[dir="rtl"] .btn-secondary,
html[dir="rtl"] .btn-gold,
html[dir="rtl"] .btn-whatsapp,
html[dir="rtl"] .overlay-btn,
html[dir="rtl"] .section-tag,
html[dir="rtl"] .stat-number,
html[dir="rtl"] .stat-label,
html[dir="rtl"] .p-num,
html[dir="rtl"] .process-num,
html[dir="rtl"] .presence-badge,
html[dir="rtl"] .trust-item,
html[dir="rtl"] .quality-banner-brand strong,
html[dir="rtl"] .testimonial-company,
html[dir="rtl"] .footer-brand span,
html[dir="rtl"] .qr-card span {
  font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
}

html[dir="rtl"] .logo-text .logo-title {
  font-family: 'Outfit', 'Tajawal', sans-serif;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width:1180px) {

  .header-inner,
  .hero-inner,
  .trust-badges,
  .about-inner,
  .products-grid,
  .export-content,
  .partnership-inner,
  .contact-container,
  .footer-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .quality-banner-media {
    flex: 0 0 220px
  }

  .quality-top {
    grid-template-columns: 1fr 1.4fr;
    gap: 40px
  }

  .products-grid {
    gap: 18px
  }
}

@media (max-width:1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-media {
    max-width: 620px
  }

  .features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .products-grid.products-grid-catalog,
  .products-grid.products-grid-picker {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

  .stat-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .ksa-map-wrap {
    max-width: 560px
  }

  .quality-top {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .quality-banner-row {
    flex-direction: column
  }

  .quality-banner-media {
    flex: 0 0 auto;
    width: 100%;
    min-height: 220px
  }

  .quality-banner-media img {
    border-radius: 0
  }

  .quality-banner-divider {
    display: none
  }

  .quality-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px
  }

  .quality-banner-brand,
  .quality-banner-heading {
    padding: 0;
    margin-bottom: 24px;
    max-width: 100%
  }

  .quality-banner-icons {
    width: 100%;
    justify-content: center
  }

  .quality-banner-icon-item {
    flex: 1 1 33%
  }

  .export-panel {
    min-height: 460px
  }

  .target-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .presence-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }
}

@media (max-width:1280px) {
  .nav-menu ul { gap: 14px }
  .nav-menu a,
  .nav-drop-toggle { font-size: .7rem; letter-spacing: .8px }
  .language-selector span { display: none }
}

@media (max-width:960px) {
  .header-inner { gap: 10px }
  /* Collapse the inline nav into the hamburger drawer on small
     screens instead of a cramped horizontal scroll of tiny links */
  .nav-menu { display: none }
  .menu-toggle { display: flex }
  .header-actions .btn-gold { display: none }
}

@media (max-width:768px) {
  html {
    scroll-snap-type: none
  }

  :root {
    --header-h: 72px
  }

  .header-inner {
    padding: 0 20px
  }

  .logo-container {
    gap: 10px
  }

  .logo-text .logo-title {
    font-size: 1.35rem
  }

  .logo-text small {
    font-size: .56rem;
    letter-spacing: 2.2px;
    margin-top: 3px
  }

  .header-actions {
    gap: 10px
  }

  .btn-gold {
    padding: 9px 15px;
    font-size: .66rem
  }

  .btn-gold svg {
    display: none
  }

  .hero-inner {
    padding: 0 20px
  }

  .hero-content {
    padding: 56px 0 70px;
    max-width: 100%
  }

  .hero-content h1 {
    font-size: 2.05rem;
    letter-spacing: -.3px
  }

  .hero-content h2 {
    font-size: 1.05rem
  }

  .hero-content p {
    font-size: .92rem;
    max-width: 100%
  }

  .hero-bg img {
    object-position: 30% center
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(5, 13, 24, .55) 0%, rgba(5, 13, 24, .55) 30%, rgba(5, 13, 24, .88) 70%, rgba(5, 13, 24, .97) 100%);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center
  }

  .trust-badges {
    padding: 0 20px 44px;
    gap: 20px 28px
  }

  .trust-item {
    font-size: .72rem
  }

  .trust-icon {
    width: 42px;
    height: 42px
  }

  .trust-icon svg {
    width: 19px;
    height: 19px
  }

  .about-section,
  .products-section,
  .partnership-section,
  .contact-section {
    padding: 70px 0
  }

  .about-inner,
  .products-grid,
  .partnership-inner,
  .contact-container,
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px
  }

  .features-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .products-grid.products-grid-catalog,
  .products-grid.products-grid-picker {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .section-header {
    margin-bottom: 40px
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .testimonials-section {
    padding: 60px 0
  }

  .stats-grid {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .network-dist-header {
    margin-top: 56px
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px
  }

  /* Keep the mobile screen edge clear: WhatsApp is the one
     primary floating action on small screens */
  .back-to-top {
    display: none
  }

  .quality-banner-icon-item {
    flex: 1 1 50%;
    margin-bottom: 20px
  }

  .export-panel {
    min-height: 420px
  }

  .export-panel-bg img {
    object-position: 78% center
  }

  .export-content {
    padding: 32px 20px
  }

  .export-route {
    gap: 14px
  }

  .route-step-icon {
    width: 46px;
    height: 46px
  }

  .route-step-icon svg {
    width: 20px;
    height: 20px
  }

  .route-step span {
    font-size: .64rem
  }

  .route-arrow {
    margin-top: -22px;
    font-size: 1.2rem
  }

  .target-section {
    padding: 64px 0
  }

  .target-inner {
    padding: 0 20px
  }

  .target-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }

  .target-note {
    text-align: left
  }

  .partnership-grid {
    grid-template-columns: 1fr
  }

  .partnership-inner>p {
    margin-bottom: 36px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .contact-form-box {
    padding: 26px
  }

  .footer-inner {
    flex-direction: column;
    text-align: center
  }

  .page-hero {
    min-height: 38vh
  }

  .page-hero-inner {
    padding: 48px 20px
  }

  .cta-banner-inner {
    padding: 0 20px;
    text-align: center;
    justify-content: center
  }

  .std-section {
    padding: 64px 0
  }

  .std-inner {
    padding: 0 20px
  }

  .icon-card {
    padding: 24px 20px
  }

  .presence-card {
    padding: 24px 20px
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px
  }

  .spec-list {
    grid-template-columns: 1fr
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 56px 20px 36px;
    gap: 32px;
    text-align: left
  }

  .footer-bottom {
    padding: 18px 20px
  }
}

@media (max-width:420px) {
  .trust-badges {
    justify-content: space-between;
    gap: 14px 10px
  }

  .trust-item {
    flex: 1 1 calc(50% - 10px)
  }

  .trust-icon {
    width: 38px;
    height: 38px
  }

  .trust-icon svg {
    width: 17px;
    height: 17px
  }

}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important
  }

  html {
    scroll-behavior: auto;
    scroll-snap-type: none
  }

  .map-route,
  .map-ksa-halo,
  .supply-strip::before,
  .supply-stage-icon::after,
  .stat-icon::after,
  .stat-number {
    animation: none !important;
  }
}

/* ===========================================================
   PRINT (Company Profile "Save as PDF")
   =========================================================== */
.print-btn {
  margin-top: 24px;
}

@media print {
  .site-header,
  .mobile-nav,
  .back-to-top,
  .whatsapp-float,
  .cart-float,
  .site-footer,
  .breadcrumb,
  .no-print {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .page-hero.subdued {
    background: none;
    border: 0;
    min-height: auto;
    padding: 20px 0;
  }

  .page-hero.subdued::before {
    display: none;
  }

  h1, h2, h3, h4 {
    color: #111 !important;
  }

  p, dt, dd, li, .section-tag {
    color: #333 !important;
  }

  a {
    color: #111 !important;
    text-decoration: none;
  }

  .std-section,
  .std-section.alt {
    background: #fff !important;
    border: 0 !important;
    padding: 24px 0;
  }

  .info-table {
    background: #fff;
    border: 1px solid #ccc;
  }

  .info-row {
    border-bottom: 1px solid #ddd;
  }

  .leader-card,
  .icon-card {
    background: #fff !important;
    border: 1px solid #ddd !important;
  }

  .pill-list > span {
    background: #fff;
    border-color: #ccc;
    color: #333 !important;
  }

  .supply-stage-icon {
    background: #fff;
    box-shadow: none;
    color: #555;
  }

  .supply-stage-icon::after {
    display: none;
  }

  .supply-stage h3 {
    color: #111 !important;
  }

  .stat-icon::after {
    display: none;
  }

  .stat-number {
    filter: none !important;
  }
}

/* ===========================================================
   LEADER & IMPORT CONTACT BADGES (PREMIUM UI)
   =========================================================== */
.leader-contact-bar {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.leader-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1.2;
}

.leader-contact-btn svg {
  flex-shrink: 0;
}

.leader-contact-btn.tel-btn {
  background: rgba(212, 175, 55, 0.09);
  color: var(--gold-400);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.leader-contact-btn.tel-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.2);
}

.leader-contact-btn.wa-btn {
  background: rgba(37, 211, 102, 0.09);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.28);
}

.leader-contact-btn.wa-btn:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}

/* ===========================================================
   MOCKUP REDESIGN (LUXURY GOLD & NIGHT SKYLINE THEME)
   =========================================================== */
.title-accent-bar {
  width: 46px;
  height: 3px;
  background: var(--gold-400);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.text-gold {
  color: var(--gold-400) !important;
}

.presence-hero-banner {
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.75) 0%, rgba(10, 22, 40, 0.95) 100%), url('export-global-clean.webp') center/cover no-repeat;
  position: relative;
  padding: 54px 0 40px 0;
}

.presence-grid-luxury {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.presence-grid-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .presence-grid-luxury {
    grid-template-columns: 1fr;
  }
}

.presence-card-luxury {
  background: #081220;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  position: relative;
}

.presence-card-luxury.primary-gold-card {
  border: 1px solid rgba(212, 175, 55, 0.65);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5), 0 0 18px rgba(212, 175, 55, 0.15);
}

.presence-card-luxury.primary-gold-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #fef0a0, #d4af37);
  z-index: 10;
}

.presence-card-luxury:hover {
  border-color: var(--gold-400);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.25);
}

.presence-card-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
}

.presence-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.presence-card-luxury:hover .presence-card-img-wrap img {
  transform: scale(1.06);
}

.presence-badge.gold-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #080f1a;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.presence-badge.gold-pill svg {
  color: #080f1a;
}

.presence-badge.white-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: #080f1a;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.presence-badge.white-pill svg {
  color: #080f1a;
}

.presence-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.presence-card-luxury h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.35;
}

.presence-card-luxury p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 22px;
}

.presence-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.presence-tag-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.presence-card-luxury:hover .presence-tag-pill {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.1);
  color: #ffffff;
}

.presence-icon-box {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 20px;
}

.presence-card-luxury h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.presence-card-luxury p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0;
}

.presence-shield-banner {
  margin-top: 24px;
  background: rgba(13, 27, 46, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.presence-shield-banner svg {
  color: var(--gold-400);
  flex-shrink: 0;
}

.presence-shield-banner span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.headquarters-split-card {
  background: var(--navy-800);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  margin-top: 36px;
}

@media (max-width: 900px) {
  .headquarters-split-card {
    grid-template-columns: 1fr;
  }
}

.headquarters-info-panel {
  background: #091322;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hq-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hq-info-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.hq-info-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #fff;
  margin: 0 0 2px 0;
  text-transform: uppercase;
}

.hq-info-text p, .hq-info-text a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0;
  line-height: 1.4;
}

.hq-info-text a:hover {
  color: var(--gold-400);
}

.hq-map-wrapper {
  position: relative;
  min-height: 380px;
  width: 100%;
}

.hq-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.1) brightness(0.9);
}

/* ================= HEADQUARTERS LUXURY LIGHT SECTION ================= */
.hq-light-section {
  background: #f7f8fc;
  padding: 70px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.hq-luxury-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 992px) {
  .hq-luxury-wrap {
    grid-template-columns: 1fr;
  }
}

.hq-info-cards-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 28px;
}

.hq-luxury-info-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.hq-luxury-info-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.hq-card-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef0a0 0%, #d4af37 100%);
  color: #0b1424;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.hq-card-text {
  display: flex;
  flex-direction: column;
}

.hq-card-label {
  font-size: 0.75rem;
  color: #718096;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hq-card-text strong {
  font-size: 0.92rem;
  color: #0b1424;
  font-weight: 700;
  line-height: 1.35;
}

.btn-gold-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #080f1a;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
  width: 100%;
}

.btn-gold-directions:hover {
  background: linear-gradient(135deg, #e5be3d 0%, #c99718 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5);
  color: #000;
}

/* Map Luxury Frame */
.hq-map-luxury-frame {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  height: 400px;
  overflow: hidden;
}

.hq-map-luxury-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
  filter: contrast(1.02) saturate(1.05);
}

/* Floating Photo Card */
.hq-floating-photo-card {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 230px;
  background: #091322;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  z-index: 10;
  transition: transform 0.3s ease;
}

.hq-floating-photo-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.hq-floating-photo-card img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  display: block;
}

.hq-photo-card-info {
  padding: 12px 14px;
  background: #091322;
}

.hq-photo-card-info h4 {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 3px;
}

.hq-photo-card-info p {
  color: var(--gold-400);
  font-size: 0.76rem;
  margin: 0;
}