/* ==========================================================================
   Freezing World Storage Co. — Site Stylesheet
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #1E2C8C;
  --navy-deep:   #131A5C;
  --navy-dark:   #0B1240;
  --cyan:        #1FAEE7;
  --cyan-deep:   #0B7AB0;     /* WCAG AA on white: 4.6:1 */
  --cyan-light:  #5BC6F0;     /* decoration on dark only */
  --frost:       #F4F9FC;
  --mist:        #E5EEF5;
  --line:        #DDE6EF;

  /* Text */
  --ink:         #0B1535;     /* body                   16:1 on white */
  --steel:       #3E4C66;     /* secondary              7:1 */
  --muted:       #5B6B7E;     /* tertiary               4.7:1 */
  --on-dark:     #ffffff;
  --on-dark-2:   rgba(255,255,255,0.85);
  --on-dark-3:   rgba(255,255,255,0.65);

  /* Status */
  --green:       #14A88A;
  --whatsapp:    #25D366;

  /* Layout */
  --max-w:       1200px;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* Shadows */
  --shadow-sm:   0 2px 8px -2px rgba(11,21,53,0.10);
  --shadow:      0 8px 24px -8px rgba(11,21,53,0.18);
  --shadow-cool: 0 12px 36px -12px rgba(30,44,140,0.30);
  --shadow-frost:0 12px 36px -12px rgba(31,174,231,0.40);
  --shadow-xl:   0 24px 60px -20px rgba(11,21,53,0.40);
}

/* ==========================================================================
   Base reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;            /* hard stop on horizontal page scroll */
}
body {
  margin: 0;
  font-family: 'IBM Plex Sans Arabic', 'Sora', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: white;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}
