/* ==========================================================================
   Aero Freight & Logistics — style.css
   Corporate · Charcoal + Aero Green (brand-true) · Structured · Photography-led
   Light/Dark themes via CSS custom properties · RTL-aware (dir="rtl")
   ========================================================================== */

:root {
  /* Brand — extracted from the Aero logo (charcoal wordmark + green chevron) */
  --brand:       #12b257;      /* Aero green */
  --brand-deep:  #0a6d37;      /* AA-safe green for text/fills on white */
  --brand-2:     #0b8a45;      /* mid green — hovers */
  --brand-ink:   #07331d;      /* deepest green */
  --brand-soft:  #eaf6ee;      /* green tint surface */

  /* Ink & neutral scale (charcoal, faint cool-green undertone) */
  --clr-primary:   #16211c;    /* near-black corporate ink */
  --clr-primary-2: #2c3a33;    /* charcoal */
  --clr-accent:    var(--brand-deep);   /* legacy hook → green */
  --clr-accent-2:  var(--brand-deep);

  --bg: #ffffff;
  --bg-alt: #f4f7f5;           /* cool off-white */
  --bg-card: #ffffff;
  --bg-elev: #eef2f0;
  --text: #16211c;
  --text-muted: #57655e;
  --border: #e0e6e2;
  --hairline: rgba(12, 28, 20, .08);

  --shadow:    0 20px 48px -22px rgba(11, 26, 19, .28);
  --shadow-sm: 0 8px 22px -14px rgba(11, 26, 19, .20);

  --hero-overlay: linear-gradient(115deg, rgba(9,18,14,.86) 0%, rgba(9,18,14,.55) 46%, rgba(7,20,14,.42) 100%);
  --hero-overlay-b: linear-gradient(180deg, rgba(8,16,12,0) 40%, rgba(8,16,12,.55) 100%);
  --media-tint: linear-gradient(180deg, rgba(7,20,14,0) 55%, rgba(7,20,14,.34) 100%);
  --nav-bg: rgba(255,255,255,.86);
  --footer-bg: #0c1512;
  --footer-text: #9fb1a8;

  --radius: 12px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1200px;
}

html[data-theme="dark"] {
  --brand:       #1ecb6c;
  --brand-deep:  #35d489;
  --brand-2:     #22b863;
  --brand-ink:   #0c3f26;
  --brand-soft:  #10231a;

  --clr-primary: #f2f6f4;
  --clr-primary-2: #c3ccc7;
  --clr-accent:  #35d489;
  --clr-accent-2: #35d489;

  --bg: #070d0a;
  --bg-alt: #0c1410;
  --bg-card: #101a15;
  --bg-elev: #16221c;
  --text: #eef3f0;
  --text-muted: #93a49b;
  --border: #223029;
  --hairline: rgba(255,255,255,.08);

  --shadow:    0 26px 60px -22px rgba(0,0,0,.72);
  --shadow-sm: 0 12px 30px -16px rgba(0,0,0,.6);

  --hero-overlay: linear-gradient(115deg, rgba(3,8,6,.9) 0%, rgba(3,8,6,.62) 46%, rgba(3,10,7,.5) 100%);
  --media-tint: linear-gradient(180deg, rgba(2,8,5,0) 50%, rgba(2,8,5,.5) 100%);
  --nav-bg: rgba(8,14,11,.82);
  --footer-bg: #05100b;
  --footer-text: #859890;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 104px; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.62;
  font-size: 16.5px;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .4s var(--ease), color .4s var(--ease);
  overflow-x: hidden;
}
html[dir="rtl"] body { font-family: "Tajawal", "Segoe UI", system-ui, sans-serif; letter-spacing: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--brand); color: #fff; }

.container { width: min(var(--maxw), 92%); margin-inline: auto; }

