/* ==========================================================================
   GOLDEN HILLS FOOD — MASTER STYLESHEET
   Premium International Food Supplier | goldenhillsfood.com
   ========================================================================== */

/* ========================= CUSTOM PROPERTIES ============================ */
:root {
  /* ── Green Palette ── */
  --g-950: #071510;
  --g-900: #0F2518;
  --g-800: #1B4332;
  --g-700: #2D6A4F;
  --g-600: #3A8A62;
  --g-500: #52B788;
  --g-200: #B7E4C7;
  --g-100: #D8F3DC;
  --g-50:  #F0FAF3;

  /* ── Gold Palette ── */
  --au-900: #5C3D00;
  --au-800: #8B6200;
  --au-700: #B07D00;
  --au-600: #C9A84C;
  --au-500: #D4B44A;
  --au-400: #E8CC78;
  --au-300: #F0DFA0;
  --au-100: #FBF5E6;

  /* ── Earth Tones ── */
  --e-50:  #FDFAF5;
  --e-100: #F7F3EB;
  --e-200: #EDE5D3;
  --e-300: #DDD0B5;
  --e-400: #C8B896;

  /* ── Neutral ── */
  --n-900: #141414;
  --n-800: #242424;
  --n-700: #383838;
  --n-600: #525252;
  --n-500: #6F6F6F;
  --n-400: #8D8D8D;
  --n-300: #B8B8B8;
  --n-200: #DEDEDE;
  --n-100: #F4F4F4;
  --white: #FFFFFF;

  /* ── Semantic Tokens ── */
  --primary:        var(--g-800);
  --primary-dark:   var(--g-900);
  --primary-light:  var(--g-700);
  --accent:         var(--au-600);
  --accent-dark:    var(--au-700);
  --accent-light:   var(--au-400);
  --bg:             var(--e-50);
  --bg-alt:         var(--e-100);
  --surface:        var(--white);
  --text:           var(--n-800);
  --text-secondary: var(--n-500);
  --border:         var(--e-300);

  /* ── Typography ── */
  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* ── Fluid Type Scale ── */
  --fs-xs:   clamp(0.7rem,  1.2vw, 0.75rem);
  --fs-sm:   clamp(0.8rem,  1.5vw, 0.875rem);
  --fs-base: clamp(0.9rem,  1.8vw, 1rem);
  --fs-lg:   clamp(1rem,    2.2vw, 1.125rem);
  --fs-xl:   clamp(1.1rem,  2.5vw, 1.25rem);
  --fs-2xl:  clamp(1.25rem, 3vw,   1.5rem);
  --fs-3xl:  clamp(1.5rem,  3.5vw, 2rem);
  --fs-4xl:  clamp(1.875rem,4.5vw, 2.625rem);
  --fs-5xl:  clamp(2.25rem, 5.5vw, 3.5rem);
  --fs-6xl:  clamp(2.75rem, 7vw,   4.75rem);

  /* ── Spacing ── */
  --s-1:   0.25rem;
  --s-2:   0.5rem;
  --s-3:   0.75rem;
  --s-4:   1rem;
  --s-5:   1.25rem;
  --s-6:   1.5rem;
  --s-8:   2rem;
  --s-10:  2.5rem;
  --s-12:  3rem;
  --s-16:  4rem;
  --s-20:  5rem;
  --s-24:  6rem;

  /* ── Layout ── */
  --max-w:        1280px;
  --max-w-narrow: 800px;
  --nav-h:        80px;
  --nav-offset-top: 0.75rem;
  --header-h:     calc(var(--nav-h) + var(--nav-offset-top));
  --sec-py:       clamp(4rem, 8vw, 7rem);

  /* ── Shadows ── */
  --sh-xs: 0 1px 3px rgba(0,0,0,0.06);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.08);
  --sh-md: 0 4px 16px rgba(0,0,0,0.10);
  --sh-lg: 0 10px 32px rgba(0,0,0,0.12);
  --sh-xl: 0 20px 52px rgba(0,0,0,0.16);
  --sh-au: 0 6px 24px rgba(201,168,76,0.32);

  /* ── Radius ── */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* ── Motion ── */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur-base:    300ms;
  --dur-slow:    600ms;
}