body.lang-en {
  font-family: 'Sora', 'Inter', 'IBM Plex Sans Arabic', system-ui, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
button { font: inherit; cursor: pointer; }

.latin { font-family: 'Sora', 'Inter', sans-serif; direction: ltr; unicode-bidi: isolate; }

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.frost-bg {
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(31,174,231,0.15), transparent 60%),
    radial-gradient(800px 400px at -10% 20%, rgba(30,44,140,0.08), transparent 60%),
    linear-gradient(180deg, var(--frost) 0%, white 100%);
}
.dark-bg {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 50%, var(--navy) 100%);
  color: var(--on-dark);
}
.ice-grid {
  background-image:
    linear-gradient(rgba(31,174,231,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,174,231,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Section heading pattern (uses body font = IBM Plex Sans Arabic on AR, Sora on EN) */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--cyan-deep);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
/* English-only: smaller, uppercased, spaced — typographically correct for Latin */
body.lang-en .section-eyebrow {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.section-eyebrow::before {
  content: '';
  width: 32px; height: 1.5px; background: var(--cyan-deep);
}
.dark-bg .section-eyebrow { color: var(--cyan-light); }
.dark-bg .section-eyebrow::before { background: var(--cyan-light); }

/* In centered section heads, mirror the decorative line on both sides
   so the eyebrow word sits exactly above the H2 title (desktop visual rhythm). */
.section-head .section-eyebrow { justify-content: center; }
.section-head .section-eyebrow::after {
  content: '';
  width: 32px; height: 1.5px; background: var(--cyan-deep);
}
.dark-bg .section-head .section-eyebrow::after { background: var(--cyan-light); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 20px;
}
.dark-bg .section-title { color: white; }
.section-title .grad {
  background: linear-gradient(90deg, var(--navy), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dark-bg .section-title .grad {
  background: linear-gradient(90deg, var(--cyan-light), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  font-size: 17px;
  color: var(--steel);
  line-height: 1.85;
  max-width: 700px;
}
.dark-bg .section-lead { color: var(--on-dark-2); }
.section-head { text-align: center; margin: 0 auto 56px; max-width: 760px; }
.section-head .section-eyebrow,
.section-head .section-title,
.section-head .section-lead { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn i { font-size: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan-deep) 100%);
  color: white;
  box-shadow: var(--shadow-cool);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(30,44,140,0.50);
  color: white;
}
.btn-white {
  background: white; color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--frost); transform: translateY(-2px); color: var(--navy); }
.btn-whatsapp {
  background: var(--whatsapp); color: white;
  box-shadow: 0 10px 24px -10px rgba(37,211,102,0.5);
}
.btn-whatsapp:hover {
  background: #1FBE5A; color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(37,211,102,0.65);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.10);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); color: white; }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-sm i { font-size: 15px; }

/* ==========================================================================
   Header / Navigation
   Default: transparent over a dark hero/policy-hero (white text, white logo)
   .scrolled / .menu-open: solid white with brand colors
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(6px);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand img {
  height: 48px; width: auto;
  filter: brightness(0) invert(1);    /* white logo over dark hero */
  transition: filter .35s ease;
}
.brand .name { line-height: 1.2; }
.brand .name .ar {
  font-weight: 700;
  color: white;                        /* white over dark hero */
  font-size: 15px;
  transition: color .35s ease;
}
.brand .name .en {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  transition: color .35s ease;
}

.nav-main { display: flex; align-items: center; gap: 32px; }
.nav-main a {
  position: relative;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 0;
  transition: color .25s ease;
}
.nav-main a:hover { color: var(--cyan-light); }
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 2px; background: var(--cyan-light);
  transform: scaleX(0); transform-origin: right;
  transition: transform .25s, background .35s;
}
[dir="ltr"] .nav-main a::after { transform-origin: left; }
.nav-main a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 8px 14px;
  border-radius: 9999px;
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 13px;
  text-decoration: none;
  transition: all .25s;
}
.lang-switch:hover {
  background: white; color: var(--navy); border-color: white;
}
.lang-switch i { font-size: 15px; }

.menu-btn {
  display: none;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  width: 44px; height: 44px;
  border-radius: 12px;
  color: white;
  font-size: 22px;
  align-items: center; justify-content: center;
  transition: all .25s;
}

/* ----- Solid state: scrolled past hero, OR mobile menu open ----- */
.site-header.scrolled,
body.menu-open .site-header {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -16px rgba(11,21,53,0.18);
}
.site-header.scrolled .brand img,
body.menu-open .site-header .brand img { filter: none; }
.site-header.scrolled .brand .name .ar,
body.menu-open .site-header .brand .name .ar { color: var(--navy); }
.site-header.scrolled .brand .name .en,
body.menu-open .site-header .brand .name .en { color: var(--muted); }
.site-header.scrolled .nav-main a,
body.menu-open .site-header .nav-main a { color: var(--ink); }
.site-header.scrolled .nav-main a:hover,
body.menu-open .site-header .nav-main a:hover { color: var(--cyan-deep); }
.site-header.scrolled .nav-main a::after,
body.menu-open .site-header .nav-main a::after { background: var(--cyan); }
.site-header.scrolled .lang-switch,
body.menu-open .site-header .lang-switch {
  background: var(--frost);
  border-color: var(--line);
  color: var(--navy);
}
.site-header.scrolled .lang-switch:hover,
body.menu-open .site-header .lang-switch:hover {
  background: var(--navy); color: white; border-color: var(--navy);
}
.site-header.scrolled .menu-btn,
body.menu-open .site-header .menu-btn {
  background: var(--frost);
  border-color: var(--line);
  color: var(--navy);
}

@media (max-width: 1024px) {
  .nav-main { display: none; }
  .menu-btn { display: inline-flex; }
  .brand .name { display: none; }
}

/* ==========================================================================
   Mobile Menu — premium card-style items
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(80% 50% at 100% 0%, rgba(31,174,231,0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,249,252,0.98) 100%);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 100px 22px 28px;
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  transition: transform .45s cubic-bezier(.2,.85,.25,1), opacity .35s ease, visibility 0s linear .45s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .45s cubic-bezier(.2,.85,.25,1), opacity .35s ease;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Card-style menu items (every <a> that isn't a .btn) */
.mobile-menu a:not(.btn) {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: white;
  border: 1px solid rgba(30,44,140,0.08);
  border-radius: 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform .25s, background .25s, border-color .25s, box-shadow .25s;
  position: relative;
}
.mobile-menu a:not(.btn) > i:first-child {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,44,140,0.10), rgba(31,174,231,0.10));
  color: var(--cyan-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background .25s, color .25s;
}
.mobile-menu a:not(.btn)::after {
  content: '\F284'; /* bi-chevron-left (RTL: pointing toward end) */
  font-family: 'bootstrap-icons';
  margin-inline-start: auto;
  color: var(--muted);
  font-size: 16px;
  opacity: 0.55;
  transition: transform .25s, opacity .25s, color .25s;
}
[dir="ltr"] .mobile-menu a:not(.btn)::after { content: '\F285'; } /* bi-chevron-right */
.mobile-menu a:not(.btn):hover,
.mobile-menu a:not(.btn):active {
  background: linear-gradient(135deg, white 0%, var(--frost) 100%);
  border-color: var(--cyan-deep);
  box-shadow: 0 10px 24px -12px rgba(30,44,140,0.20);
  transform: translateX(-4px);
}
[dir="ltr"] .mobile-menu a:not(.btn):hover,
[dir="ltr"] .mobile-menu a:not(.btn):active { transform: translateX(4px); }
.mobile-menu a:not(.btn):hover > i:first-child,
.mobile-menu a:not(.btn):active > i:first-child {
  background: linear-gradient(135deg, var(--navy), var(--cyan-deep));
  color: white;
}
.mobile-menu a:not(.btn):hover::after,
.mobile-menu a:not(.btn):active::after {
  opacity: 1;
  color: var(--cyan-deep);
  transform: translateX(-4px);
}
[dir="ltr"] .mobile-menu a:not(.btn):hover::after,
[dir="ltr"] .mobile-menu a:not(.btn):active::after { transform: translateX(4px); }

.mobile-menu .btn {
  margin-top: 18px;
  padding: 16px;
  width: 100%;
  font-size: 15.5px;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex; align-items: center;
  color: white;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../warehouse-exterior.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.65);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(11,18,64,0.93) 0%, rgba(19,26,92,0.82) 50%, rgba(30,44,140,0.55) 100%);
  z-index: -1;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 13px; font-weight: 600;
  backdrop-filter: blur(6px);
}
.hero-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan-light);
  box-shadow: 0 0 0 0 var(--cyan-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(91,198,240,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(91,198,240,0); }
  100% { box-shadow: 0 0 0 0 rgba(91,198,240,0); }
}
.hero-tag i { color: var(--cyan-light); font-size: 16px; }

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin: 24px 0 24px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--cyan-light), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 18px;
  line-height: 1.75;
  color: var(--on-dark-2);
  max-width: 560px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 520px;
  margin-top: 56px;
}
.hero-stat {
  text-align: center;            /* lbl sits exactly under num */
  padding-top: 14px;
  position: relative;
}
.hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}
.hero-stat .num {
  font-family: 'Sora', sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1;
}
.hero-stat .lbl { font-size: 13px; color: var(--on-dark-3); margin-top: 6px; }

