/* Arabinfotec Web & Mobile Landing – Fresh v13 */
:root{
  --bg:#f6f9ff;
  --ink:#0f172a;
  --muted:#64748b;
  --border:rgba(15,23,42,.10);
  --card:rgba(255,255,255,.92);
  --shadow:0 22px 60px rgba(15,23,42,.12);
  --shadow2:0 14px 40px rgba(15,23,42,.08);
  --p1:#6b5bff;
  --p2:#2aa7ff;
  --p3:#ff5470;
  --soft:#eef2ff;
  --soft2:#e0f2fe;
  --radius:22px;
}
*{box-sizing:border-box}
html,body{overflow-x:hidden;position:relative;height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg, #f2f7ff 0%, #f7fbff 40%, #f6f9ff 100%);
}
a{color:inherit}
.wrap{max-width:1180px;margin:0 auto;padding:0 22px}
.block{display:block}
.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(246,249,255,.72);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
/*
.brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.brand__mark{
  width:38px;height:38px;border-radius:12px;
  background:linear-gradient(135deg,var(--p2),var(--p1));
  box-shadow:0 18px 40px rgba(43,130,255,.22);
}
.brand__text{display:flex;flex-direction:column;line-height:1.15}
.brand__name{font-weight:800}
.brand__sub{font-size:12px;color:var(--muted)}
*/
.brand {
display: flex;
  align-items: center;
  text-decoration: none;
}
/* container */
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  margin-left: 25px;
}
/* main logo text */
.brand__name {
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;
}
/* exact logo colors */
.brand__arab {
 color: #b24f7a;   /* logo pink */
}
.brand__infotec {
   color: #6a55a3;   /* logo purple */
}
/* subtitle #6a55a3*/
.brand__sub {
  font-size: 11px;
  color: #000000;
  opacity: 1;
  margin-top: 6px;
}
/* subtle premium hover */
.brand:hover .brand__name {
  opacity: 0.95;
}
.brand__logo {
  width: 170px;
  height: 36px;
  background: url("https://arabinfotec.com/img/arabinfotec_logo.svg")
    left center / contain no-repeat;
  display: none;
}
.brand__logo::after {
  content: "Arabinfotec";
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.brand--image .brand__name { display: none; }
.brand--image .brand__logo { display: block; }
/* responsive */
@media (max-width: 768px) {
  .brand__name {
    font-size: 20px;
  }
  .brand__logo {
    width: 160px;
    height: 34px;
  }
  .brand__sub {
    font-size: 11px;
  }
}
.nav{display:flex;gap:18px;align-items:center}
.nav a{font-size:14px;color:#334155;text-decoration:none;padding:10px 10px;border-radius:999px}
.nav a:hover{background:rgba(107,91,255,.08)}
.pill{border:1px solid rgba(107,91,255,.24);background:rgba(255,255,255,.65)}
.topbar__cta{display:flex;gap:10px;align-items:center}
.btn{
  border:0;
  padding:11px 16px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;align-items:center;justify-content:center;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--p1),#5b9dff);
  box-shadow:0 16px 40px rgba(107,91,255,.25);
}
.btn-primary:hover{box-shadow:0 20px 52px rgba(107,91,255,.30)}
.btn-ghost{
  background:rgba(255,255,255,.75);
  border:1px solid rgba(15,23,42,.10);
  color:#0f172a;
}
.btn-soft{
  background:linear-gradient(135deg, rgba(107,91,255,.12), rgba(42,167,255,.12));
  border:1px solid rgba(107,91,255,.18);
}
.btn-outline{
  background:rgba(255,255,255,.75);
  border:1px solid rgba(42,167,255,.28);
}
/* ==============================
   CLASSIC HAMBURGER ICON
================================ */
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  margin: 5px 0;
  border-radius: 2px;
  opacity: 0.85;
}
/* Show hamburger on mobile */
@media (max-width: 820px) {
  .nav__toggle {
    display: block !important;
  }
}
.hero{
  padding:34px 0 18px;
  background:
    radial-gradient(1000px 520px at 20% 0%, rgba(42,167,255,.22), transparent 60%),
    radial-gradient(900px 520px at 80% 0%, rgba(107,91,255,.18), transparent 55%),
    radial-gradient(700px 500px at 60% 80%, rgba(255,84,112,.14), transparent 60%);
}
.hero__grid{display:grid;grid-template-columns:1.15fr .85fr;gap:22px;align-items:stretch}
.panel{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
  padding:22px;
  position:relative;
  overflow:hidden;
}
.panel--hero{padding:26px 26px 22px}
.panel--visual{padding:20px}
.panel::before{
  content:"";
  position:absolute;inset:-2px;
  background:
    radial-gradient(420px 220px at 15% 15%, rgba(42,167,255,.16), transparent 60%),
    radial-gradient(420px 220px at 90% 20%, rgba(107,91,255,.14), transparent 58%);
  pointer-events:none;
}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;
  font-weight:700;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.72);
}
.chip--warn{background:rgba(255,84,112,.12);border-color:rgba(255,84,112,.26);color:#7f1d1d}
.chip--ok{background:rgba(34,197,94,.10);border-color:rgba(34,197,94,.22);color:#14532d}
.chip--info{background:rgba(42,167,255,.10);border-color:rgba(42,167,255,.22);color:#0b3a63}
.dot{width:8px;height:8px;border-radius:999px;display:inline-block}
.dot--red{background:var(--p3)}
.hero__title{
  font-size:48px;
  line-height:1.02;
  margin:14px 0 12px;
  letter-spacing:-0.02em;
}
.hero__title span{
  color:transparent;
  background:linear-gradient(90deg,var(--p1),var(--p2));
  -webkit-background-clip:text;
  background-clip:text;
}
.hero__lead{color:#334155;font-size:15px;line-height:1.6;margin:0 0 16px}
.hero__actions{display:flex;gap:10px;flex-wrap:wrap;margin:16px 0 18px}
.stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-top:10px;
}
.stat{
  background:rgba(255,255,255,.75);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:12px 12px;
  text-align:left;
}
.stat__num{font-weight:800;font-size:18px}
.stat__lbl{font-size:12px;color:var(--muted);margin-top:4px}
.promise{
  display:flex;align-items:center;gap:10px;
  margin-top:14px;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.72);
  border:1px dashed rgba(107,91,255,.28);
}
.promise__text{color:#334155;font-weight:600;font-size:13px}
.visual__head{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.visual__title{margin:0;font-size:16px}
.visual__sub{margin:4px 0 0;color:var(--muted);font-size:12px}
.chips{display:flex;flex-wrap:wrap;gap:8px;margin:14px 0 12px}
.chipbtn{
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.80);
  padding:8px 12px;border-radius:999px;
  font-weight:700;font-size:12px;
  cursor:pointer;
}
.chipbtn.is-active{
  border-color:rgba(107,91,255,.35);
  box-shadow:0 12px 30px rgba(107,91,255,.16);
  background:linear-gradient(135deg, rgba(107,91,255,.14), rgba(42,167,255,.12));
}
.diagram{
  margin:10px 0 12px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.55));
  border:1px solid rgba(15,23,42,.10);
  padding:14px;
}
.wave{opacity:.95}
.nodes{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:8px;
  margin-top:-18px;
}
.node{
  text-align:center;
  padding:9px 6px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  background:rgba(42,167,255,.10);
  border:1px solid rgba(42,167,255,.22);
}
.node--pain{background:rgba(255,84,112,.12);border-color:rgba(255,84,112,.26)}
.node--control{background:rgba(107,91,255,.12);border-color:rgba(107,91,255,.26)}
.visual__body{
  display:flex;justify-content:space-between;align-items:flex-end;gap:12px;
}
.visual__copy h3{margin:0 0 6px}
.visual__copy p{margin:0 0 10px;color:#334155;font-size:13px;line-height:1.5}
.bullets{display:flex;flex-wrap:wrap;gap:6px}
.bullets span{
  font-size:12px;font-weight:700;color:#334155;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  border-radius:999px;
  padding:6px 10px;
}
.trustbar{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:10px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:12px 14px;
}
.trustitem{
  display:flex;gap:10px;align-items:center;
  justify-content:center;
  font-weight:700;font-size:12px;color:#334155;
  text-align:center;
}
.ico{opacity:.9}
.section{padding:70px 0;scroll-margin-top:92px}
.section--tint{
  background:
    radial-gradient(1000px 500px at 15% 0%, rgba(42,167,255,.14), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(107,91,255,.12), transparent 55%);
}
.section__head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:18px}
.section__head h2{margin:0;font-size:28px;letter-spacing:-0.01em}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:stretch}
.card{
  background:rgba(255,255,255,.80);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 40px rgba(15,23,42,.06);
}
.card__icon{font-size:22px}
.card h3{margin:10px 0 8px}
.card p{margin:0;color:#334155;line-height:1.6;font-size:13px}
.accordion{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  overflow:hidden;
  height:100%;
  display:flex;
  flex-direction:column;
}
.metrics{
  height:100%;
  display:flex;
  flex-direction:column;
}
.acc{
  width:100%;
  text-align:left;
  padding:14px 16px;
  display:flex;justify-content:space-between;align-items:center;
  border:0;
  background:transparent;
  font-weight:800;
  cursor:pointer;
  border-top:1px solid rgba(15,23,42,.10);
}
.acc:first-child{border-top:0}
.acc .plus{font-weight:900;opacity:.65}
.acc.is-open .plus{transform:rotate(45deg)}
.acc__panel{
  padding:0 16px 14px;
  color:#334155;
  font-size:13px;
  line-height:1.6;
  display:none;
}
.acc.is-open + .acc__panel{display:block}
.metrics{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:16px;
}
.metrics__head{display:flex;justify-content:space-between;align-items:center;gap:10px}
.metrics__head h3{margin:0}
.muted{color:var(--muted)}
.small{font-size:12px}
.metricgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:12px 0}
.metric{
  background:rgba(255,255,255,.75);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:14px 12px;
}
.metric__num{font-size:22px;font-weight:900}
.metric__lbl{font-size:12px;color:var(--muted);margin-top:4px}
.ctaBox{
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  padding:12px 12px;border-radius:16px;
  border:1px solid rgba(107,91,255,.20);
  background:linear-gradient(135deg, rgba(107,91,255,.10), rgba(42,167,255,.08));
}
.ctaBox__actions{display:flex;gap:10px;flex-wrap:wrap}
.filter{display:flex;gap:8px;flex-wrap:wrap;margin:14px 0 14px}
.fbtn{
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.76);
  padding:8px 12px;border-radius:999px;
  font-weight:800;font-size:12px;cursor:pointer;
}
.fbtn.is-active{
  background:linear-gradient(135deg, rgba(107,91,255,.14), rgba(42,167,255,.12));
  border-color:rgba(107,91,255,.34);
}
.workgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.workcard{
  border:0;background:transparent;
  text-align:left;cursor:pointer;
  border-radius:18px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.workcard:focus{outline:2px solid rgba(107,91,255,.35);outline-offset:2px}
.tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}
.tags span{
  font-size:11px;font-weight:800;
  padding:6px 9px;border-radius:999px;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(15,23,42,.10);
  color:#334155;
}
.workitem {
  position: relative;
  height: 100%;
  border-radius: 18px;
  background:
    radial-gradient(280px 100px at 20% 20%, rgba(42,167,255,.20), transparent 60%),
    radial-gradient(260px 90px at 80% 30%, rgba(107,91,255,.18), transparent 55%),
    radial-gradient(240px 90px at 50% 80%, rgba(255,84,112,.12), transparent 60%),
    rgba(255,255,255,.76);
  border: 1px solid rgba(15,23,42,.10);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 40px rgba(15,23,42,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.workitem__head {
  margin-bottom: auto;
}
.workitem__title {
  font-weight: 950;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.workitem__sub {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #334155;
}
.workitem__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workitem__desc {
  font-size: 12px;
  line-height: 1.55;
  color: #334155;
}
.workcard:hover .workitem {
  box-shadow: 0 22px 60px rgba(20,30,60,.14);
  transform: translateY(-2px);
}
.workcard:focus-visible .workitem {
  outline: 2px solid rgba(107,91,255,.45);
  outline-offset: 3px;
}
.workitem::after {
  content: "Preview";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.14);
  color: #0f172a;
  opacity: 0;
  transform: translateY(-6px) scale(0.96);
  pointer-events: none;
  transition:
    opacity .18s ease,
    transform .18s ease;
}
.workcard:hover .workitem::after,
.workcard:focus-visible .workitem::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.positioning{
  margin-top:14px;
  background:rgba(34,197,94,.08);
  border:1px solid rgba(34,197,94,.20);
  border-radius:18px;
  padding:12px 12px;
  font-weight:700;
  color:#14532d;
  display:flex;gap:10px;align-items:center;
  font-size: small;
}
.timeline{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:16px;
}
.timeline__top{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.timeline__label{font-weight:900}
.range{width:100%;margin:12px 0}
.timeline__body{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:14px 14px;
}
.form{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:16px;
  box-shadow:0 14px 40px rgba(15,23,42,.05);
}
label{display:block;font-weight:800;margin:10px 0 6px;font-size:12px;color:#334155}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.92);
  font-family:inherit;
  outline:none;
}
textarea{resize:vertical}
.form__row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.form__actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:12px}
.side{
  background:rgba(255,255,255,.70);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:16px;
}
.side h3{margin:0 0 10px}
.side__list{margin:0;padding-left:18px;color:#334155}
.offer{
  margin-top:14px;
  background:rgba(255,84,112,.06);
  border:1px solid rgba(255,84,112,.18);
  border-radius:16px;
  padding:12px;
}
.offer__head{font-weight:900;margin-bottom:6px}
.offer__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.footer{
  background:linear-gradient(180deg, rgba(15,23,42,.94), rgba(15,23,42,.98));
  color:#e2e8f0;
  padding:30px 0 18px;
}
.footer__grid{display:grid;grid-template-columns:1.2fr repeat(4,1fr);gap:14px;align-items:stretch}
.footbrand{display:flex;flex-direction:column;gap:12px}
.brandmini{display:flex;align-items:center;gap:10px}
.social{display:flex;gap:10px}
.social a{
  width:34px;height:34px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  text-decoration:none;
  font-weight:900;
}
.office{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:12px;
  display:flex;gap:10px;align-items:flex-start;
}
.office__tag{
  width:32px;height:32px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(107,91,255,.18);
  font-weight:900;
}
.office__num{margin-top:8px;font-weight:900;color:#fff}
.footer__bottom{
  margin-top:14px;
  display:flex;justify-content:space-between;gap:10px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.12);
}
.footlink{color:#cbd5e1;text-decoration:none}
.footlink:hover{text-decoration:underline}
/* Floating buttons */
.float{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:60;
}
.fab{
  display:flex;align-items:center;justify-content:center;
  padding:14px 14px;
  min-width:62px;
  border-radius:18px;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 18px 45px rgba(15,23,42,.22);
  border:1px solid rgba(255,255,255,.16);
}
.fab--wa{background:#22c55e;color:#082f17}
.fab--call{background:linear-gradient(135deg,var(--p1),#5b9dff);color:#fff}
/* Modal */
.modal{position:fixed;inset:0;z-index:70;display:none}
.modal.is-open{display:block}
.modal__backdrop{position:absolute;inset:0;background:rgba(2,6,23,.55)}
.modal__card{
  position:relative;
  max-width:760px;
  margin:7vh auto;
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(15,23,42,.12);
  box-shadow:0 30px 80px rgba(2,6,23,.45);
  overflow:hidden;
}
.modal__card--gallery{max-width:980px}
.modal__head{
  display:flex;justify-content:space-between;gap:12px;align-items:flex-start;
  padding:16px 16px;
  background:linear-gradient(135deg, rgba(107,91,255,.08), rgba(42,167,255,.08));
  border-bottom:1px solid rgba(15,23,42,.10);
}
.modal__body{padding:16px}
.modal__foot{padding:16px;border-top:1px solid rgba(15,23,42,.10);display:flex;justify-content:flex-end;gap:10px;flex-wrap:wrap}
.iconbtn{border:0;background:rgba(255,255,255,.8);border:1px solid rgba(15,23,42,.12);width:38px;height:38px;border-radius:14px;cursor:pointer;font-weight:900}
.q{margin-bottom:12px}
.recommend{margin-top:10px;background:rgba(34,197,94,.10);border:1px solid rgba(34,197,94,.20);border-radius:16px;padding:12px;display:none}
.recommend__list{display:flex;gap:8px;flex-wrap:wrap;margin-top:8px}
.recommend__list span{padding:7px 10px;border-radius:999px;background:#fff;border:1px solid rgba(15,23,42,.10);font-weight:800;font-size:12px}
.gallery{display:grid;grid-template-columns:1fr 260px;gap:12px}
.shot{
  height:420px;border-radius:18px;
  background:linear-gradient(135deg, rgba(42,167,255,.16), rgba(107,91,255,.14), rgba(255,84,112,.10));
  border:1px solid rgba(15,23,42,.10);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;color:#0f172a;
}
.thumbs{display:grid;grid-template-columns:1fr;gap:10px}
.thumb{
  height:82px;border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(248,250,252,.9);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;
  cursor:pointer;
}
.thumb.is-active{outline:2px solid rgba(107,91,255,.35);outline-offset:2px}
/* Reveal animations */
.reveal{opacity:0;transform:translateY(10px);transition:opacity .6s ease, transform .6s ease}
.reveal.is-in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{transition:none}
  .btn{transition:none}
}
/* Responsive */
@media (max-width: 1060px){
  .hero__grid{grid-template-columns:1fr;gap:14px}
  .workgrid{grid-template-columns:repeat(2,1fr)}
  .trustbar{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 820px){
  .nav{display:none}
  .nav__toggle{display:block}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .form__row{grid-template-columns:1fr}
  .workgrid{grid-template-columns:1fr}
  .hero__title{font-size:36px}
  .stats{grid-template-columns:repeat(2,1fr)}
  .gallery{grid-template-columns:1fr}
  .shot{height:320px}
}
/* Ensure [hidden] always hides mobile nav (overrides display styles) */
.nav__mobile[hidden]{display:none !important;}
/* Hero alignment + liveliness */
.hero__grid{align-items:stretch;}
.panel--hero,.panel--visual{display:flex;flex-direction:column;min-height:520px;}
.panel--visual .visual__body{flex:1;display:flex;flex-direction:column;}
.panel--visual .visual__footer{margin-top:auto;}
/* Animated background blobs (subtle) */
.bg-blob{position:absolute;inset:auto;filter:blur(32px);opacity:.22;pointer-events:none;mix-blend-mode:multiply;}
.bg-blob.b1{width:340px;height:340px;left:-120px;top:120px;background:radial-gradient(circle at 30% 30%, #2aa7ff, transparent 60%);animation:blobFloat 12s ease-in-out infinite;}
.bg-blob.b2{width:420px;height:420px;right:-160px;top:40px;background:radial-gradient(circle at 30% 30%, #6b5bff, transparent 60%);animation:blobFloat 14s ease-in-out infinite reverse;}
.bg-blob.b3{width:360px;height:360px;right:10%;bottom:-180px;background:radial-gradient(circle at 30% 30%, #ff5470, transparent 60%);animation:blobFloat 16s ease-in-out infinite;}
@keyframes blobFloat{0%,100%{transform:translate3d(0,0,0) scale(1);}50%{transform:translate3d(0,-20px,0) scale(1.05);}}
/* Wave animation */
.wave path{stroke-dasharray:1200;stroke-dashoffset:1200;animation:dash 2.4s ease forwards;}
@keyframes dash{to{stroke-dashoffset:0;}}
.wave .pulse{transform-origin:center;animation:pulse 2.2s ease-in-out infinite;}
@keyframes pulse{0%,100%{transform:scale(1);opacity:.9;}50%{transform:scale(1.12);opacity:1;}}
/* Subtle interactive tilt */
.tilt{transform:translateZ(0);transition:transform .18s ease, box-shadow .18s ease;}
@media (hover:hover) and (min-width: 980px){
  .tilt:hover{box-shadow:0 28px 70px rgba(20,30,60,.12);}
}
@supports not (backdrop-filter: blur(10px)) {
  .topbar {
    background: rgba(246,249,255,.92);
  }
}
.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 0px !important;
  right: auto !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}
.field-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.15) !important;
}
.required {
  color: #dc2626;
  font-weight: 700;
}
.form__error {
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #dc2626;
  border-radius: 6px;
  display: none;
}
.form__error.is-visible {
  display: block;
}
.form__error.is-visible {
  animation: slideFade 0.25s ease-out;
}
@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn.is-loading {
  pointer-events: none;
  opacity: 0.85;
}
.btn.is-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@media (max-width: 360px) {
  .topbar__inner {
    gap: 10px;
  }
  .brand__sub {
    display: none;
  }
}
.topbar__inner {
  min-width: 0;
}
.brand {
  flex: 1 1 auto;
  min-width: 0;
}
.topbar__cta {
  flex-shrink: 0;
}
.nav__toggle {
  position: relative;
  z-index: 60;
}
.nav__toggle { display: none }
/* ===== MOBILE HEADER GUARANTEE =====  display: inline-flex !important;*/
@media (max-width: 820px) {
  .nav {
    display: none !important;
  }
  .nav__toggle {
    align-items: center;
    justify-content: center;
  }
}
/* ==============================
   MOBILE NAV – FINAL FIX
================================ */
@media (max-width: 820px) {
  .nav__mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(246, 249, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15,23,42,.12);
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
    padding: 16px 22px 20px;
    display: grid;
    gap: 10px;
    z-index: 55;
  }
  .nav__mobile a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: #0f172a;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(15,23,42,.12);
  }
  .nav__mobile a:hover {
    background: rgba(107,91,255,.10);
  }
  .nav__mobile .btn {
    justify-content: center;
    padding: 14px 16px;
  }
  /* HARD guarantee hidden works */
  .nav__mobile[hidden] {
    display: none !important;
  }
}
/* Hide WhatsApp CTA on mobile & tablet */
@media (max-width: 1024px) {
  .topbar__cta .btn-ghost {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .topbar__cta a[href*="wa.me"] {
    display: none !important;
  }
}
/* Mobile: add breathing space to brand logo */
@media (max-width: 820px) {
  .brand {
    padding-left: 6px;
  }
}
/* Mobile: add breathing space to brand logo */
@media (max-width: 820px) {
  .brand {
    padding-left: 6px;
  }
}
.brand__region {
  display: inline;
  color: #000000;
}
/* Mobile: force UAE & GCC to next line */
@media (max-width: 820px) {
  .brand__region {
    display: block;
    font-weight: 700;
    margin-top: 2px;
  }
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* dashboard-safe */
  border-radius: 16px;
}
.workitem::after { display: none !important; }
/* ===== Sidebar Contact Card (exact match) ===== */
.contactCard{
  margin-top: 20px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}
.contactCard h4{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}
/* 2x2 grid */
.contactGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
}
.contactItem{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contactItem .label{
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}
.contactItem a{
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.contactItem a:hover{
  text-decoration: underline;
}
/* Mobile */
@media (max-width: 640px){
  .contactGrid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.js-whatsapp{
  color: white !important;
}


/* ==============================
   Arabinfotec Footer Grid (NEW)
================================ */
.af-footerGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  align-items: stretch;
}

/* Prevent overflow inside cards */
.af-footerGrid > * {
  min-width: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .af-footerGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .af-footerGrid {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   Contact Card – Enhanced UI
================================ */
.af-contactCard {
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

/* Title */
.af-contactTitle {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

/* Grid */
.af-contactGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Item */
.af-contactItem {
  text-align: center;
  padding: 16px 12px;
  border-radius: 14px;
  background: rgba(248,250,252,.9);
  border: 1px solid rgba(15,23,42,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.af-contactItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15,23,42,.10);
}

/* Icon */
.af-contactIcon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(107,91,255,.16), rgba(42,167,255,.16));
}

/* Label */
.af-contactLabel {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 4px;
}

/* Links */
.af-contactItem a {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.af-contactItem a:hover {
  text-decoration: underline;
}

/* ==============================
   Social Icons
================================ */
.af-socialWrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.af-socialWrap a {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  color: #0f172a;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.10);
  transition: background .15s ease, transform .15s ease;
}

.af-socialWrap a:hover {
  background: rgba(107,91,255,.16);
  transform: translateY(-1px);
}

/* ==============================
   Mobile
================================ */
@media (max-width: 640px) {
  .af-contactGrid {
    grid-template-columns: 1fr;
  }
}

.topWhatsApp-color{
color: #000000 !important;
}

/* =========================================
   Social Icons – Horizontally Centered
   ========================================= */

.footer-social{
  display: flex;
  justify-content: center;   /* ⬅ horizontal centering */
  align-items: center;

  width: 100%;
  margin: 24px auto 0;       /* space from top + center block */
  padding: 16px 0 8px;
}

/* Individual social icon */
.footer-social .social-icon{
  width: 40px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0 6px;

  border-radius: 14px;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.08);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease;
}

/* SVG icon */
.footer-social .social-icon svg{
  width: 18px;
  height: 18px;
  fill: #334155;
}

/* Hover (desktop) */
@media (hover:hover){
  .footer-social .social-icon:hover{
    transform: translateY(-2px);
    background: rgba(15,23,42,.08);
    border-color: rgba(15,23,42,.18);
    box-shadow: 0 6px 16px rgba(15,23,42,.12);
  }
}

/* Keyboard focus */
.footer-social .social-icon:focus-visible{
  outline: none;
  border-color: #64748b;
  box-shadow: 0 0 0 3px rgba(100,116,139,.25);
}

/* Tap feedback */
.footer-social .social-icon:active{
  transform: scale(.96);
}

/* Mobile optimization */
@media (max-width: 480px){
  .footer-social{
    padding-top: 18px;
  }

  .footer-social .social-icon{
    width: 42px;
    height: 42px;
    margin: 0 5px;
  }

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


}


/* FORCE hide header Review button on ALL mobile devices */
@media (max-width: 1024px) {
  .header-review {
    display: none !important;
    visibility: hidden !important;
  }
}