/* ========================= RESET & BASE ================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ========================= TYPOGRAPHY =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--n-900);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-6xl); }
h2 { font-size: var(--fs-5xl); }
h3 { font-size: var(--fs-4xl); }
h4 { font-size: var(--fs-3xl); }
h5 { font-size: var(--fs-2xl); }
h6 { font-size: var(--fs-xl); }

p {
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ========================= LAYOUT ======================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.section {
  padding-block: var(--sec-py);
}

.section--dark {
  background-color: var(--g-900);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.72);
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--cream {
  background-color: var(--au-100);
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }

/* ========================= SECTION HEADER ================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-tag {
  justify-content: center;
}

.section-header h2 {
  margin-bottom: var(--s-5);
}

.section-header p {
  font-size: var(--fs-lg);
  max-width: 600px;
}

.section-header--center p {
  margin-inline: auto;
}

/* ========================= BUTTONS ====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.85em 2em;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn--gold {
  background: var(--accent);
  color: var(--n-900);
  border-color: var(--accent);
}

.btn--gold:hover {
  background: var(--au-700);
  border-color: var(--au-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--sh-au);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-green {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline-green:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.6em 1.4em;
  font-size: var(--fs-xs);
}

.btn--lg {
  padding: 1em 2.4em;
  font-size: var(--fs-lg);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-base) var(--ease);
  flex-shrink: 0;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ========================= NAVIGATION =================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: var(--nav-offset-top);
  height: var(--header-h);
  transition: background var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.site-header.is-transparent {
  background: transparent;
}

.site-header.is-scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--e-200), var(--sh-sm);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header .container {
  height: 100%;
}

.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: var(--s-8);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  line-height: 0;
  text-decoration: none;
}

.nav__logo img {
  height: 52px;
  width: auto;
  max-width: 156px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity var(--dur-base) var(--ease);
}

.nav__logo-text {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  transition: color var(--dur-base) var(--ease);
}

.nav__logo-text span {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.site-header.is-scrolled .nav__logo-text {
  color: var(--n-900);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-left: auto;
}

.nav__link {
  position: relative;
  padding: var(--s-2) var(--s-4);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: color var(--dur-base) var(--ease);
  border-radius: var(--r-md);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: var(--s-4);
  right: var(--s-4);
  height: 2px;
  background: var(--accent);
  border-radius: var(--r-full);
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav__link {
  color: var(--n-600);
}

.site-header.is-scrolled .nav__link:hover,
.site-header.is-scrolled .nav__link.is-active {
  color: var(--n-900);
}

.nav__lang {
  padding: var(--s-2) var(--s-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: var(--r-full);
  transition: all var(--dur-base) var(--ease);
  letter-spacing: 0.02em;
}

.nav__lang:hover {
  background: var(--accent);
  color: var(--n-900);
  border-color: var(--accent);
}

.site-header.is-scrolled .nav__lang {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.nav__cta {
  margin-left: var(--s-4);
}

.nav__cta-mobile {
  display: none;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--r-full);
  transition: all var(--dur-base) var(--ease);
}

.site-header.is-scrolled .nav__toggle span {
  background: var(--n-800);
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================= HERO ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--g-950);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease-out) forwards;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 21, 16, 0.88) 0%,
    rgba(15, 37, 24, 0.75) 40%,
    rgba(27, 67, 50, 0.60) 100%
  );
}

/* Grain texture overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-h) + var(--s-4));
  padding-bottom: var(--s-4);
}

.hero__content > .container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  flex: 1 1 auto;
  align-content: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--accent);
}

.hero__heading {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: var(--s-4);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
  max-width: 640px;
}

.hero__heading em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero__subheading {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: var(--s-6);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.hero__actions .btn--lg {
  padding: 0.75rem 1.35rem;
  font-size: var(--fs-sm);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.1s forwards;
  margin-top: var(--s-12);
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: var(--s-3) var(--s-5);
  min-width: 140px;
}

.hero__stat-num {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.35;
}

/* Trust bar anchored to bottom of hero viewport */
.hero__trust {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: auto;
  padding-block: var(--s-4);
}