.hero-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(31,174,231,0.4), transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}
.hero-card img {
  height: 180px; width: auto; margin: 0 auto;
  filter: brightness(0) invert(1);   /* render the brand logo as pure white inside the hero card */
}
.hero-card .cr-block { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18); }
.hero-card .cr-block .lbl {
  font-size: 13px;
  color: var(--on-dark-3); font-weight: 600;
}
body.lang-en .hero-card .cr-block .lbl {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.hero-card .cr-block .val {
  font-family: 'Sora', sans-serif;
  font-size: 26px; font-weight: 700;
  letter-spacing: 3px;
  color: var(--cyan-light);
  margin-top: 6px;
}

@media (max-width: 1024px) {
  .hero-card { display: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 22px;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,8px);} }

/* ==========================================================================
   About section
   ========================================================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.vm-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 32px;
}
@media (max-width: 640px) { .vm-grid { grid-template-columns: 1fr; } }
/* ========== Premium Vision / Mission cards ========== */
.vm-card {
  position: relative;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(30,44,140,0.08) 0%, transparent 60%),
    linear-gradient(180deg, white 0%, var(--frost) 100%);
  border: 1px solid rgba(30,44,140,0.10);
  border-radius: 22px;
  padding: 30px 26px 28px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 4px 16px -8px rgba(11,21,53,0.10);
}
/* Subtle hex corner accent on the inset-end side */
.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 170px; height: 170px;
  background: linear-gradient(135deg, rgba(30,44,140,0.14) 0%, rgba(31,174,231,0.08) 60%, transparent);
  z-index: -1;
}
[dir="rtl"] .vm-card::before {
  clip-path: polygon(0% 0%, 65% 0%, 100% 35%, 100% 100%, 35% 100%, 0% 65%);
}
[dir="ltr"] .vm-card::before {
  clip-path: polygon(35% 0%, 100% 0%, 100% 65%, 65% 100%, 0% 100%, 0% 35%);
}
.vm-card.cyan::before {
  background: linear-gradient(135deg, rgba(11,122,176,0.16) 0%, rgba(91,198,240,0.08) 60%, transparent);
}

.vm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31,174,231,0.40);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 22px 44px -18px rgba(30,44,140,0.25),
    0 0 0 1px rgba(31,174,231,0.20);
}

.vm-card .icon {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  box-shadow:
    0 12px 24px -8px rgba(30,44,140,0.40),
    inset 0 1px 0 rgba(255,255,255,0.20);
}
.vm-card .icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 1px solid rgba(30,44,140,0.18);
  pointer-events: none;
}
.vm-card.cyan .icon {
  background: linear-gradient(135deg, var(--cyan-deep), var(--cyan));
  box-shadow:
    0 12px 24px -8px rgba(31,174,231,0.50),
    inset 0 1px 0 rgba(255,255,255,0.30);
}
.vm-card.cyan .icon::after { border-color: rgba(11,122,176,0.22); }

.vm-card h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  display: flex; align-items: center; gap: 10px;
  line-height: 1.25;
}
.vm-card h3::before {
  content: '';
  width: 4px; height: 22px;
  background: linear-gradient(180deg, var(--navy), var(--cyan-deep));
  border-radius: 2px;
  flex-shrink: 0;
}
.vm-card.cyan h3::before {
  background: linear-gradient(180deg, var(--cyan-deep), var(--cyan));
}

.vm-card p {
  color: var(--steel);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .vm-card { padding: 26px 22px 24px; border-radius: 20px; }
  .vm-card .icon { width: 56px; height: 56px; font-size: 24px; }
  .vm-card h3 { font-size: 19px; }
  .vm-card p { font-size: 14.5px; }
}

.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 540px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -24px;
  inset-inline-end: -24px;
  background: white;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-cool);
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  max-width: 250px;
}
.about-badge .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--cyan-deep));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.about-badge .lbl { font-size: 12px; color: var(--muted); }
.about-badge .val { font-weight: 700; color: var(--navy); font-size: 15px; }

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: 1fr; } }

/* ========== Premium service card — layered, branded frame ========== */
.service-card {
  position: relative;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(31,174,231,0.06) 0%, transparent 55%),
    linear-gradient(180deg, #fbfdff 0%, #f1f7fb 100%);
  border: 1px solid rgba(30,44,140,0.10);
  border-radius: 24px;
  padding: 36px 28px 28px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 4px 18px -8px rgba(11,21,53,0.10);
}