h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -0.022em; color: var(--clr-primary); }
html[data-theme="dark"] h1, html[data-theme="dark"] h2, html[data-theme="dark"] h3, html[data-theme="dark"] h4 { color: var(--text); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 { letter-spacing: 0; line-height: 1.25; }

.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

/* Eyebrow — small caps with a leading green rule (corporate signal) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--brand); display: inline-block;
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; }

.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: 18px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.55; }

/* ---------- Buttons (squared, corporate) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: .95rem;
  letter-spacing: -0.01em; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--clr-primary); color: #fff; }
html[data-theme="dark"] .btn-primary { background: var(--brand); color: #04140b; }
.btn-primary:hover { background: var(--brand-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(10,109,55,.6); }
html[data-theme="dark"] .btn-primary:hover { background: var(--brand-2); }
.btn-outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-soft); transform: translateY(-2px); }

/* On dark surfaces (hero, cta, page-hero) */
.hero .btn-primary, .page-hero .btn-primary, .cta-band .btn-primary {
  background: var(--brand); color: #04140b;
}
.hero .btn-primary:hover, .page-hero .btn-primary:hover, .cta-band .btn-primary:hover {
  background: #ffffff; color: var(--clr-primary);
}
.hero .btn-outline, .page-hero .btn-outline, .btn-outline-light {
  color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06);
}
.hero .btn-outline:hover, .page-hero .btn-outline:hover, .btn-outline-light:hover { background: #fff; color: var(--clr-primary); border-color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--clr-primary); color: rgba(255,255,255,.72); font-size: .8rem;
  padding: 8px 0; letter-spacing: -0.005em;
}
html[data-theme="dark"] .topbar { background: #040c08; border-bottom: 1px solid var(--border); }
.topbar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.72); transition: color .2s var(--ease); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; color: var(--brand); }
.topbar .tb-group { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--nav-bg); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--hairline);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 22px -18px rgba(11,26,19,.5); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; transition: height .3s var(--ease); }
.site-header.scrolled .nav { height: 62px; }
.brand img { height: 44px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .brand img { height: 38px; }
html[data-theme="dark"] .brand img { filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 32px; font-weight: 500; font-size: .93rem; letter-spacing: -0.008em; }
.nav-links > li { position: relative; }
.nav-links a { padding: 8px 2px; position: relative; color: var(--text-muted); transition: color .2s var(--ease); }
.nav-links a:hover, .nav-links > li > a.active { color: var(--text); }
.nav-links > li > a::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--brand); transition: width .28s var(--ease);
}
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 16px); inset-inline-start: 0; min-width: 270px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow); padding: 12px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .26s var(--ease);
}
.dropdown-menu::before { content: ""; position: absolute; top: -16px; inset-inline-start: 0; width: 100%; height: 16px; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-weight: 500; font-size: .875rem; color: var(--text-muted); border-inline-start: 2px solid transparent; }
.dropdown-menu a:hover { background: var(--bg-elev); color: var(--text); border-inline-start-color: var(--brand); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--text); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; font-size: .95rem;
  transition: all .25s var(--ease);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-soft); }