/* ========================= TRUST BAR =================================== */
.trust-bar {
  background: var(--g-900);
  padding-block: var(--s-5);
  overflow: hidden;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.72rem, 0.85vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.trust-bar__icon {
  color: var(--accent);
  flex-shrink: 0;
}

/* ========================= WHY CHOOSE US ================================ */
.features {
  background: var(--bg);
  padding-block: 60px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-12);
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  transition: all var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}

.feature-card:hover {
  box-shadow: var(--sh-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: var(--g-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  color: var(--primary);
  transition: all var(--dur-base) var(--ease);
}

.feature-card:hover .feature-card__icon {
  background: var(--primary);
  color: var(--white);
}

.feature-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--s-3);
  color: var(--n-900);
}

.feature-card p {
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ========================= PRODUCT CATEGORIES ========================== */
.products-section {
  background: var(--bg-alt);
  padding-block: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-12);
}

.product-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--sh-sm);
  transition: all var(--dur-base) var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
}

.product-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--g-900);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,21,16,0.7) 0%, transparent 50%);
}

.product-card__badge {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  z-index: 1;
  background: var(--accent);
  color: var(--n-900);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
}

.product-card__body {
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__tag {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--s-3);
}

.product-card h3 {
  font-size: var(--fs-2xl);
  color: var(--n-900);
  margin-bottom: var(--s-3);
}

.product-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--s-5);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
}

.product-card__link:hover {
  gap: var(--s-3);
  color: var(--accent-dark);
}

.product-card__link svg {
  width: 16px;
  height: 16px;
}

/* ========================= FEATURED PRODUCT ============================ */
.featured {
  background: var(--surface);
}

.featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}

.featured__image {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--g-900);
  aspect-ratio: 4/3;
  box-shadow: var(--sh-xl);
}

.featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured__image--transparent {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  aspect-ratio: unset;
  overflow: visible;
}

.featured__image--transparent img {
  width: 100%;
  height: auto;
  max-height: clamp(280px, 36vw, 440px);
  object-fit: contain;
  object-position: center;
}

.featured__badge {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  background: var(--accent);
  color: var(--n-900);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-full);
}

.featured__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: var(--s-1) var(--s-3);
  background: var(--g-50);
  color: var(--primary);
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--r-full);
  border: 1px solid var(--g-200);
}

.featured__text h2 {
  margin-bottom: var(--s-5);
}

.featured__text p {
  font-size: var(--fs-lg);
  line-height: 1.75;
  margin-bottom: var(--s-8);
}

.featured__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
  padding: var(--s-6);
  background: var(--bg-alt);
  border-radius: var(--r-lg);
}

.featured__spec-item label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--s-1);
}

.featured__spec-item span {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--n-800);
}

/* ========================= STATS ======================================== */
.stats {
  background: linear-gradient(135deg, var(--g-900) 0%, var(--g-800) 60%, var(--g-700) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(82,183,136,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--s-10) var(--s-8);
  background: rgba(255,255,255,0.03);
  transition: background var(--dur-base) var(--ease);
}

.stat-item:hover {
  background: rgba(255,255,255,0.06);
}

.stat-item__num {
  font-family: var(--ff-display);
  font-size: var(--fs-6xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--s-3);
  display: block;
}

.stat-item__suffix {
  font-size: var(--fs-4xl);
  color: var(--accent-light);
}

.stat-item__label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.stat-item__desc {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
}

/* ========================= ABOUT PREVIEW ================================ */
.about-preview {
  background: var(--bg);
}

.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-preview__visual {
  position: relative;
}

.about-preview__img {
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--g-800);
  aspect-ratio: 4/5;
  box-shadow: var(--sh-xl);
}