/* Brand-colored hex corner accent at the END side (opposite the icon, no overlap) */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 220px; height: 220px;
  background: linear-gradient(135deg, rgba(30,44,140,0.18) 0%, rgba(31,174,231,0.10) 50%, transparent 80%);
  z-index: -1;
  transition: opacity .4s;
}
/* Hexagon-cut clip-path is direction-aware */
[dir="rtl"] .service-card::before {
  clip-path: polygon(0% 0%, 65% 0%, 100% 35%, 100% 100%, 35% 100%, 0% 65%);
}
[dir="ltr"] .service-card::before {
  clip-path: polygon(35% 0%, 100% 0%, 100% 65%, 65% 100%, 0% 100%, 0% 35%);
}
.service-card.cool::before { background: linear-gradient(135deg, rgba(11,122,176,0.18), rgba(91,198,240,0.10) 60%, transparent); }
.service-card.dry::before  { background: linear-gradient(135deg, rgba(11,18,64,0.16),  rgba(30,44,140,0.10) 60%, transparent); }

/* Big translucent index badge at the END corner (visible, opposite the icon) */
.service-card::after {
  content: attr(data-index);
  position: absolute;
  top: 18px;
  inset-inline-end: 28px;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: rgba(30,44,140,0.20);
  line-height: 0.85;
  letter-spacing: -3px;
  z-index: 1;
  pointer-events: none;
}
.service-card.cool::after { color: rgba(11,122,176,0.22); }
.service-card.dry::after  { color: rgba(11,18,64,0.20); }

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(31,174,231,0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 28px 48px -18px rgba(30,44,140,0.30),
    0 0 0 1px rgba(31,174,231,0.30);
}

/* Premium icon: bigger, double halo, brand glow */
.service-card .icon {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  box-shadow:
    0 12px 24px -8px rgba(30,44,140,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.service-card .icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(30,44,140,0.18);
  pointer-events: none;
}
.service-card.cool .icon {
  background: linear-gradient(135deg, var(--cyan-deep), var(--cyan));
  box-shadow:
    0 12px 24px -8px rgba(31,174,231,0.50),
    inset 0 1px 0 rgba(255,255,255,0.30);
}
.service-card.cool .icon::after { border-color: rgba(11,122,176,0.22); }
.service-card.dry .icon  {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  box-shadow:
    0 12px 24px -8px rgba(11,18,64,0.45),
    inset 0 1px 0 rgba(255,255,255,0.20);
}
.service-card.dry .icon::after { border-color: rgba(11,18,64,0.20); }
.service-card h3 { color: var(--navy); font-size: 22px; margin: 0 0 8px; }
.service-card .temp {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--frost);
  color: var(--cyan-deep);
  font-weight: 700; font-size: 13px;
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}
body.lang-en .service-card .temp { font-family: 'Sora', 'Inter', sans-serif; font-size: 12px; }
.service-card p { color: var(--steel); font-size: 14.5px; line-height: 1.7; margin-bottom: 16px; }
.service-card ul { list-style: none; padding: 0; margin: 0; }
.service-card ul li {
  position: relative;
  padding-inline-start: 24px;
  margin-bottom: 8px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
}
.service-card ul li::before {
  content: '\F26A'; /* bi-check2 */
  font-family: 'bootstrap-icons';
  position: absolute;
  inset-inline-start: 0; top: 0;
  color: var(--cyan-deep);
  font-size: 16px; font-weight: 600;
}
.service-card .pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-weight: 600; font-size: 13px;
}
body.lang-en .pill { font-family: 'Sora', 'Inter', sans-serif; font-size: 12px; }
.pill.navy { background: rgba(30,44,140,0.10); color: var(--navy); }
.pill.cyan { background: rgba(11,122,176,0.10); color: var(--cyan-deep); }
.pill i { font-size: 14px; }

/* Operations strip */
.ops-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 56px;
}
@media (max-width: 1024px) { .ops-grid { grid-template-columns: 1fr; } }

.ops-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.ops-card.dark { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); }
.ops-card.cyan { background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan) 100%); }
.ops-card .head-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.ops-card .icon-tile {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.ops-card h3 { font-size: 22px; font-weight: 700; margin: 0; }
.ops-card ul { list-style: none; padding: 0; margin: 0; }
.ops-card ul li {
  position: relative;
  padding-inline-start: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
}
.ops-card ul li::before {
  content: '\F633'; /* bi-check */
  font-family: 'bootstrap-icons';
  position: absolute;
  inset-inline-start: 0; top: 0;
  font-size: 18px;
  color: var(--cyan-light);
  opacity: 0.95;
}
.ops-card.cyan ul li::before { color: white; }

/* ==========================================================================
   Sectors
   ========================================================================== */
.sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .sectors-grid { grid-template-columns: 1fr; } }

.sector-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  transition: all .25s;
}
.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-cool);
  border-color: var(--cyan);
}
.sector-card .icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--frost), var(--mist));
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.sector-card h4 { color: var(--navy); font-size: 14.5px; margin: 0 0 6px; }
.sector-card p { color: var(--muted); font-size: 12.5px; margin: 0; line-height: 1.55; }