.lang-btn { width: auto; padding: 0 15px; font-weight: 700; font-size: .82rem; gap: 6px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 3px; transition: all .3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; height: min(90vh, 800px); min-height: 600px; overflow: hidden; background: #06110c; }
.hero-track { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s var(--ease); transform: scale(1.06); will-change: transform, opacity;
}
.slide.active { opacity: 1; transform: scale(1); transition: opacity 1.2s var(--ease), transform 8s linear; }
.slide::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.slide::after { content: ""; position: absolute; inset: 0; background: var(--hero-overlay-b); }
.hero-content {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
  justify-content: center; color: #fff; max-width: 720px;
}
html[dir="rtl"] .hero-content { text-align: right; }
.hero-content .eyebrow { color: #fff; margin-bottom: 20px; }
.hero-content .eyebrow::before { background: var(--brand); }
.hero-content h1 { font-size: clamp(2.3rem, 5.4vw, 4.1rem); margin-bottom: 20px; letter-spacing: -0.03em; font-weight: 800; color: #fff; }
.hero-content p { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: rgba(255,255,255,.88); margin-bottom: 34px; max-width: 560px; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 30px; inset-inline-start: 0; width: 100%; display: flex; justify-content: center; gap: 10px; z-index: 3; }
.hero-dots button {
  width: 32px; height: 3px; border-radius: 2px; border: 0; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.4); transition: background .3s, width .3s;
}
.hero-dots button.active { background: var(--brand); width: 46px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--clr-primary); color: rgba(255,255,255,.85); }
html[data-theme="dark"] .trust-strip { background: #04100a; border-block: 1px solid var(--border); }
.trust-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 40px; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; font-weight: 500; }
.trust-item svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; }
.trust-item strong { color: #fff; font-weight: 700; }

/* ---------- Stats strip ---------- */
.stats { background: var(--bg-alt); padding: 74px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; }
.stat { text-align: center; padding: 8px 16px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; inset-inline-start: 0; top: 12px; bottom: 12px; width: 1px; background: var(--border); }
.stat h3 { font-size: clamp(2.4rem, 4.6vw, 3.4rem); color: var(--clr-primary); font-weight: 800; letter-spacing: -0.035em; }
html[data-theme="dark"] .stat h3 { color: var(--text); }
.stat h3 span, .stat .accent { color: var(--brand-deep); }
.stat p { color: var(--text-muted); font-size: .9rem; margin-top: 6px; letter-spacing: -0.005em; }

@media (max-width: 700px) { .stat + .stat::before { display: none; } }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split-media::after { content: ""; position: absolute; inset-inline-start: -16px; top: -16px; width: 74px; height: 74px; border-top: 3px solid var(--brand); border-inline-start: 3px solid var(--brand); border-top-left-radius: 6px; z-index: -1; }
html[dir="rtl"] .split-media::after { inset-inline-start: auto; inset-inline-end: -16px; border-inline-start: 0; border-inline-end: 3px solid var(--brand); }
.split-media .badge-year {
  position: absolute; bottom: -20px; inset-inline-end: -16px;
  background: var(--clr-primary); color: #fff;
  border-radius: 10px; padding: 18px 24px; text-align: center; box-shadow: var(--shadow);
  border-top: 3px solid var(--brand);
}
html[data-theme="dark"] .badge-year { background: var(--bg-elev); }
.badge-year strong { display: block; font-size: 1.7rem; line-height: 1.1; letter-spacing: -0.03em; color: #fff; }
html[data-theme="dark"] .badge-year strong { color: var(--text); }
.badge-year span { font-size: .72rem; color: var(--brand); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.split-body h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 16px 0 20px; }
.split-body .eyebrow { margin-bottom: 4px; }
.split-body p { color: var(--text-muted); margin-bottom: 15px; font-size: 1.04rem; }
.checklist { margin: 22px 0 30px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 13px; align-items: start; font-weight: 500; color: var(--text); }
.checklist li::before {
  content: ""; width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; border-radius: 6px;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6d37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
html[data-theme="dark"] .checklist li::before { background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d489' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; }

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

.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  display: flex; flex-direction: column; position: relative;
}
.card::before { content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 0; height: 3px; background: var(--brand); transition: width .45s var(--ease); z-index: 2; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); }
.card:hover::before { width: 100%; }
.card-media { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card-media::after { content: ""; position: absolute; inset: 0; background: var(--media-tint); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 10px; letter-spacing: -0.018em; }
.card-body p { color: var(--text-muted); font-size: .95rem; flex: 1; line-height: 1.58; }
.card-link { margin-top: 20px; font-weight: 600; font-size: .88rem; color: var(--brand-deep); display: inline-flex; gap: 7px; align-items: center; }
.card-link .arrow { transition: transform .3s var(--ease); }
.card:hover .arrow { transform: translateX(5px); }
html[dir="rtl"] .card:hover .arrow { transform: translateX(-5px) scaleX(-1); }
html[dir="rtl"] .arrow { display: inline-block; transform: scaleX(-1); }

/* icon feature cards */
.feature {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); }
.feature .f-icon {
  width: 54px; height: 54px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand-deep);
  margin-bottom: 20px; border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
}
.feature .f-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 10px; letter-spacing: -0.018em; }
.feature p { color: var(--text-muted); font-size: .95rem; line-height: 1.58; }