.about-preview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__img--transparent {
  aspect-ratio: 4 / 5;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-preview__img--transparent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.about-preview__badge {
  position: absolute;
  bottom: -var(--s-6);
  right: -var(--s-6);
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-5) var(--s-6);
  box-shadow: var(--sh-lg);
  text-align: center;
  min-width: 140px;
}

.about-preview__badge-num {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.about-preview__badge-label {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-preview__text .section-tag {
  margin-bottom: var(--s-4);
}

.about-preview__text h2 {
  margin-bottom: var(--s-5);
}

.about-preview__text p {
  font-size: var(--fs-lg);
  margin-bottom: var(--s-5);
}

.about-preview__list {
  margin-bottom: var(--s-8);
}

.about-preview__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding-block: var(--s-3);
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.about-preview__list li:last-child {
  border-bottom: none;
}

.about-preview__list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  background: var(--g-50);
  border: 2px solid var(--g-500);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%231B4332' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ========================= GLOBAL SUPPLY ================================ */
.global {
  background: var(--g-900);
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.25rem, 4vw, 3.5rem);
}

.global::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.global__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 2fr) minmax(340px, 3fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.global__text .section-tag {
  margin-bottom: var(--s-3);
}

.global__text h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: var(--s-3);
}

.global__text p {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: var(--s-5);
  max-width: 36rem;
}

.global__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-4);
  margin-bottom: 0;
}

.global__point {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
}

.global__point-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.global__point-text strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s-1);
}

.global__point-text span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}

.global__visual {
  position: relative;
}

.global__map {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.global__map--photo {
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--sh-xl);
}