/* ==========================================================================
   Why-us — restructured: centered head, asymmetric collage, 2x2 features
   ========================================================================== */
#why-us .section-head { margin-bottom: 56px; }

/* Asymmetric image collage: tall hero + 2 stacked secondaries */
.why-collage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
  margin-bottom: 64px;
  position: relative;
}
.why-collage::before {
  content: '';
  position: absolute;
  inset: 0;                                /* contained — no horizontal overflow */
  background:
    radial-gradient(60% 50% at 0% 50%, rgba(31,174,231,0.10) 0%, transparent 60%),
    radial-gradient(50% 40% at 100% 100%, rgba(30,44,140,0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.why-collage figure { margin: 0; position: relative; overflow: hidden; }
.why-collage figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.why-collage figure:hover img { transform: scale(1.05); }

.why-collage .ph-1 {
  grid-row: 1 / 3;             /* tall hero on inset-start */
  border-radius: 32px 12px 32px 12px;
  box-shadow: 0 24px 48px -20px rgba(11,21,53,0.30);
}
.why-collage .ph-2 {
  border-radius: 12px 32px 12px 12px;
  box-shadow: 0 18px 36px -16px rgba(11,21,53,0.22);
}
.why-collage .ph-3 {
  border-radius: 12px 12px 32px 32px;
  box-shadow: 0 18px 36px -16px rgba(11,21,53,0.22);
}

/* Caption tag floating on top-left of the big tile */
.why-collage .ph-1::after {
  content: attr(data-cap);
  position: absolute;
  bottom: 18px;
  inset-inline-start: 18px;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 9999px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 16px -4px rgba(11,21,53,0.20);
}
.why-collage .ph-1::before {
  content: '\F275'; /* bi-circle-fill -ish, but use BS check */
  font-family: 'bootstrap-icons';
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 1;
  color: var(--cyan-deep);
  font-size: 14px;
}

/* 2x2 Feature grid (5 items: 2x2 + last centered) */
.why-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-list > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 9px);
  margin-inline: auto;
}
.why-list li {
  display: flex; gap: 16px;
  align-items: flex-start;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(31,174,231,0.05) 0%, transparent 60%),
    linear-gradient(180deg, white 0%, var(--frost) 100%);
  border: 1px solid rgba(30,44,140,0.10);
  border-radius: 20px;
  padding: 24px 22px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden;
}
.why-list li::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: linear-gradient(135deg, rgba(30,44,140,0.10), transparent 70%);
  clip-path: polygon(40% 0%, 100% 0%, 100% 60%, 60% 100%, 0% 100%, 0% 40%);
  opacity: 0.6;
}
[dir="ltr"] .why-list li::before {
  right: auto; left: 0;
  clip-path: polygon(0% 0%, 60% 0%, 100% 40%, 100% 100%, 40% 100%, 0% 60%);
}
.why-list li:nth-child(even)::before { background: linear-gradient(135deg, rgba(11,122,176,0.10), transparent 70%); }
.why-list li:hover {
  transform: translateY(-6px);
  border-color: rgba(31,174,231,0.40);
  box-shadow:
    0 18px 40px -16px rgba(30,44,140,0.22),
    0 0 0 1px rgba(31,174,231,0.20);
}
.why-list .icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -8px rgba(30,44,140,0.45);
}
.why-list li:nth-child(even) .icon-tile {
  background: linear-gradient(135deg, var(--cyan-deep), var(--cyan));
  box-shadow: 0 8px 20px -8px rgba(31,174,231,0.50);
}
.why-list h4 { color: var(--navy); font-size: 16.5px; font-weight: 700; margin: 0 0 6px; line-height: 1.3; }
.why-list p  { color: var(--steel); font-size: 14px; margin: 0; line-height: 1.65; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-cool);
  height: 280px;
  cursor: pointer;
}
.gallery-tile.tall { height: 320px; }
.gallery-tile.wide { grid-column: span 2; }
@media (max-width: 1024px) { .gallery-tile.wide { grid-column: span 2; } }
@media (max-width: 640px)  { .gallery-tile.wide { grid-column: span 1; } }

.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile .cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(11,18,64,0.85));
  color: white;
}
.gallery-tile .cap h4 { font-size: 16px; font-weight: 700; margin: 0; }
.gallery-tile .cap p { font-size: 12px; color: rgba(255,255,255,0.8); margin: 4px 0 0; }

/* ==========================================================================
   Compliance / CR
   ========================================================================== */
.cr-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11,18,64,0.94) 0%, rgba(19,26,92,0.88) 50%, rgba(30,44,140,0.82) 100%),
    url('../cold-room-pallets-1.jpg') center/cover no-repeat;
  background-attachment: scroll;
}
.cr-section .ice-grid { opacity: 0.35 !important; }
.cr-section .grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 1024px) { .cr-section .grid { grid-template-columns: 1fr; gap: 40px; } }