/* ---------- Service detail blocks ---------- */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--border); }
.svc-block:last-of-type { border-bottom: 0; }
.svc-block.reverse .svc-media { order: 2; }
html[dir="rtl"] .svc-block.reverse .svc-media { order: 2; }
.svc-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16/11; object-fit: cover; width: 100%; }
.svc-body h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin: 12px 0 16px; }
.svc-body p { color: var(--text-muted); margin-bottom: 14px; font-size: 1.03rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.svc-tags span {
  background: var(--bg-elev); border: 1px solid var(--border); padding: 7px 15px;
  border-radius: 6px; font-size: .82rem; font-weight: 600; color: var(--text-muted);
}

/* ---------- Process / timeline ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px 26px 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); overflow: hidden; }
.step::after { content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--brand), transparent); transform: scaleX(0); transform-origin: inset-inline-start; transition: transform .45s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step:hover::after { transform: scaleX(1); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 24px; inset-inline-start: 26px;
  color: var(--brand-deep); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.06rem; margin: 24px 0 10px; letter-spacing: -0.018em; }
.step p { font-size: .93rem; color: var(--text-muted); line-height: 1.55; }

/* ---------- Industries ---------- */
.industry { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.industry img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.industry:hover img { transform: scale(1.06); }
.industry::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(7,20,14,.9)); }
.industry .ind-label {
  position: absolute; inset: auto 0 0 0; padding: 26px 22px 22px; color: #fff; font-weight: 700; z-index: 1;
  font-size: 1.04rem; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px;
}
.industry .ind-label::before { content: ""; width: 20px; height: 2px; background: var(--brand); }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: 0; color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 24px 6px; font-size: 1.08rem; font-weight: 600; text-align: start; font-family: inherit; letter-spacing: -0.015em;
}
.faq-q .chev { transition: transform .35s var(--ease); color: var(--brand-deep); flex-shrink: 0; display: inline-flex; }
.faq-q .chev svg { width: 20px; height: 20px; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 6px 24px; color: var(--text-muted); font-size: 1.01rem; line-height: 1.62; }

/* ---------- Locations ---------- */
.loc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); border-top: 3px solid var(--brand); }
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.loc-card h3 { font-size: 1.08rem; margin-bottom: 14px; letter-spacing: -0.018em; }
.loc-card p { font-size: .93rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.55; }
.loc-card a { color: var(--brand-deep); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--clr-primary); border-radius: var(--radius); color: #fff; padding: 74px 60px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap;
  border-top: 3px solid var(--brand);
}
html[data-theme="dark"] .cta-band { background: var(--bg-elev); }
.cta-band::after {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(18,178,87,.24), transparent 62%); top: -180px; inset-inline-end: -140px;
}
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 10px; color: #fff; }
.cta-band p { color: rgba(255,255,255,.74); font-size: 1.08rem; max-width: 520px; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .hero-cta { gap: 14px; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; }
.contact-info h3 { margin-bottom: 14px; font-size: 1.45rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; font-size: 1.03rem; }
.contact-line { display: flex; gap: 16px; align-items: start; margin-bottom: 22px; }
.contact-line .f-icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand-deep); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent); }
.contact-line .f-icon svg { width: 21px; height: 21px; }
.contact-line strong { display: block; font-size: .96rem; margin-bottom: 3px; color: var(--text); }
.contact-line span, .contact-line a { font-size: .9rem; color: var(--text-muted); }
.contact-line a:hover { color: var(--brand-deep); }

.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); border-top: 3px solid var(--brand); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field label { font-size: .84rem; font-weight: 600; display: block; margin-bottom: 8px; color: var(--text); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 15px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-family: inherit; font-size: .94rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent);
}
.form-note { font-size: .82rem; color: var(--text-muted); margin-top: 14px; }