.global__map--photo img {
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

/* World map SVG fallback */
.global__map-placeholder {
  width: 100%;
  padding: var(--s-8);
  text-align: center;
  color: rgba(255,255,255,0.3);
}

.global__countries {
  position: absolute;
  bottom: -var(--s-4);
  left: 50%;
  transform: translateX(-50%);
  background: var(--g-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  padding: var(--s-3) var(--s-6);
  white-space: nowrap;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
}

/* ========================= CTA BANNER ================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--g-800) 0%, var(--g-700) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: var(--s-20);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--s-4);
  font-size: var(--fs-5xl);
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: var(--fs-xl);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--s-10);
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}

/* ========================= CONTACT PREVIEW ============================= */
.contact-preview {
  background: var(--bg);
  padding-block: 60px;
}

.contact-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: stretch;
}

.contact-preview__info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-preview__info h2 {
  margin-bottom: var(--s-5);
}

.contact-preview__info p {
  font-size: var(--fs-lg);
  margin-bottom: var(--s-8);
}

/* Homepage Get in Touch — compact layout (EN + AR) */
html[lang="en"] .contact-preview,
html[lang="ar"] .contact-preview {
  padding-block: 40px;
}

html[lang="en"] .contact-preview__grid,
html[lang="ar"] .contact-preview__grid {
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

@media (min-width: 993px) {
  html[lang="en"] .contact-preview__grid,
  html[lang="ar"] .contact-preview__grid {
    grid-template-columns: 1fr 1.35fr;
  }
}

html[lang="en"] .contact-preview__info h2,
html[lang="ar"] .contact-preview__info h2 {
  font-size: var(--fs-2xl);
  line-height: 1.25;
  margin-bottom: var(--s-3);
}

html[lang="en"] .contact-preview__info p,
html[lang="ar"] .contact-preview__info p {
  font-size: var(--fs-base);
  line-height: 1.55;
  margin-bottom: var(--s-5);
}

html[lang="en"] .contact-preview .contact-cards,
html[lang="ar"] .contact-preview .contact-cards {
  flex: none;
  justify-content: flex-start;
  gap: var(--s-3);
}

html[lang="en"] .contact-preview .contact-card,
html[lang="ar"] .contact-preview .contact-card {
  padding: var(--s-3) var(--s-4);
}

html[lang="en"] .contact-preview .contact-card__icon,
html[lang="ar"] .contact-preview .contact-card__icon {
  width: 38px;
  height: 38px;
}

html[lang="en"] .contact-preview .contact-card__value,
html[lang="ar"] .contact-preview .contact-card__value {
  font-size: var(--fs-sm);
}

html[lang="en"] .contact-preview .contact-form,
html[lang="ar"] .contact-preview .contact-form {
  flex: none;
  padding: 35px;
}

html[lang="en"] .contact-preview .contact-form form,
html[lang="ar"] .contact-preview .contact-form form {
  flex: none;
}

html[lang="en"] .contact-preview .form-group,
html[lang="ar"] .contact-preview .form-group {
  margin-bottom: var(--s-3);
}

html[lang="en"] .contact-preview .form-control,
html[lang="ar"] .contact-preview .form-control {
  padding: 0.55em 0.85em;
  font-size: var(--fs-sm);
}

html[lang="en"] .contact-preview .contact-form .form-group:has(textarea),
html[lang="ar"] .contact-preview .contact-form .form-group:has(textarea) {
  flex: none;
}

html[lang="en"] .contact-preview .contact-form .form-group:has(textarea) .form-control,
html[lang="ar"] .contact-preview .contact-form .form-group:has(textarea) .form-control {
  flex: none;
  min-height: 4.25rem;
}

html[lang="en"] .contact-preview .btn,
html[lang="ar"] .contact-preview .btn {
  padding: 0.65em 1.25em;
  font-size: var(--fs-sm);
}

html[lang="en"] .contact-preview .contact-form .btn.btn--primary.w-full,
html[lang="ar"] .contact-preview .contact-form .btn.btn--primary.w-full {
  margin-top: 20px;
}

@media (max-height: 860px) and (min-width: 992px) {
  html[lang="en"] .contact-preview,
  html[lang="ar"] .contact-preview {
    padding-block: 28px;
  }

  html[lang="en"] .contact-preview__info h2,
  html[lang="ar"] .contact-preview__info h2 {
    font-size: var(--fs-xl);
    margin-bottom: var(--s-2);
  }

  html[lang="en"] .contact-preview__info p,
  html[lang="ar"] .contact-preview__info p {
    margin-bottom: var(--s-4);
  }

  html[lang="en"] .contact-preview .form-group,
  html[lang="ar"] .contact-preview .form-group {
    margin-bottom: var(--s-2);
  }
}

.contact-preview__grid > div:last-child {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  flex: 1;
  justify-content: space-between;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--sh-md);
  transform: translateX(4px);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--g-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  margin-bottom: var(--s-1);
}

.contact-card__value {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--n-800);
}

/* ========================= CONTACT FORM ================================ */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--sh-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--s-6);
  color: var(--n-900);
}