.cr-meta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 28px;
}
.cr-meta-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 18px 20px;
  backdrop-filter: blur(6px);
}
.cr-meta-card .lbl {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--on-dark-3); font-weight: 600;
}
body.lang-en .cr-meta-card .lbl {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.cr-meta-card .lbl i { color: var(--cyan-light); font-size: 14px; }
.cr-meta-card .val {
  font-size: 22px; font-weight: 700;
  color: white; margin-top: 6px;
}
.cr-meta-card .val.cyan { color: var(--cyan-light); letter-spacing: 2px; font-family: 'Sora', sans-serif; }
.cr-meta-card .val.green { color: #6FE3CB; display: inline-flex; align-items: center; gap: 8px; font-size: 18px; }
.cr-meta-card .val.green::before {
  content: ''; width: 10px; height: 10px; border-radius: 50%;
  background: #14e3a8;
  box-shadow: 0 0 0 0 rgba(20,227,168,0.6);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green { 0%,100%{box-shadow:0 0 0 0 rgba(20,227,168,0.6);} 70%{box-shadow:0 0 0 8px rgba(20,227,168,0);} }
.cr-meta-card .val.sm { font-size: 15px; }

.cr-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.cr-pdf-card {
  position: relative;
  background: linear-gradient(135deg, var(--cyan-deep), var(--navy));
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.cr-pdf-card iframe {
  width: 100%;
  height: 540px;
  border: 0;
  border-radius: var(--radius);
  background: white;
  display: block;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--frost);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all .3s;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-cool);
  border-color: var(--cyan);
  color: var(--ink);
}
.contact-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: transform .3s;
}
.contact-card:hover .icon { transform: scale(1.08); }
.contact-card.whatsapp .icon { background: linear-gradient(135deg, var(--whatsapp), #1FBE5A); }
.contact-card.location .icon { background: linear-gradient(135deg, var(--cyan-deep), var(--cyan)); }
.contact-card h4 { color: var(--navy); font-size: 18px; margin: 0 0 8px; }
.contact-card .val { font-size: 22px; font-weight: 700; color: var(--ink); }
.contact-card .val.ltr { direction: ltr; letter-spacing: 1.5px; font-family: 'Sora', sans-serif; }
.contact-card .sub { color: var(--muted); font-size: 13px; margin-top: 6px; }
.contact-card .badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px; font-weight: 700;
}
body.lang-en .contact-card .badge { font-family: 'Sora', 'Inter', sans-serif; font-size: 12px; }
.contact-card.whatsapp .badge { background: rgba(37,211,102,0.12); color: #0e6b3c; }
.contact-card.location .badge { background: rgba(11,122,176,0.10); color: var(--cyan-deep); }

/* ==========================================================================
   CTA strip
   ========================================================================== */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 50%, var(--navy) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,174,231,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,174,231,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}
.cta-strip > * { position: relative; }
.cta-strip h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}
.cta-strip p { font-size: 16px; color: var(--on-dark-2); margin: 0 0 32px; }
.cta-strip .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #06112E;
  color: var(--on-dark-2);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.footer-brand .logo-row img {
  height: 56px; background: white; padding: 6px; border-radius: 10px;
}
.footer-brand .logo-row .ar { color: white; font-weight: 700; font-size: 17px; }
.footer-brand .logo-row .en { font-family: 'Sora', sans-serif; font-size: 11px; color: var(--on-dark-3); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 380px; color: var(--on-dark-2); }
.footer-brand .cr-line {
  margin-top: 16px;
  font-size: 13px; color: var(--on-dark-3);
}
.footer-brand .cr-line strong {
  color: var(--cyan-light);
  font-family: 'Sora', 'Inter', sans-serif;   /* the CR number is purely numeric */
  letter-spacing: 1.5px;
  font-weight: 700;
}
body.lang-en .footer-brand .cr-line { font-family: 'Sora', 'Inter', sans-serif; }

.footer-col h5 { color: white; font-size: 14px; font-weight: 700; margin: 0 0 16px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col li a {
  color: var(--on-dark-2);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.footer-col li a:hover { color: var(--cyan-light); }
.footer-col li a i { font-size: 14px; opacity: 0.6; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 13px;
  color: var(--on-dark-3);
}
body.lang-en .footer-bottom { font-family: 'Sora', 'Inter', sans-serif; font-size: 12.5px; }
.footer-bottom .social { display: flex; gap: 10px; }
.footer-bottom .social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--on-dark-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all .2s;
}
.footer-bottom .social a:hover { background: var(--cyan-deep); color: white; transform: translateY(-2px); }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.fab-wa {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  font-size: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6);
  transition: all .25s;
  animation: pulse-wa 2s infinite;
}
.fab-wa:hover { transform: scale(1.1); color: white; }
@keyframes pulse-wa {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6), 0 10px 30px -8px rgba(37,211,102,0.6); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0), 0 10px 30px -8px rgba(37,211,102,0.6); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 30px -8px rgba(37,211,102,0.6); }
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Policy / Article pages
   ========================================================================== */