/* ---------- Group companies marquee ---------- */
.marquee { overflow: hidden; position: relative; padding: 14px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 68px; align-items: center; width: max-content; animation: scroll 40s linear infinite; }
html[dir="rtl"] .marquee-track { animation-name: scroll-rtl; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 44px; width: auto; filter: grayscale(1); opacity: .5; transition: all .3s var(--ease); }
html[data-theme="dark"] .marquee-track img { filter: grayscale(1) brightness(0) invert(1); opacity: .45; }
.marquee-track img:hover { filter: grayscale(0); opacity: 1; }
html[data-theme="dark"] .marquee-track img:hover { filter: none; opacity: 1; }
@keyframes scroll { to { transform: translateX(-50%); } }
@keyframes scroll-rtl { to { transform: translateX(50%); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 82px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 46px; padding-bottom: 52px; }
.footer-grid > div:first-child p { font-size: .92rem; line-height: 1.7; max-width: 320px; }
.footer-grid img { height: 42px; width: auto; margin-bottom: 22px; opacity: .95; }
.footer-grid h4 { color: #fff; font-size: .78rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.footer-grid li { margin-bottom: 11px; font-size: .9rem; }
.footer-grid a { transition: color .2s var(--ease); }
.footer-grid a:hover { color: var(--brand); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,.16);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  transition: all .28s var(--ease);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--brand); border-color: var(--brand); color: #04140b; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; text-align: center; font-size: .82rem; color: var(--footer-text); }

/* ---------- Floating buttons ---------- */
.float-wa {
  position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 1200;
  background: #25d366; color: #fff; border-radius: 10px; padding: 13px 18px;
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .88rem;
  box-shadow: 0 14px 30px -12px rgba(37,211,102,.6);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -12px rgba(37,211,102,.7); }
.to-top {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 1200;
  width: 46px; height: 46px; border-radius: 8px; border: 0; cursor: pointer;
  background: var(--clr-primary); color: #fff; font-size: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s var(--ease); box-shadow: var(--shadow);
}
html[data-theme="dark"] .to-top { background: var(--brand); color: #04140b; }
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-3px); background: var(--brand-deep); color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: 158px 0 118px; color: #fff; text-align: center;
  background-size: cover; background-position: center; background-color: #06110c; overflow: hidden;
}
.page-hero .page-hero-bg { position: absolute; inset: -8% 0; background-size: cover; background-position: center; will-change: transform; z-index: 0; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 16px; letter-spacing: -0.03em; color: #fff; }
.page-hero p { color: rgba(255,255,255,.86); max-width: 660px; margin-inline: auto; font-size: 1.12rem; }
.breadcrumb { margin-top: 24px; font-size: .84rem; color: rgba(255,255,255,.62); }
.breadcrumb a { color: #fff; font-weight: 600; }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
/* auto-stagger children */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: .07s; }
.stagger.visible > *:nth-child(3) { transition-delay: .14s; }
.stagger.visible > *:nth-child(4) { transition-delay: .21s; }
.stagger.visible > *:nth-child(5) { transition-delay: .28s; }
.stagger.visible > *:nth-child(6) { transition-delay: .35s; }

/* ---------- Values ---------- */
.value-pill { display: flex; align-items: center; gap: 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 22px; font-weight: 600; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.value-pill:hover { border-color: var(--brand); transform: translateY(-3px); }
.value-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; align-items: center; }
.cert-badges span {
  background: var(--brand-soft); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent); color: var(--brand-deep);
  font-weight: 600; font-size: .8rem; padding: 8px 16px; border-radius: 6px;
}

/* ---------- News ---------- */
.news-meta { font-size: .84rem; color: var(--text-muted); margin-top: 14px; }
.news-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.chip {
  border: 1px solid var(--border); background: transparent; color: var(--text-muted);
  padding: 9px 20px; border-radius: 7px; font-weight: 600; font-size: .85rem;
  cursor: pointer; font-family: inherit; transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--brand-deep); }
.chip.active { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
html[data-theme="dark"] .chip.active { background: var(--brand); color: #04140b; border-color: var(--brand); }
.news-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  opacity: 0; transform: translateY(18px); animation: fadeUp .6s var(--ease) both; border-top: 3px solid transparent;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-top-color: var(--brand); }
.news-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: .74rem; }
.news-cat { font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-deep); font-size: .68rem; }
html[dir="rtl"] .news-cat { letter-spacing: 0; }
.news-date { color: var(--text-muted); }
.news-card h3 { font-size: 1.12rem; line-height: 1.42; flex: 1; font-weight: 700; letter-spacing: -0.015em; }
.news-card h3 a:hover { color: var(--brand-deep); }
.news-src { font-size: .82rem; color: var(--text-muted); font-weight: 600; padding-top: 4px; border-top: 1px solid var(--border); }
.news-empty { text-align: center; color: var(--text-muted); grid-column: 1 / -1; padding: 48px 0; }