.contact-form form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form .form-group:has(textarea) {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form .form-group:has(textarea) .form-control {
  flex: 1;
  min-height: 6rem;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.form-group {
  margin-bottom: var(--s-5);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--n-700);
  margin-bottom: var(--s-2);
  letter-spacing: 0.02em;
}

.form-group label.required::after {
  content: ' *';
  color: #D93025;
}

.form-control {
  width: 100%;
  padding: 0.75em 1em;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--text);
  transition: border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.form-control::placeholder {
  color: var(--n-400);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236F6F6F' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-message {
  padding: var(--s-4);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-top: var(--s-4);
  display: none;
}

.form-message--success {
  display: block;
  background: var(--g-50);
  color: var(--primary);
  border: 1px solid var(--g-200);
}

.form-message--error {
  display: block;
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ========================= FOOTER ====================================== */
.site-footer {
  background: var(--g-950);
  color: rgba(255,255,255,0.75);
  padding-top: var(--s-20);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--s-10);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-logo {
  height: 52px;
  width: auto;
  margin-bottom: var(--s-5);
}

.footer__brand-tagline {
  font-size: var(--fs-xs);
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}

.footer__brand .footer__col-title {
  margin-top: 0;
}

.footer__brand p:not(.footer__brand-tagline) {
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--dur-base) var(--ease);
}

.footer__social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--n-900);
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.footer__link::before {
  content: '→';
  font-size: var(--fs-xs);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--dur-base) var(--ease);
  color: var(--accent);
}

.footer__link:hover {
  color: var(--white);
  padding-left: var(--s-2);
}

.footer__link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}

.footer__contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer__contact-text a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease);
}

.footer__contact-text a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: 10px;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}

.footer__bottom a {
  color: rgba(255,255,255,0.45);
  transition: color var(--dur-base) var(--ease);
}

.footer__bottom a:hover {
  color: var(--accent);
}

.footer__bottom-links {
  display: flex;
  gap: var(--s-5);
}

.footer__credit {
  margin: 0;
}

.footer__credit a {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color var(--dur-base) var(--ease);
}

.footer__credit a:hover {
  color: var(--accent);
}

/* ========================= PAGE HERO (inner pages) ===================== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--g-900) 0%, var(--g-800) 100%);
  padding-top: calc(var(--header-h) + var(--s-16));
  padding-bottom: var(--s-16);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__content .section-tag {
  color: var(--accent);
  justify-content: flex-start;
  display: inline-flex;
}

.page-hero__content h1 {
  color: var(--white);
  font-size: var(--fs-6xl);
  margin-bottom: var(--s-5);
  margin-top: var(--s-3);
}

.page-hero__content p {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-xl);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-base) var(--ease);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.3);
}

/* ========================= ABOUT PAGE ================================== */
.about-story {
  background: var(--bg);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-story__images {
  position: relative;
}

.about-story__img-main {
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--g-800);
  aspect-ratio: 4/5;
  box-shadow: var(--sh-xl);
}

.about-story__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__img-main--logo {
  aspect-ratio: 4/5;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story__img-main--logo img {
  width: min(100%, 340px);
  height: auto;
  object-fit: contain;
}

.about-values {
  background: var(--bg-alt);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-12);
}

.value-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--dur-base) var(--ease);
}

.value-card:hover {
  box-shadow: var(--sh-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.value-card__icon {
  width: 68px;
  height: 68px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--g-800), var(--g-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto var(--s-5);
}

.value-card h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--s-3);
}

.value-card p {
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.about-milestones {
  background: var(--g-900);
}

.timeline {
  position: relative;
  margin-top: var(--s-12);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-10);
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  grid-column: 2;
  grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-date {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--accent);
  border: 4px solid var(--g-900);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  position: relative;
  z-index: 1;
}

.timeline-dot svg {
  width: 16px;
  height: 16px;
  color: var(--n-900);
}

.timeline-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}

.timeline-content h4 {
  color: var(--white);
  font-size: var(--fs-xl);
  margin-bottom: var(--s-2);
}

.timeline-content p {
  color: rgba(255,255,255,0.55);
  font-size: var(--fs-sm);
}

.timeline-date {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--accent);
  text-align: left;
}

/* ========================= PRODUCTS PAGE =============================== */
.products-filter {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: var(--s-4);
  position: sticky;
  top: var(--header-h);
  z-index: 100;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-wrap: wrap;
}

.filter-tab {
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-alt);
  border: 1.5px solid transparent;
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
}

.filter-tab:hover {
  color: var(--primary);
  background: var(--g-50);
  border-color: var(--g-200);
}