.policy-hero {
  padding: 140px 0 64px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.policy-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,174,231,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,174,231,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.policy-hero > * { position: relative; }
.policy-hero .crumb {
  font-size: 14px;
  color: var(--cyan-light);
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
body.lang-en .policy-hero .crumb {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
}
.policy-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin: 0 0 16px;
}
.policy-hero p {
  font-size: 17px;
  color: var(--on-dark-2);
  max-width: 700px;
  line-height: 1.75;
  margin: 0;
}

.policy-body {
  padding: 64px 0 96px;
}
.policy-body article {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) { .policy-body article { padding: 32px 24px; } }

.policy-body article h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 12px;
  display: flex; align-items: center; gap: 12px;
}
.policy-body article h2 i { color: var(--cyan-deep); font-size: 24px; }
.policy-body article h2:first-child { margin-top: 0; }
.policy-body article h3 {
  font-size: 17px;
  color: var(--navy);
  margin: 24px 0 8px;
}
.policy-body article p {
  font-size: 15.5px;
  color: var(--steel);
  line-height: 1.85;
  margin: 0 0 14px;
}
.policy-body article ul {
  padding-inline-start: 22px;
  margin: 0 0 14px;
}
.policy-body article li {
  font-size: 15.5px;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 8px;
}
.policy-body article a { color: var(--cyan-deep); font-weight: 600; }
.policy-body article a:hover { color: var(--navy); text-decoration: underline; }

.policy-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
body.lang-en .policy-meta { font-family: 'Sora', 'Inter', sans-serif; font-size: 13px; }

/* ==========================================================================
   Utility
   ========================================================================== */
.no-scroll { overflow: hidden; }
.hide-mobile { display: inline; }
@media (max-width: 768px) { .hide-mobile { display: none; } }

/* ==========================================================================
   Floating call button (paired with WhatsApp)
   ========================================================================== */
.fab-call {
  position: fixed;
  bottom: 96px;                     /* sit above the WhatsApp FAB */
  inset-inline-start: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--cyan-deep));
  color: white;
  font-size: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(30,44,140,0.55);
  transition: transform .25s, box-shadow .25s;
}
.fab-call:hover {
  transform: scale(1.08);
  color: white;
  box-shadow: 0 14px 36px -8px rgba(30,44,140,0.7);
}

/* ==========================================================================
   Move SFDA badge to top of about image
   ========================================================================== */
.about-badge {
  top: 24px;
  bottom: auto;
  inset-inline-end: -20px;
}
@media (max-width: 640px) {
  .about-badge {
    top: 16px;
    inset-inline-end: 16px;
    padding: 12px 16px;
    max-width: 220px;
  }
  .about-badge .icon { width: 40px; height: 40px; font-size: 18px; }
  .about-badge .lbl { font-size: 11px; }
  .about-badge .val { font-size: 14px; }
}

/* ==========================================================================
   MOBILE POLISH — grids, hero, footer, CR iframe, CTA buttons
   ========================================================================== */

/* ----- Hero: center text + actions on mobile ----- */
@media (max-width: 1024px) {
  .hero { text-align: center; }
  .hero-tag, .hero h1 { text-align: inherit; }
  .hero p.lede {
    margin-inline: auto;
    text-align: inherit;
  }
  .hero-actions { justify-content: center; }
  .hero-stats {
    margin-inline: auto;
    justify-items: center;
  }
  .hero-stat { border-inline-start-width: 0; padding-inline-start: 0; text-align: center; }
  .hero-stat .num { font-size: 26px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; line-height: 1.2; }
  .hero p.lede { font-size: 14.5px; line-height: 1.65; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 18px; font-size: 14px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero-stat .num { font-size: 22px; }
  .hero-stat .lbl { font-size: 11.5px; }
}

/* ----- Services grid: 2x{2,1} on tablet/mobile, last orphan centered ----- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .services-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    margin-inline: auto;
  }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid > :last-child:nth-child(odd) {
    max-width: 100%;
    grid-column: auto;
  }
  .service-card { padding: 24px 22px; }
}

/* ----- Sectors grid: stay 2-col on mobile, last (5th) orphan centered ----- */
@media (max-width: 1024px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    margin-inline: auto;
  }
}
@media (max-width: 480px) {
  .sectors-grid { gap: 12px; }
  .sectors-grid > :last-child:nth-child(odd) {
    max-width: calc(50% - 6px);
  }
}

/* ----- Why-us collage: collapse to single column on mobile ----- */
@media (max-width: 768px) {
  .why-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 200px 200px;
    gap: 12px;
    margin-bottom: 40px;
  }
  .why-collage .ph-1 {
    grid-row: auto;
    border-radius: 24px;
  }
  .why-collage .ph-2,
  .why-collage .ph-3 { border-radius: 18px; }
  .why-list { grid-template-columns: 1fr; gap: 12px; }
  .why-list > :last-child:nth-child(odd) {
    max-width: 100%;
    grid-column: auto;
  }
  .why-list li { padding: 20px 18px; }
}

/* ----- Gallery: keep visible balance on mobile ----- */
@media (max-width: 640px) {
  .gallery-tile, .gallery-tile.tall { height: 240px; }
  .gallery-tile.wide { grid-column: span 1; }
}

/* ----- Compliance / CR PDF: responsive iframe height ----- */
@media (max-width: 1024px) {
  .cr-pdf-card iframe { height: 460px; }
  .cr-actions { justify-content: center; }
}
@media (max-width: 640px) {
  .cr-pdf-card iframe { height: 380px; }
  .cr-meta-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .cr-pdf-card iframe { height: 300px; }
  .cr-pdf-card { padding: 8px; }
}