/* ---------- Micro-animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim-up { animation: fadeUp .9s var(--ease) both; }
.anim-up.d1 { animation-delay: .12s; }
.anim-up.d2 { animation-delay: .24s; }
.anim-up.d3 { animation-delay: .36s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.float-anim { animation: floaty 6s ease-in-out infinite; }

/* Mega dropdown (17 services) */
.dropdown-menu.mega { grid-template-columns: 1fr 1fr; min-width: 560px; }
.dropdown-menu.mega .dd-all { grid-column: 1 / -1; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--border); border-radius: 0; margin-bottom: 6px; padding-bottom: 12px; border-inline-start: 0; }
@media (max-width: 860px) { .dropdown-menu.mega { min-width: 0; grid-template-columns: 1fr; } }

@media (max-width: 1080px) { .btn-nav { display: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .section { padding: 84px 0; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .svc-block, .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
  .svc-block.reverse .svc-media { order: 0; }
  .split-media .badge-year { inset-inline-end: 12px; }
  .nav-links {
    position: fixed; top: 76px; inset-inline: 0; background: var(--bg);
    flex-direction: column; align-items: stretch; gap: 0; padding: 14px 6%;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .38s var(--ease); z-index: 999;
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li { border-bottom: 1px solid var(--border); }
  .nav-links > li > a { display: block; padding: 16px 4px; font-size: 1.02rem; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 12px 14px; display: none; min-width: 0;
  }
  .dropdown.open .dropdown-menu { display: grid; }
  .hamburger { display: flex; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .process-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .topbar .tb-group.tb-hours { display: none; }
  .cta-band { padding: 44px 28px; }
  .float-wa span { display: none; }
  .float-wa { padding: 13px 14px; }
  .hero { min-height: 540px; }
  .trust-grid { justify-content: flex-start; }
}

/* ==========================================================================
   News page — live ops dashboard, ticker, snapshot, featured, search, share
   ========================================================================== */

/* Live dot */
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #9fb1a8; vertical-align: middle; }
.live-dot.on { background: var(--brand); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(18,178,87,.55); }
  70% { box-shadow: 0 0 0 8px rgba(18,178,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,178,87,0); }
}

/* Ops dashboard */
.dash-strip { padding: 52px 0 6px; }
.dash-head { text-align: center; max-width: 720px; margin: 0 auto 22px; }
.dash-head .eyebrow { justify-content: center; margin-bottom: 10px; }
.dash-head p { color: var(--text-muted); font-size: 1rem; }
.dash-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  background: var(--clr-primary); border-radius: 14px; padding: 18px; border-top: 3px solid var(--brand);
}
html[data-theme="dark"] .dash-grid { background: #0a1712; border: 1px solid var(--border); border-top: 3px solid var(--brand); }
.dash-hub { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 10px; padding: 14px 16px; color: #fff; }
.hub-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 10px; }
.hub-name { font-weight: 700; font-size: .9rem; color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.hub-name svg { width: 16px; height: 16px; color: var(--brand); }
.hub-clock { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--brand); font-size: 1rem; }
.hub-wx { display: flex; align-items: baseline; gap: 8px; }
.wx-temp { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.wx-cond { color: rgba(255,255,255,.68); font-size: .82rem; }
.hub-wind { color: rgba(255,255,255,.5); font-size: .74rem; margin-top: 5px; }
.dash-marine { background: rgba(18,178,87,.12); border-color: rgba(18,178,87,.32); }
.dm-row { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.72); padding: 5px 0; }
.dm-row + .dm-row { border-top: 1px solid rgba(255,255,255,.08); }
.dm-row strong { color: #fff; font-variant-numeric: tabular-nums; font-size: .96rem; }
@media (max-width: 980px) { .dash-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .dash-grid { grid-template-columns: repeat(2, 1fr); } }

/* Breaking ticker */
.news-ticker { background: var(--clr-primary); color: #fff; overflow: hidden; }
html[data-theme="dark"] .news-ticker { background: #04100a; border-block: 1px solid var(--border); }
.ticker-inner { display: flex; align-items: center; gap: 18px; height: 48px; }
.tk-label { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--brand); }
html[dir="rtl"] .tk-label { letter-spacing: 0; }
.tk-viewport { overflow: hidden; position: relative; flex: 1; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.ticker-track { display: flex; gap: 44px; width: max-content; animation: ticker 65s linear infinite; }
.news-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track a { color: rgba(255,255,255,.82); font-size: .86rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 9px; }
.ticker-track a:hover { color: #fff; }
.tk-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }
html[dir="rtl"] .ticker-track { animation-name: ticker-rtl; }
@keyframes ticker-rtl { to { transform: translateX(50%); } }

/* GCC snapshot (AEO block) */
.news-snapshot { background: var(--bg-alt); border: 1px solid var(--border); border-top: 3px solid var(--brand); border-radius: 12px; padding: 26px 30px; margin-bottom: 36px; }
.news-snapshot h2 { font-size: 1.16rem; margin-bottom: 10px; }
.snap-summary { color: var(--text); font-size: 1.02rem; line-height: 1.62; margin-bottom: 16px; }
.snap-highlights { display: grid; gap: 0; }
.snap-highlights li { display: flex; justify-content: space-between; gap: 14px; font-size: .92rem; border-top: 1px solid var(--border); padding: 10px 0; }
.snap-highlights li a { font-weight: 600; color: var(--text); }
.snap-highlights li a:hover { color: var(--brand-deep); }
.snap-highlights li span { color: var(--text-muted); flex-shrink: 0; font-size: .82rem; }

/* Refresh button */
.news-refresh {
  display: inline-flex; align-items: center; gap: 7px; vertical-align: middle;
  margin-inline-start: 8px; padding: 6px 14px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg-card); color: var(--text);
  font-family: inherit; font-size: .8rem; font-weight: 600; cursor: pointer;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.news-refresh:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-soft); }
.news-refresh .rf-ic { display: inline-flex; }
.news-refresh .rf-ic svg { width: 15px; height: 15px; }
.news-refresh.busy { pointer-events: none; opacity: .8; color: var(--brand-deep); border-color: var(--brand); }
.news-refresh.busy .rf-ic svg { animation: spin .8s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Controls: search + filters */
.news-controls { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.news-search-wrap { position: relative; display: flex; align-items: center; flex: 1; min-width: 240px; max-width: 360px; }
.news-search-wrap svg { position: absolute; inset-inline-start: 14px; width: 18px; height: 18px; color: var(--text-muted); pointer-events: none; }
#news-search { width: 100%; padding: 12px 16px 12px 44px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-family: inherit; font-size: .92rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
html[dir="rtl"] .news-search-wrap svg { inset-inline-start: auto; inset-inline-end: 14px; }
html[dir="rtl"] #news-search { padding: 12px 44px 12px 16px; }
#news-search:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent); }
.news-controls .news-filters { margin-bottom: 0; justify-content: flex-end; flex: 2; }

/* Featured lead */
#news-featured:empty { display: none; }
.news-lead { background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid var(--brand); border-radius: 12px; padding: 32px 34px; margin-bottom: 30px; box-shadow: var(--shadow-sm); transition: box-shadow .4s var(--ease); }
.news-lead:hover { box-shadow: var(--shadow); }
.news-lead .news-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.lead-flag { font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .66rem; color: #fff; background: var(--brand-deep); padding: 4px 10px; border-radius: 5px; }
html[dir="rtl"] .lead-flag { letter-spacing: 0; }
.news-lead h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.26; margin-bottom: 16px; letter-spacing: -.02em; }
.news-lead h3 a:hover { color: var(--brand-deep); }

/* Card foot, share, gcc pill */
.news-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto; }
.news-src { font-size: .82rem; color: var(--text-muted); font-weight: 600; border: 0; padding: 0; }
.news-share { display: flex; gap: 6px; }
.news-share a { width: 30px; height: 30px; border-radius: 7px; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .25s var(--ease); }
.news-share a svg { width: 15px; height: 15px; }
.news-share a:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-soft); transform: translateY(-1px); }
.news-gcc { display: inline-block; margin-inline-start: 8px; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand-deep); background: var(--brand-soft); border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent); padding: 2px 7px; border-radius: 4px; vertical-align: middle; }
html[dir="rtl"] .news-gcc { letter-spacing: 0; }

@media (max-width: 640px) {
  .news-controls { flex-direction: column; align-items: stretch; }
  .news-search-wrap { max-width: none; }
  .news-controls .news-filters { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .anim-up, .news-card, .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
  .page-hero .page-hero-bg { transform: none !important; }
}