.filter-tab.is-active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.products-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-10);
}

.products-page__card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--dur-base) var(--ease);
  position: relative;
}

.products-page__card:hover {
  border-color: transparent;
  box-shadow: var(--sh-xl);
  transform: translateY(-4px);
}

.products-page__card-img {
  height: 220px;
  overflow: hidden;
  background: var(--g-900);
  position: relative;
}

.products-page__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.products-page__card-img--transparent {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-page__card-img--transparent img {
  width: auto;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.products-page__card:hover .products-page__card-img img {
  transform: scale(1.06);
}

.products-page__card-body {
  padding: var(--s-6);
}

.products-page__card-category {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--s-2);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.products-page__card h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--s-3);
  color: var(--n-900);
}

.products-page__card p {
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: var(--s-5);
}

.products-page__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.products-page__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.products-page__card-tag {
  font-size: var(--fs-xs);
  background: var(--g-50);
  color: var(--primary);
  padding: 2px var(--s-3);
  border-radius: var(--r-full);
  font-weight: 500;
  border: 1px solid var(--g-200);
}

/* ========================= CONTACT PAGE ================================ */
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-page__info h2 {
  margin-bottom: var(--s-5);
}

.contact-page__info > p {
  font-size: var(--fs-lg);
  margin-bottom: var(--s-8);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--dur-base) var(--ease);
}

.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: var(--sh-md);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--g-800), var(--g-700));
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-info-card__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--s-1);
}

.contact-info-card__value {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--n-800);
  line-height: 1.5;
}

.contact-info-card__value a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease);
}

.contact-info-card__value a:hover {
  color: var(--accent-dark);
}

.map-container {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 200px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder {
  text-align: center;
  color: var(--text-secondary);
  padding: var(--s-8);
}

.map-placeholder p {
  font-size: var(--fs-sm);
  margin-top: var(--s-2);
}

.contact-page__form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--sh-md);
}

.contact-page__form-wrap h3 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--s-2);
}

.contact-page__form-wrap > p {
  font-size: var(--fs-base);
  margin-bottom: var(--s-6);
}