/* ----- Contact grid: 2-col on tablet, full on mobile, orphan centered ----- */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .contact-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
    margin-inline: auto;
  }
}
@media (max-width: 520px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > :last-child:nth-child(odd) {
    max-width: 100%;
    grid-column: auto;
  }
}

/* ----- About grid: center text on mobile (lead, eyebrow keep right alignment in RTL) ----- */
@media (max-width: 1024px) {
  .about-img { height: 380px; }
}

/* ----- CTA strip: side-by-side buttons on mobile (tight) ----- */
.cta-strip .actions { flex-wrap: wrap; }
@media (max-width: 600px) {
  .cta-strip .actions {
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
  .cta-strip .actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 10px;
    font-size: 12.5px;
    gap: 6px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .cta-strip .actions .btn i { font-size: 16px; flex-shrink: 0; }
}

/* ----- Footer 2x2 layout on mobile ----- */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; text-align: start; }
  /* The 3 link cols become a 2x2 group with last (Contact) spanning full width */
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-col h5 { font-size: 13px; margin-bottom: 12px; }
  .footer-col li { font-size: 13.5px; margin-bottom: 8px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom .social { order: 0; }
}
@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:last-child { grid-column: auto; }
}

/* ----- Floating call: hide on very tiny screens or compact ----- */
@media (max-width: 380px) {
  .fab-call { width: 50px; height: 50px; font-size: 22px; bottom: 86px; }
  .fab-wa   { width: 54px; height: 54px; font-size: 25px; }
}

/* ----- Section heads stay centered on mobile (already are via .section-head) ----- */
@media (max-width: 640px) {
  .section-title { font-size: 26px; }
  .section-lead  { font-size: 15px; }
  section { padding: 56px 0; }
}

/* ----- Why-us list spacing on mobile ----- */
@media (max-width: 640px) {
  .why-list h4 { font-size: 15px; }
  .why-list p { font-size: 13.5px; }
}

/* ==========================================================================
   SERVICES SECTION — mobile redesign (one-column, premium presentation)
   ========================================================================== */
@media (max-width: 768px) {
  /* Section header: tighter, more elegant on mobile */
  #services .section-head { margin-bottom: 36px; }
  #services .section-title { font-size: 28px; line-height: 1.2; }
  #services .section-lead { font-size: 15px; line-height: 1.75; }

  /* Single column — full width, no orphan-centering hack */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  .services-grid > :last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
    margin-inline: 0;
  }

  /* Beefier service cards on mobile */
  .service-card {
    padding: 28px 24px 24px;
    border-radius: 22px;
  }
  .service-card::before { height: 5px; }

  /* Larger, more prominent icon */
  .service-card .icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    font-size: 32px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px -10px rgba(30,44,140,0.45);
  }
  .service-card.cool .icon { box-shadow: 0 12px 28px -10px rgba(31,174,231,0.50); }
  .service-card.dry  .icon { box-shadow: 0 12px 28px -10px rgba(11,18,64,0.45); }

  /* Bigger title + temp pill */
  .service-card h3 { font-size: 22px; margin-bottom: 10px; }
  .service-card .temp {
    padding: 7px 14px;
    font-size: 13.5px;
    margin-bottom: 16px;
  }
  .service-card .temp i { font-size: 15px; }

  /* Description and list */
  .service-card p { font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
  .service-card ul li {
    font-size: 14.5px;
    line-height: 1.6;
    padding-inline-start: 26px;
    margin-bottom: 9px;
  }
  .service-card ul li::before { font-size: 17px; top: 1px; }

  /* Pills (غرف / طبالي) — bigger touch targets */
  .service-card .pills {
    margin-top: 18px; padding-top: 18px;
    gap: 10px;
  }
  .pill {
    padding: 7px 14px;
    font-size: 13.5px;
  }
  .pill i { font-size: 15px; }
}

/* Even tighter for very small screens (compact phones) */
@media (max-width: 380px) {
  .service-card { padding: 24px 20px 22px; }
  .service-card h3 { font-size: 20px; }
  .service-card .icon { width: 64px; height: 64px; font-size: 28px; }
}

/* ==========================================================================
   OPS CARDS — better mobile presentation (Inventory + Quality monitoring)
   ========================================================================== */
@media (max-width: 768px) {
  .ops-grid {
    margin-top: 32px;
    gap: 16px;
  }
  .ops-card {
    padding: 28px 24px;
    border-radius: 22px;
  }
  .ops-card .head-row {
    gap: 14px;
    margin-bottom: 18px;
  }
  .ops-card .icon-tile {
    width: 56px; height: 56px;
    border-radius: 16px;
    font-size: 26px;
    flex-shrink: 0;
  }
  .ops-card h3 { font-size: 19px; line-height: 1.25; }
  .ops-card ul li {
    font-size: 14.5px;
    line-height: 1.65;
    padding-inline-start: 30px;
    margin-bottom: 10px;
  }
  .ops-card ul li::before { font-size: 19px; top: 1px; }
}

/* ==========================================================================
   Subtitle / pill / label font fallback safety net
   Every Arabic-bearing label inherits body's IBM Plex Sans Arabic by default.
   Latin-only spans inside them keep the .latin class for Sora rendering.
   ========================================================================== */