/* ========================= ANIMATIONS ================================== */
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 380ms var(--ease-out),
              transform 380ms var(--ease-out);
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal="scale"] {
  transform: scale(0.96);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* ========================= UTILITIES =================================== */
.text-center { text-align: center; }
.text-gold   { color: var(--accent); }
.text-green  { color: var(--primary); }
.text-white  { color: var(--white); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Products page — hidden from nav/links until published */
.is-unpublished {
  display: none !important;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  border: none;
}

.divider--gold {
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  height: 2px;
  opacity: 0.4;
}

.mt-auto { margin-top: auto; }
.w-full  { width: 100%; }

/* Skip to main content */
.skip-link {
  position: absolute;
  top: -40px;
  left: var(--s-4);
  padding: var(--s-2) var(--s-4);
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--r-md);
  z-index: 9999;
  transition: top var(--dur-fast) var(--ease);
}

.skip-link:focus {
  top: var(--s-4);
}

/* ========================= ARABIC RTL ================================== */
[dir="rtl"] {
  font-family: 'Noto Sans Arabic', 'Cairo', 'Tajawal', var(--ff-body);
}

[dir="rtl"] .section-tag {
  flex-direction: row-reverse;
}

[dir="rtl"] .section-tag::before {
  order: 1;
}

[dir="rtl"] .nav__links {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .nav__cta {
  margin-left: 0;
  margin-right: var(--s-4);
}

[dir="rtl"] .footer__link::before {
  content: '←';
}

[dir="rtl"] .footer__link:hover {
  padding-left: 0;
  padding-right: var(--s-2);
}

[dir="rtl"] .hero__label {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero__label::before {
  order: 1;
}

[dir="rtl"] .btn svg {
  transform: scaleX(-1);
}

[dir="rtl"] .btn:hover svg {
  transform: scaleX(-1) translateX(3px);
}

[dir="rtl"] .contact-card:hover {
  transform: translateX(-4px);
}

[dir="rtl"] .timeline::before {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

/* Tighter hero on short laptop viewports (e.g. 768px height) */
@media (min-width: 769px) and (max-height: 820px) {
  .hero__content {
    padding-top: calc(var(--header-h) + var(--s-2));
    padding-bottom: var(--s-2);
  }

  .hero__heading {
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    margin-bottom: var(--s-3);
  }

  .hero__subheading {
    margin-bottom: var(--s-4);
  }

  .hero__stats {
    margin-top: var(--s-8);
    gap: var(--s-2);
  }

  .hero__stat {
    padding: var(--s-2) var(--s-4);
  }

  .hero__trust {
    padding-block: var(--s-3);
  }
}

/* ========================= RESPONSIVE ================================== */

/* Large tablets & small desktops */
@media (max-width: 1200px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .trust-bar__item {
    padding: var(--s-2);
    font-size: 0.72rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured__inner {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .featured__image {
    max-width: 560px;
  }

  .about-preview__inner {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .about-preview__visual {
    max-width: 520px;
    margin-inline: auto;
  }

  .global__inner {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }

  .global__points {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-preview__grid {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .products-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .about-story__inner {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before { display: none; }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }

  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(even) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-date {
    grid-column: 1;
    grid-row: auto;
    text-align: left;
  }

  .timeline-dot {
    justify-self: flex-start;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* Mobile nav */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    z-index: 999;
    padding: var(--s-8);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__link {
    color: var(--n-600);
    font-size: var(--fs-xl);
    padding: var(--s-4) var(--s-6);
    width: 100%;
    text-align: center;
    border-radius: var(--r-lg);
  }

  .nav__link:hover {
    background: var(--bg-alt);
    color: var(--n-900);
  }

  .nav__link::after { display: none; }

  .nav__lang {
    color: var(--accent-dark);
  }

  .nav__cta {
    display: none;
  }

  .nav__cta-mobile {
    display: block;
    width: 100%;
    margin-top: var(--s-4);
  }

  .nav__toggle {
    display: flex;
  }

  /* Trust bar */
  .trust-bar__inner {
    gap: 0;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .trust-bar__divider { display: none; }

  .trust-bar__item {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-page__grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Hero */
  .hero__stats {
    flex-direction: column;
  }

  .hero__stat {
    min-width: unset;
    width: 100%;
    max-width: 320px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Footer */
  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--s-3);
  }

  /* Global points — 2×2 grid on mobile */
  .global__points {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3);
  }

  .global__point-text strong {
    font-size: var(--fs-xs);
  }

  .global__point-text span {
    font-size: 0.65rem;
  }

  /* About preview badge — hide label on small screens */
  .about-preview__badge-label {
    display: none;
  }

  /* Get in Touch — prevent horizontal overflow */
  html[lang="en"] .contact-preview__grid,
  html[lang="ar"] .contact-preview__grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  .contact-preview__grid,
  .contact-preview__grid > div,
  .contact-preview__info,
  .contact-form,
  .contact-form form {
    min-width: 0;
    max-width: 100%;
  }

  html[lang="en"] .contact-preview .contact-form,
  html[lang="ar"] .contact-preview .contact-form {
    padding: 1.25rem;
  }

  .contact-preview .contact-card__value {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-preview .contact-card:hover {
    transform: none;
  }

  .contact-preview .form-control {
    max-width: 100%;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Featured specs */
  .featured__specs {
    grid-template-columns: 1fr 1fr;
  }

  /* Filter tabs */
  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--s-2);
  }

  .filter-tabs::-webkit-scrollbar { display: none; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .hero__stat {
    max-width: unset;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Print */
@media print {
  .site-header,
  .nav__toggle { display: none; }

  body { background: white; }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
