/* ============================================================
   Sabir's Group / Sabroso — Design system
   Palette per SRS 4.1.1: Signature Red C8102E · White · Charcoal
   ============================================================ */
:root{
  --red:#ED1C24;
  --red-deep:#ED1C24;
  --red-glow:rgba(237,28,36,.28);
  --ink:#1A1A1A;
  --body:#3A3A3A;
  --muted:#6B6B6B;
  --line:#E6E6E6;
  --grey:#F2F2F2;
  --blush:#FFF4F5;
  --white:#FFFFFF;
  --font-display:'Poppins',system-ui,-apple-system,"Segoe UI",sans-serif;
  --font-body:'Inter',system-ui,-apple-system,"Segoe UI",sans-serif;
  --font-urdu:'Noto Nastaliq Urdu','Jameel Noori Nastaleeq',serif;
  --radius:12px;
  --radius-sm:8px;
  --shadow:0 10px 30px rgba(26,26,26,.08);
  --shadow-red:0 12px 32px var(--red-glow);
  --max:1200px;
  --nav-h:72px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto} *,*::before,*::after{animation:none!important;transition:none!important}}
body{margin:0;font-family:var(--font-body);color:var(--body);background:var(--white);line-height:1.6;font-size:16px}
img,svg{display:block;max-width:100%}
a{color:var(--red);text-decoration:none}
a:hover{color:var(--red-deep)}
h1,h2,h3,h4{font-family:var(--font-display);color:var(--ink);line-height:1.15;margin:0 0 .5em;letter-spacing:-.01em}
h1{font-size:clamp(2.2rem,4.6vw,3.6rem);font-weight:800}
h2{font-size:clamp(1.7rem,3vw,2.4rem);font-weight:700}
h3{font-size:1.25rem;font-weight:600}
h4{font-size:1.05rem;font-weight:600}
p{margin:0 0 1em}
.lead{font-size:1.125rem;color:var(--muted);max-width:60ch}
.kicker{font-family:var(--font-display);color:var(--red);font-weight:600;font-size:.9rem;margin:0 0 .5rem}
.wrap{max-width:var(--max);margin:0 auto;padding:0 24px}
.section{padding:72px 0}
.section.tight{padding:48px 0}
.section.grey{background:var(--grey)}
.section.blush{background:var(--blush)}
.center{text-align:center}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
:focus-visible{outline:3px solid var(--red);outline-offset:3px;border-radius:4px}
.skip{position:absolute;inset-inline-start:8px;top:8px;background:var(--red);color:#fff;padding:8px 14px;border-radius:6px;z-index:1000;transform:translateY(-200%);opacity:0}
.skip:focus{transform:none;opacity:1}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:600;font-size:.95rem;padding:14px 24px;border-radius:var(--radius-sm);border:2px solid transparent;cursor:pointer;transition:background .2s,color .2s,box-shadow .2s,transform .2s;line-height:1}
.btn svg{width:18px;height:18px}
.btn-primary{background:var(--red);color:#fff;box-shadow:var(--shadow-red)}
.btn-primary:hover{background:var(--red-deep);color:#fff}
.btn-outline{background:transparent;color:var(--red);border-color:var(--red)}
.btn-outline:hover{background:var(--red);color:#fff}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-ghost:hover{border-color:var(--ink);color:var(--ink)}
.btn-sm{padding:10px 16px;font-size:.85rem}
.btn-lg{padding:15px 24px;font-size:1rem}
.link{font-family:var(--font-display);font-weight:600;color:var(--red);display:inline-flex;align-items:center;gap:6px}
.link:hover{color:var(--red-deep)}
.link svg{width:16px;height:16px}

/* ---------- Header ---------- */
.header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.96);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.header .wrap{max-width:1340px;display:flex;align-items:center;justify-content:space-between;gap:12px;height:var(--nav-h)}
.logo{display:flex;align-items:center;gap:12px;color:var(--ink)}
.logo-mark-img{height:52px;width:auto;flex:none;object-fit:contain}

.logo-text{font-family:var(--font-display);line-height:1.05;direction:ltr;unicode-bidi:isolate}
.logo-text b{display:block;font-size:1.25rem;font-weight:800;color:var(--ink)}
.logo-text small{display:block;font-size:.65rem;font-weight:600;letter-spacing:.02em;color:var(--ink)}
.nav{display:flex;align-items:center;gap:4px;margin:0;padding:0;list-style:none}
.nav > li{position:relative}
.nav a,.nav button{font-family:var(--font-display);font-weight:500;font-size:.8rem;color:var(--ink);padding:10px 8px;border-radius:6px;display:inline-flex;align-items:center;gap:4px;background:none;border:0;cursor:pointer;position:relative;white-space:nowrap}
.nav a:hover,.nav button:hover{color:var(--red)}
.nav a.active{color:var(--red)}
.nav a.active::after{content:"";position:absolute;left:8px;right:8px;bottom:4px;height:2px;background:var(--red);border-radius:2px}
.nav svg{width:14px;height:14px}
.sub{position:absolute;top:100%;left:0;background:#fff;border:1px solid var(--line);border-radius:10px;box-shadow:var(--shadow);min-width:240px;padding:8px;display:none;z-index:50}
.nav > li:hover .sub,.nav > li:focus-within .sub{display:block}
.sub a{display:flex;padding:9px 12px;width:100%;font-weight:500;font-size:.86rem}
.sub a:hover{background:var(--blush)}
.utils{display:flex;align-items:center;gap:6px}
.lang{display:flex;align-items:center;gap:6px;font-family:var(--font-display);font-size:.85rem;font-weight:600;color:var(--ink);padding:8px 10px;border-radius:6px;border:1px solid var(--line)}
.lang a{color:var(--ink)}.lang a.on{color:var(--red)}
.lang .ur{font-family:var(--font-urdu);font-size:1rem;line-height:1}
.lang span{color:var(--line)}
.icon-btn{width:40px;height:40px;border-radius:8px;border:0;background:transparent;display:grid;place-items:center;cursor:pointer;color:var(--ink)}
.icon-btn:hover{background:var(--grey)}
.icon-btn svg{width:20px;height:20px}
.burger{display:none}
.search-bar{display:none;border-top:1px solid var(--line);background:#fff}
.search-bar.open{display:block}
.search-bar form{display:flex;gap:10px;padding:14px 0;max-width:640px;margin:0 auto}
.search-bar input{flex:1}

/* Mobile drawer */
@media (max-width:1279px){
  .nav{display:none}
  .burger{display:grid}
  .lang{display:none}
  .drawer{position:fixed;inset:var(--nav-h) 0 0 0;background:#fff;z-index:99;overflow:auto;padding:16px 24px 40px;display:none}
  .drawer.open{display:block}
  .drawer a,.drawer summary{display:block;font-family:var(--font-display);font-weight:600;font-size:1.05rem;color:var(--ink);padding:14px 0;border-bottom:1px solid var(--line)}
  .drawer details a{font-weight:500;font-size:.95rem;padding:10px 0 10px 16px;border:0;color:var(--body)}
  .drawer summary{list-style:none;display:flex;justify-content:space-between;align-items:center;cursor:pointer}
  .drawer summary::-webkit-details-marker{display:none}
  .drawer summary svg{width:18px;height:18px;flex:none}
  .drawer details[open] summary svg{transform:rotate(180deg)}
  .drawer .drawer-lang{display:flex;gap:16px;margin-top:20px}
  .drawer .drawer-lang a{border:1px solid var(--line);border-radius:8px;padding:10px 18px;flex:1;text-align:center}
  .drawer .drawer-lang a.on{background:var(--red);color:#fff;border-color:var(--red)}
}
@media (min-width:1280px){.drawer{display:none!important}}

/* ---------- Placeholder imagery (CMS-managed photography slots) ---------- */
.ph{position:relative;border-radius:var(--radius);overflow:hidden;background:var(--grey);display:grid;place-items:center;aspect-ratio:16/10;color:rgba(26,26,26,.28)}
.ph::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(135deg,rgba(255,255,255,.35) 0 2px,transparent 2px 14px);pointer-events:none}
.ph svg{width:56px;height:56px;position:relative;stroke:currentColor;fill:none;stroke-width:1.5}
.ph .cap{position:absolute;left:12px;bottom:12px;background:rgba(26,26,26,.72);color:#fff;font-size:.72rem;padding:5px 10px;border-radius:6px;font-family:var(--font-display);font-weight:500;letter-spacing:.01em}
.ph.sq{aspect-ratio:1}
.ph.wide{aspect-ratio:21/9}
.ph.tall{aspect-ratio:4/5}
.ph.portrait{aspect-ratio:3/4}
.ph.t-green{background:linear-gradient(135deg,#DCE9D5,#B9CFAE)}
.ph.t-amber{background:linear-gradient(135deg,#F6DCC5,#E9B58F)}
.ph.t-steel{background:linear-gradient(135deg,#D8DEE6,#B6C1CE)}
.ph.t-red{background:linear-gradient(135deg,#C8102E,#8C0B20);color:rgba(255,255,255,.55)}
.ph.t-warm{background:linear-gradient(135deg,#F3E6D8,#E2C8AE)}
.ph.t-grey{background:linear-gradient(135deg,#ECECEC,#D9D9D9)}
.play{position:absolute;width:64px;height:64px;border-radius:50%;background:#fff;box-shadow:var(--shadow);display:grid;place-items:center;color:var(--red)}
.play svg{width:24px;height:24px;fill:currentColor;stroke:none}

/* ---------- Hero (home) ---------- */
.hero{position:relative;overflow:hidden;padding:56px 0 40px}
.hero .wrap{display:grid;grid-template-columns:1fr 1.1fr;gap:56px;align-items:center}
.hero h1{color:var(--red);font-size:clamp(2.6rem,5.4vw,4.3rem);margin-bottom:18px}
.hero .sub{font-family:var(--font-display);font-weight:600;font-size:1.25rem;color:var(--ink);margin:0 0 14px;line-height:1.35;position:static;display:block;border:0;box-shadow:none;padding:0;min-width:0;background:none}
.hero p{max-width:52ch}
.hero .ctas{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}
.hero-visual{position:relative}
.hero-visual .ph{aspect-ratio:4/3;border-radius:120px 24px 24px 24px;position:relative;z-index:1;box-shadow:var(--shadow)}


@keyframes rise{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.hero .hero-copy{animation:rise .6s ease both}
.hero .hero-visual{animation:rise .6s .12s ease both}

/* ---------- Stats strip ---------- */
.stats{background:var(--red);color:#fff;border-radius:14px;box-shadow:var(--shadow-red);padding:22px 18px;display:grid;grid-template-columns:repeat(6,1fr);gap:0;position:relative;z-index:2}
.stat{display:flex;align-items:center;gap:12px;padding:6px 14px;border-inline-start:1px solid rgba(255,255,255,.22)}
.stat:first-child{border:0}
.stat svg{width:30px;height:30px;stroke:#fff;fill:none;stroke-width:1.5;flex:none;opacity:.9}
.stat b{font-family:var(--font-display);font-size:1.55rem;font-weight:800;line-height:1;display:block;letter-spacing:-.02em}
.stat small{display:block;font-size:.72rem;line-height:1.25;opacity:.92;margin-top:4px}
.stats-wrap{margin-top:-8px}

/* ---------- Journey (7 stages) ---------- */
.journey{display:grid;grid-template-columns:repeat(7,1fr);gap:0;align-items:start;position:relative}
.stage{text-align:center;position:relative;padding:0 8px}
.stage a{color:var(--ink);display:block}
.stage .ring{width:130px;height:130px;margin:0 auto 14px;border-radius:50%;border:3px solid var(--red);padding:5px;position:relative;transition:transform .2s,box-shadow .2s;background:#fff}
.stage .ring .inner{width:100%;height:100%;border-radius:50%;display:grid;place-items:center;color:var(--ink)}
.stage .ring .inner svg{width:38px;height:38px;stroke:currentColor;fill:none;stroke-width:1.5}
/* .stage .ring::after{content:attr(data-n);position:absolute;left:8px;bottom:-4px;background:var(--ink);color:#fff;font-family:var(--font-display);font-size:.7rem;font-weight:700;width:26px;height:20px;border-radius:10px;display:grid;place-items:center} */
.stage a:hover .ring{transform:translateY(-4px);box-shadow:var(--shadow-red)}
.stage h4{font-size:.9rem;margin:0 0 4px}
.stage p{font-size:.75rem;color:var(--muted);margin:0;line-height:1.4}
.stage:not(:last-child)::after{content:"";position:absolute;top:52px;right:-9px;width:18px;height:18px;background:var(--red);clip-path:polygon(0 30%,55% 30%,55% 5%,100% 50%,55% 95%,55% 70%,0 70%)}
.stage.is-final .ring .inner{background:linear-gradient(135deg,var(--red),var(--red-deep));color:#fff}
.t-green .inner{background:#DCE9D5}.t-amber .inner{background:#F6DCC5}.t-steel .inner{background:#D8DEE6}.t-warm .inner{background:#EFE0CF}

/* ---------- Products teaser ---------- */
.teaser{background:var(--blush);border-radius:20px;padding:40px;display:grid;grid-template-columns:260px 1fr;gap:32px;align-items:center}
.teaser h2{font-size:1.8rem}
.cat-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.cat{background:#fff;border-radius:12px;overflow:hidden;border:1px solid #F3D9DD;color:var(--ink);display:block;transition:box-shadow .2s,transform .2s}
.cat:hover{box-shadow:var(--shadow);transform:translateY(-3px);color:var(--ink)}
.cat .ph{border-radius:0;aspect-ratio:1/1}
.cat-body{padding:14px;display:flex;gap:10px;align-items:flex-start}
.cat-body .dot{width:30px;height:30px;border-radius:50%;flex:none;display:grid;place-items:center}
.cat-body .dot svg{width:15px;height:15px;stroke:#fff;fill:none;stroke-width:2}
.cat-body b{font-family:var(--font-display);font-size:.9rem;display:block;line-height:1.2}
.cat-body small{color:var(--muted);font-size:.75rem;line-height:1.3;display:block;margin-top:3px}
.c1{background:#C8102E}.c2{background:#F28C28}.c3{background:#E5B800}.c4{background:#7B3FA0}.c5{background:#1E7F5C}

/* ---------- Trust strip ---------- */
.trust{display:grid;grid-template-columns:repeat(5,1fr);gap:24px;border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:28px 0}
.trust-item{display:flex;align-items:center;gap:12px}
.trust-item .ic{width:44px;height:44px;border-radius:50%;border:2px solid var(--red);display:grid;place-items:center;color:var(--red);flex:none}
.trust-item .ic svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.6}
.trust-item b{font-family:var(--font-display);font-size:.88rem;display:block;color:var(--ink);line-height:1.2}
.trust-item small{color:var(--muted);font-size:.75rem;line-height:1.3;display:block;margin-top:2px}

/* ---------- Bilingual / mobile showcase (home) ---------- */
.showcase{display:grid;grid-template-columns:1.1fr 1fr;gap:48px;align-items:center}
.devices{display:flex;gap:24px;align-items:flex-end;justify-content:center}
.device{background:#fff;border-radius:18px;box-shadow:var(--shadow);overflow:hidden;border:1px solid var(--line)}
.device.laptop{width:100%;max-width:520px;aspect-ratio:16/10}
.device.phone{width:150px;aspect-ratio:9/19;border-radius:26px;border:6px solid var(--ink);flex:none}
.device img{width:100%;height:100%;object-fit:cover;object-position:top}
.showcase ul{padding:0;list-style:none;margin:20px 0 0}
.showcase li{display:flex;gap:12px;align-items:flex-start;margin-bottom:12px}
.showcase li svg{width:20px;height:20px;stroke:var(--red);fill:none;stroke-width:2;flex:none;margin-top:3px}

/* ---------- Page hero ---------- */
.page-hero{position:relative;overflow:hidden;padding:44px 0 40px;background:#fff}
.page-hero::before{content:"";position:absolute;right:-10%;top:-45%;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(200,16,46,.13),rgba(200,16,46,.04) 55%,transparent 70%);pointer-events:none}
.page-hero .wrap{position:relative}
.crumb{display:flex;flex-wrap:wrap;gap:8px;font-size:.82rem;color:var(--muted);margin:0 0 18px;padding:0;list-style:none}
.crumb li+li::before{content:"/";margin-inline-end:8px;color:var(--line)}
.crumb a{color:var(--muted)}.crumb a:hover{color:var(--red)}
.crumb .cur{color:var(--red);font-weight:600}
.page-hero h1{max-width:20ch}
.page-hero .lead{margin:0}
.page-hero.with-stats .wrap{display:grid;grid-template-columns:1.3fr 1fr;gap:40px;align-items:center}

/* ---------- Generic layouts ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.split.rev .media{order:2}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:32px}
.section-head h2{margin:0}
.section-head p{margin:.4em 0 0;color:var(--muted);max-width:56ch}
.checks{list-style:none;padding:0;margin:18px 0 0}
.checks li{position:relative;padding-inline-start:32px;margin-bottom:10px}
.checks li::before{content:"";position:absolute;left:0;top:3px;width:20px;height:20px;border-radius:50%;background:var(--red)}
.checks li::after{content:"";position:absolute;left:0;top:3px;width:20px;height:20px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat}
[dir=rtl] .checks li::before,[dir=rtl] .checks li::after{left:auto;right:0}

/* Cards */
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column}
.card .ph{border-radius:0}
.card-body{padding:18px 20px 20px;display:flex;flex-direction:column;gap:6px;flex:1}
.card-body h3{font-size:1.05rem;margin:0}
.card-body p{color:var(--muted);font-size:.9rem;margin:0}
.card-body .link{margin-top:auto;padding-top:8px;font-size:.88rem}
.tag{display:inline-block;font-family:var(--font-display);font-size:.7rem;font-weight:600;color:var(--red);background:var(--blush);border:1px solid #F3D9DD;padding:3px 9px;border-radius:999px}
.tag.ink{color:#fff;background:var(--ink);border-color:var(--ink)}
.stage-num{font-family:var(--font-display);font-size:.75rem;font-weight:700;color:var(--red)}

/* Timeline */
.timeline{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(5,1fr);position:relative;gap:20px}
.timeline::before{content:"";position:absolute;left:0;right:0;top:9px;height:2px;background:var(--line)}
.timeline li{position:relative;padding-top:28px}
.timeline li::before{content:"";position:absolute;top:0;left:0;width:20px;height:20px;border-radius:50%;background:#fff;border:4px solid var(--red)}
.timeline b{font-family:var(--font-display);font-size:1.5rem;color:var(--red);display:block;line-height:1;margin-bottom:8px}
.timeline p{font-size:.9rem;color:var(--body);margin:0}

/* Mission / vision */
.mvv{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.mvv article{background:#fff;border-radius:var(--radius);padding:28px;border-top:4px solid var(--red)}
.mvv h3{margin-bottom:8px}
.mvv p{margin:0;color:var(--muted)}

/* Leadership */
.person{text-align:left}
.person .ph{margin-bottom:12px}
.person b{font-family:var(--font-display);display:block;color:var(--ink)}
.person small{color:var(--red);font-weight:600;font-family:var(--font-display);display:block;margin-bottom:6px}
.person p{font-size:.88rem;color:var(--muted);margin:0}

/* Divisions */
.division{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px;display:flex;flex-direction:column;gap:8px}
.division h3{margin:0;font-size:1.05rem}
.division p{margin:0;color:var(--muted);font-size:.9rem;flex:1}

/* Operations detail */
.kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.kpi{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:20px 22px;border-inline-start:4px solid var(--red)}
.kpi b{font-family:var(--font-display);font-size:1.9rem;color:var(--red);display:block;line-height:1;margin-bottom:6px}
.kpi small{color:var(--muted);font-size:.85rem}
.gallery{display:grid;grid-template-columns:2fr 1fr 1fr;grid-template-rows:auto auto;gap:14px}
.gallery .ph:first-child{grid-row:span 2;aspect-ratio:auto}
.gallery .ph{aspect-ratio:4/3}
.pager{display:flex;justify-content:space-between;gap:16px;border-top:1px solid var(--line);padding-top:24px}
.pager a{font-family:var(--font-display);font-weight:600;display:inline-flex;align-items:center;gap:10px}
.pager a svg{width:22px;height:22px;flex:none}
.pager small{display:block;color:var(--muted);font-weight:400;font-size:.78rem}
.std{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.std article{display:flex;gap:14px;align-items:flex-start}
.std .ic{width:44px;height:44px;border-radius:50%;background:var(--blush);color:var(--red);display:grid;place-items:center;flex:none}
.std .ic svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.6}
.std b{font-family:var(--font-display);display:block;color:var(--ink)}
.std p{margin:0;color:var(--muted);font-size:.9rem}

/* Filters / chips */
.filters{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-bottom:28px}
.chip{font-family:var(--font-display);font-weight:600;font-size:.85rem;padding:9px 16px;border-radius:999px;border:1px solid var(--line);background:#fff;color:var(--ink);cursor:pointer;transition:all .15s}
.chip:hover{border-color:var(--red);color:var(--red)}
.chip.on{background:var(--red);border-color:var(--red);color:#fff}
.filters .spacer{flex:1}
.filters select,.filters input{max-width:220px}
.empty{padding:40px;text-align:center;color:var(--muted);border:1px dashed var(--line);border-radius:var(--radius);display:none}
.empty.show{display:block}

/* Product grid */
.product{display:flex;flex-direction:column}
.product .ph{aspect-ratio:1}
.product .cat-lab{display:flex;align-items:center;gap:6px;font-size:.75rem;font-weight:600;color:var(--muted);margin-bottom:4px}
.product .cat-lab i{width:10px;height:10px;border-radius:50%;display:inline-block}
.product h3{font-size:1rem;margin:0 0 4px}
.product .price{font-family:var(--font-display);font-weight:800;color:var(--red);font-size:1.05rem;margin:0 0 6px}
.product p{font-size:.85rem;color:var(--muted);margin:0 0 10px}
.product[hidden]{display:none}

/* Product detail */
.pd{display:grid;grid-template-columns:1.1fr 1fr;gap:48px;align-items:start}
.thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:12px}
.thumbs .ph{aspect-ratio:1;font-size:.7rem;border-radius:8px}
.thumbs .ph.on{outline:2px solid var(--red);outline-offset:2px}
.sizes{display:flex;gap:8px;margin:10px 0 18px}
.sizes .chip{padding:7px 14px}
.nutri{width:100%;border-collapse:collapse;font-size:.92rem;margin-top:8px}
.nutri td{padding:9px 0;border-bottom:1px solid var(--line)}
.nutri td:last-child{text-align:right;font-weight:600;color:var(--ink);font-family:var(--font-display)}
[dir=rtl] .nutri td:last-child{text-align:left}
.note{background:var(--grey);border-radius:var(--radius-sm);padding:16px 18px;font-size:.9rem;margin-top:18px}
.note b{display:block;color:var(--ink);font-family:var(--font-display);margin-bottom:4px}

/* Distribution & map */
.map-wrap{display:grid;grid-template-columns:1.25fr 1fr;gap:28px;align-items:start}
.map{position:relative;border-radius:var(--radius);border:1px solid var(--line);background:#fff;aspect-ratio:1/1;overflow:hidden;background-image:linear-gradient(var(--grey) 1px,transparent 1px),linear-gradient(90deg,var(--grey) 1px,transparent 1px);background-size:40px 40px}
.map .land{position:absolute;inset:0;width:100%;height:100%}
.map .land path{fill:#F7EAEA;stroke:#E2B8BF;stroke-width:.8;vector-effect:non-scaling-stroke}
.pin{position:absolute;transform:translate(-50%,-100%);display:flex;flex-direction:column;align-items:center;gap:2px;cursor:pointer;background:none;border:0;padding:0;font-family:var(--font-display)}
.pin i{width:16px;height:16px;border-radius:50% 50% 50% 0;background:var(--red);transform:rotate(-45deg);box-shadow:0 4px 12px var(--red-glow);border:2px solid #fff}
.pin span{font-size:.72rem;font-weight:600;color:var(--ink);background:#fff;padding:2px 7px;border-radius:4px;box-shadow:0 2px 6px rgba(0,0,0,.08)}
.pin.on i{background:var(--ink)}
.map .note-lab{position:absolute;left:12px;bottom:12px;font-size:.72rem;color:var(--muted);background:rgba(255,255,255,.9);padding:4px 8px;border-radius:4px}
.dc-list{display:flex;flex-direction:column;gap:12px}
.dc{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:16px 18px;display:flex;gap:14px;cursor:pointer;transition:border-color .15s}
.dc:hover,.dc.on{border-color:var(--red)}
.dc .ic{width:38px;height:38px;border-radius:50%;background:var(--blush);color:var(--red);display:grid;place-items:center;flex:none}
.dc .ic svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.8}
.dc b{font-family:var(--font-display);display:block;color:var(--ink);font-size:.95rem}
.dc small{display:block;color:var(--muted);font-size:.82rem}
.dc em{display:block;color:var(--red);font-style:normal;font-size:.8rem;font-weight:600;margin-top:2px}
.locator{background:var(--grey);border-radius:20px;padding:36px}
.locator .search-row{display:grid;grid-template-columns:1fr 200px auto auto;gap:12px;margin:18px 0 22px}
.stores{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.store{background:#fff;border-radius:var(--radius-sm);padding:14px 16px;display:flex;justify-content:space-between;align-items:center;gap:12px;border:1px solid var(--line)}
.store b{font-family:var(--font-display);display:block;font-size:.92rem;color:var(--ink)}
.store small{color:var(--muted);font-size:.8rem}
.store[hidden]{display:none}
.cta-band{background:linear-gradient(120deg,var(--red),var(--red-deep));color:#fff;border-radius:20px;padding:40px;display:flex;justify-content:space-between;align-items:center;gap:24px;box-shadow:var(--shadow-red)}
.cta-band h2{color:#fff;margin:0 0 6px}
.cta-band p{margin:0;opacity:.92}
.cta-band .btn{background:#fff;color:var(--red);box-shadow:none}
.cta-band .btn:hover{background:var(--blush)}

/* Certifications */
.certs{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.cert{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px}
.cert .badge{width:52px;height:52px;border-radius:50%;background:var(--red);color:#fff;display:grid;place-items:center;margin-bottom:14px;box-shadow:var(--shadow-red)}
.cert .badge svg{width:26px;height:26px;stroke:#fff;fill:none;stroke-width:1.6}
.cert h3{margin:0 0 2px;font-size:1.05rem}
.cert .by{color:var(--muted);font-size:.85rem;margin-bottom:12px}
.cert dl{display:grid;grid-template-columns:auto 1fr;gap:4px 12px;font-size:.85rem;margin:0 0 14px}
.cert dt{color:var(--muted)}.cert dd{margin:0;font-weight:600;color:var(--ink)}
.env{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.env article{background:#fff;border-radius:var(--radius);padding:22px;border:1px solid var(--line)}
.env .ic{width:46px;height:46px;border-radius:50%;background:var(--blush);display:grid;place-items:center;margin-bottom:14px}
.env .ic svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:1.6}
.env b{font-family:var(--font-display);display:block;color:var(--ink);margin-bottom:4px}
.env p{margin:0;color:var(--muted);font-size:.9rem}
details.more{border:1px dashed var(--line);border-radius:var(--radius);padding:14px 18px;margin-top:20px;color:var(--muted);font-size:.9rem}
details.more summary{cursor:pointer;font-family:var(--font-display);font-weight:600;color:var(--ink)}

/* Media */
.media-layout{display:grid;grid-template-columns:1fr 320px;gap:32px;align-items:start}
.feature{display:block;position:relative;border-radius:var(--radius);overflow:hidden;color:#fff;margin-bottom:24px}
.feature .ph{aspect-ratio:21/9;border-radius:0}
.feature .ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,26,26,.85),rgba(26,26,26,.05) 60%);display:flex;flex-direction:column;justify-content:flex-end;padding:28px}
.feature .ov small{opacity:.85;font-size:.8rem}
.feature .ov h2{color:#fff;font-size:1.5rem;margin:6px 0 4px}
.feature .ov p{margin:0;opacity:.9;font-size:.92rem;max-width:60ch}
.news-list{display:flex;flex-direction:column;gap:14px}
.news{display:grid;grid-template-columns:180px 1fr;gap:18px;padding:14px;border:1px solid var(--line);border-radius:var(--radius);background:#fff;align-items:center}
.news .ph{aspect-ratio:4/3;border-radius:8px}
.news small{color:var(--muted);font-size:.8rem}
.news h3{font-size:1.05rem;margin:4px 0 6px}
.news p{margin:0 0 6px;color:var(--muted);font-size:.9rem}
.news[hidden]{display:none}
.side{display:flex;flex-direction:column;gap:18px}
.panel{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:22px}
.panel h3{font-size:1rem;margin:0 0 6px}
.panel p{font-size:.9rem;color:var(--muted);margin:0 0 12px}
.panel ul{list-style:none;padding:0;margin:0}
.panel li{padding:8px 0;border-bottom:1px solid var(--line);font-size:.9rem}
.panel li:last-child{border:0}
.panel li a{display:inline-flex;align-items:center;gap:8px}
.panel li a svg{width:16px;height:16px;flex:none}
.panel li small{display:block;color:var(--muted);font-size:.78rem}
.article{max-width:760px}
.article .meta{color:var(--muted);font-size:.9rem;margin-bottom:24px}
.article p{font-size:1.05rem;line-height:1.75}
.article blockquote{border-inline-start:4px solid var(--red);margin:28px 0;padding:8px 22px;font-family:var(--font-display);font-size:1.25rem;font-weight:600;color:var(--ink);line-height:1.4}
.article blockquote cite{display:block;font-family:var(--font-body);font-size:.88rem;font-weight:400;color:var(--muted);margin-top:8px;font-style:normal}
.share{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-top:28px}
.share .chip{padding:7px 14px;font-size:.8rem}
.article-layout{display:grid;grid-template-columns:1fr 300px;gap:40px;align-items:start}

/* Careers */
.culture{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.jobs{display:flex;flex-direction:column;gap:12px}
.job{display:grid;grid-template-columns:1fr auto;gap:16px;align-items:center;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:18px 22px}
.job h3{font-size:1.05rem;margin:0 0 6px}
.job .meta{display:flex;flex-wrap:wrap;gap:14px;font-size:.85rem;color:var(--muted)}
.job .meta span{display:inline-flex;align-items:center;gap:6px}
.job .meta svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}
.job[hidden]{display:none}
.job-layout{display:grid;grid-template-columns:1.2fr 1fr;gap:40px;align-items:start}
.job-facts{display:flex;flex-wrap:wrap;gap:20px;font-size:.92rem;margin:0 0 28px;padding:0;list-style:none}
.job-facts b{color:var(--ink)}
.job-facts li{color:var(--muted)}
.bul{padding-inline-start:20px;margin:0 0 20px}
.bul li{margin-bottom:8px}
.apply-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:28px;position:sticky;top:calc(var(--nav-h) + 20px)}

/* Forms */
label{display:block;font-family:var(--font-display);font-weight:600;font-size:.85rem;color:var(--ink);margin-bottom:6px}
input[type=text],input[type=email],input[type=tel],input[type=search],select,textarea{width:100%;font:inherit;font-size:.95rem;padding:12px 14px;border:1px solid #D6D6D6;border-radius:var(--radius-sm);background:#fff;color:var(--ink);transition:border-color .15s,box-shadow .15s}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--red);box-shadow:0 0 0 3px rgba(200,16,46,.15)}
textarea{min-height:130px;resize:vertical}
.field{margin-bottom:16px}
.field.err input,.field.err select,.field.err textarea{border-color:var(--red)}
.field .msg{display:none;font-size:.8rem;color:var(--red);margin-top:6px}
.field.err .msg{display:block}
.field .hint{font-size:.78rem;color:var(--muted);margin-top:6px}
.row-2{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.seg{display:flex;flex-wrap:wrap;gap:8px}
.seg input{position:absolute;opacity:0;pointer-events:none}
.seg label{margin:0;padding:9px 14px;border:1px solid var(--line);border-radius:999px;cursor:pointer;font-weight:600;font-size:.82rem;color:var(--ink)}
.seg input:checked + label{background:var(--red);border-color:var(--red);color:#fff}
.seg input:focus-visible + label{outline:3px solid var(--red);outline-offset:2px}
.drop{border:2px dashed #D6D6D6;border-radius:var(--radius-sm);padding:22px;text-align:center;color:var(--muted);font-size:.9rem;cursor:pointer;background:var(--grey)}
.drop:hover{border-color:var(--red)}
.drop b{color:var(--red)}
.check{display:flex;gap:10px;align-items:flex-start;font-size:.85rem;color:var(--body)}
.check input{margin-top:3px;accent-color:var(--red)}
.check label{font-weight:400;font-family:var(--font-body);margin:0;color:var(--body)}
.captcha{display:flex;align-items:center;gap:12px;border:1px solid var(--line);border-radius:var(--radius-sm);padding:12px 14px;background:var(--grey);font-size:.88rem;max-width:320px}
.captcha input{accent-color:var(--red);width:20px;height:20px}
.captcha em{margin-inline-start:auto;font-style:normal;font-size:.7rem;color:var(--muted);text-align:center;line-height:1.2}
.form-ok{display:none;background:#EAF6EF;border:1px solid #BFE3CC;color:#1E5C3A;border-radius:var(--radius-sm);padding:16px 18px;margin-top:16px}
.form-ok.show{display:flex;gap:12px;align-items:flex-start}
.form-ok svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:2;flex:none}
.contact-layout{display:grid;grid-template-columns:1.3fr 1fr;gap:40px;align-items:start}
.contact-form{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:28px}
.addr{display:flex;flex-direction:column;gap:10px;font-size:.92rem}
.addr div{display:flex;gap:10px;align-items:flex-start}
.addr svg{width:18px;height:18px;stroke:var(--red);fill:none;stroke-width:1.8;flex:none;margin-top:3px}
.mini-map{margin-top:16px;aspect-ratio:16/9;border-radius:var(--radius-sm);position:relative;background-image:linear-gradient(var(--grey) 1px,transparent 1px),linear-gradient(90deg,var(--grey) 1px,transparent 1px);background-size:28px 28px;border:1px solid var(--line);display:grid;place-items:center}
.fac{display:flex;justify-content:space-between;padding:10px 0;border-bottom:1px solid var(--line);font-size:.9rem}
.fac:last-child{border:0}
.fac b{color:var(--ink);font-family:var(--font-display);font-weight:600}
.fac span{color:var(--muted)}

/* 404 */
.err-page{text-align:center;padding:90px 0}
.err-page .egg{width:120px;height:120px;border-radius:50%;background:var(--blush);color:var(--red);display:grid;place-items:center;margin:0 auto 20px}
.err-page .egg svg{width:56px;height:56px;stroke:currentColor;fill:none;stroke-width:1.5}
.err-page .big{font-family:var(--font-display);font-size:5rem;font-weight:800;color:var(--red);line-height:1;margin:0}
.err-page form{display:flex;gap:10px;max-width:460px;margin:24px auto}
.err-page .links{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:12px}

/* Screens gallery */
.screens{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.shot{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;cursor:zoom-in;display:flex;flex-direction:column}
.shot .frame{aspect-ratio:4/3;overflow:hidden;background:var(--grey);border-bottom:1px solid var(--line)}
.shot .frame img{width:100%;height:100%;object-fit:cover;object-position:top;transition:transform .3s}
.shot .frame.phone-frame{display:grid;place-items:center;background:var(--grey)}
.shot .frame.phone-frame img{width:auto;height:100%;object-fit:contain}
.shot .cap{padding:14px 16px}
.shot .cap b{font-family:var(--font-display);display:block;color:var(--ink);font-size:.95rem}
.shot .cap small{color:var(--muted);font-size:.8rem}
.shot:hover .frame img{transform:translateY(-3%)}
.lightbox{position:fixed;inset:0;background:rgba(26,26,26,.92);z-index:200;display:none;overflow:auto;padding:40px 20px}
.lightbox.open{display:block}
.lightbox img{max-width:min(1100px,100%);margin:0 auto;border-radius:8px;box-shadow:0 20px 60px rgba(0,0,0,.4)}
.lightbox .close{position:fixed;top:16px;right:16px;background:#fff;border:0;border-radius:50%;width:44px;height:44px;font-size:1.4rem;cursor:pointer}
.lightbox .lb-cap{color:#fff;text-align:center;margin:14px auto 0;font-family:var(--font-display)}

/* ---------- Footer ---------- */
.footer{background:var(--ink);color:#C9C9C9;padding:56px 0 0;margin-top:72px}
.footer .cols{display:grid;grid-template-columns:1.6fr 1fr 1.1fr 1.3fr;gap:32px}
.footer .logo-text b,.footer .logo-text small{color:#fff}
.footer h4{color:#fff;font-size:.95rem;margin:0 0 14px}
.footer ul{list-style:none;padding:0;margin:0}
.footer li{margin-bottom:9px;font-size:.9rem}
.footer a{color:#C9C9C9}.footer a:hover{color:#fff}
.footer p{font-size:.9rem;color:#B5B5B5;margin:14px 0}
.social{display:flex;gap:10px;margin-top:6px}
.social a{width:34px;height:34px;border-radius:50%;background:#2C2C2C;display:grid;place-items:center;color:#fff}
.social a:hover{background:var(--red)}
.social svg{width:16px;height:16px;fill:currentColor}
.newsletter{display:flex;gap:8px;margin-top:8px}
.newsletter input{background:#2C2C2C;border-color:#3A3A3A;color:#fff}
.newsletter input::placeholder{color:#8A8A8A}
.newsletter .btn{padding:12px 18px;box-shadow:none}
.footer .legal{border-top:1px solid #333;margin-top:44px;padding:20px 0;display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:.82rem;color:#9A9A9A}
.footer .legal a{color:#9A9A9A}.footer .legal a:hover{color:#fff}
.footer .legal .ur{font-family:var(--font-urdu)}

/* ---------- RTL / Urdu ---------- */
[dir=rtl]{--font-display:'Noto Nastaliq Urdu','Poppins',sans-serif;--font-body:'Noto Nastaliq Urdu','Inter',sans-serif}
[dir=rtl] body{line-height:2}
[dir=rtl] h1,[dir=rtl] h2,[dir=rtl] h3,[dir=rtl] h4{line-height:1.7;letter-spacing:0}
[dir=rtl] .hero h1{font-size:clamp(2rem,4.4vw,3.4rem)}
[dir=rtl] .nav a{font-size:.95rem;line-height:1.5}
[dir=rtl] .latin{font-family:'Poppins','Inter',sans-serif;line-height:1.2;direction:ltr;unicode-bidi:isolate;display:inline-block}
[dir=rtl] .stat b{font-family:'Poppins',sans-serif}
[dir=rtl] .hero-visual .ph{border-radius:24px 120px 24px 24px}
[dir=rtl] .stage:not(:last-child)::after{right:auto;left:-9px;transform:scaleX(-1)}
[dir=rtl] .stage .ring::after{left:auto;right:8px}
[dir=rtl] .page-hero::before{right:auto;left:-10%}
[dir=rtl] .btn svg,[dir=rtl] .link svg{transform:scaleX(-1)}
[dir=rtl] .logo-text{font-family:'Poppins',sans-serif}
[dir=rtl] .lang .en{font-family:'Poppins',sans-serif}

/* ---------- Responsive ---------- */
@media (max-width:1100px){
  .stats{grid-template-columns:repeat(3,1fr);row-gap:14px}
  .stat:nth-child(4){border:0}
  .journey{grid-template-columns:repeat(4,1fr);row-gap:28px}
  .stage:nth-child(4)::after{display:none}
  .cat-grid{grid-template-columns:repeat(3,1fr)}
  .trust{grid-template-columns:repeat(3,1fr)}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .timeline{grid-template-columns:repeat(3,1fr)}
  .timeline::before{display:none}
  .footer .cols{grid-template-columns:1fr 1fr 1fr}
  .screens{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:860px){
  .section{padding:52px 0}
  .hero{padding:36px 0 28px}
  .hero .wrap,.split,.teaser,.showcase,.pd,.map-wrap,.media-layout,.article-layout,.job-layout,.contact-layout,.page-hero.with-stats .wrap{grid-template-columns:1fr}
  .split.rev .media{order:0}
  .teaser{padding:28px}
  .hero-visual::before{left:-10%;right:40%}
  .journey{grid-template-columns:repeat(2,1fr)}
  .stage:nth-child(4)::after{display:block}
  .stage:nth-child(even)::after{display:none}
  .stage .ring{width:96px;height:96px}
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .grid-3,.grid-2,.mvv,.kpis,.certs,.env,.std,.culture,.stores{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr 1fr}
  .trust{grid-template-columns:1fr 1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .gallery .ph:first-child{grid-column:span 2;grid-row:auto;aspect-ratio:16/9}
  .news{grid-template-columns:1fr}
  .job{grid-template-columns:1fr}
  .locator .search-row{grid-template-columns:1fr 1fr}
  .cta-band{flex-direction:column;align-items:flex-start}
  .section-head{flex-direction:column;align-items:flex-start;gap:12px}
  .row-2{grid-template-columns:1fr}
  .footer .cols{grid-template-columns:1fr 1fr}
  .devices{flex-direction:column;align-items:center}
  .apply-card{position:static}
}
@media (max-width:520px){
  .stats{grid-template-columns:1fr 1fr;padding:16px 10px}
  .stat{border:0;padding:8px}
  .stat b{font-size:1.35rem}
  .trust,.grid-4,.cat-grid,.timeline,.screens,.gallery,.footer .cols{grid-template-columns:1fr}
  .gallery .ph:first-child{grid-column:auto}
  .journey{grid-template-columns:1fr 1fr}
  .locator{padding:22px}
  .locator .search-row{grid-template-columns:1fr}
  .thumbs{grid-template-columns:repeat(4,1fr)}
}

/* CTA card in card grids */
.card.cta-card{background:linear-gradient(135deg,var(--red),var(--red-deep));color:#fff;border:0;justify-content:flex-end;padding:24px;box-shadow:var(--shadow-red)}
.card.cta-card h3{color:#fff;margin:0 0 6px}
.card.cta-card p{color:rgba(255,255,255,.9);margin:0 0 16px;font-size:.9rem}
.card.cta-card .btn{background:#fff;color:var(--red);box-shadow:none;align-self:flex-start}

/* ---------- Imagery ---------- */
.pic{position:relative;border-radius:var(--radius);overflow:hidden;background:var(--grey);aspect-ratio:16/10;box-shadow:0 8px 24px rgba(26,26,26,.08)}
.pic img{width:100%;height:100%;object-fit:cover;display:block}
.pic.sq{aspect-ratio:1}.pic.wide{aspect-ratio:21/9}.pic.portrait{aspect-ratio:4/5}
.pic.flat{box-shadow:none;background:#fff}
.pic.photo{background:#e9ecef}
.pic.photo img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.pic .play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}
.pic .cap{position:absolute;left:12px;bottom:12px;background:rgba(26,26,26,.72);color:#fff;font-size:.72rem;padding:5px 10px;border-radius:6px;font-family:var(--font-display);font-weight:500}
.frame{position:relative}
.frame::before{content:"";display:none}
.frame::after{content:"";display:none}
.frame .pic{position:relative;z-index:1}
[dir=rtl] .frame::before{right:auto;left:-16px}[dir=rtl] .frame::after{left:auto;right:-14px}
.split .media{padding:14px 16px 16px 14px}
.card .pic{border-radius:0;box-shadow:none}
.card{transition:transform .2s,box-shadow .2s}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.card:hover .pic img{transform:scale(1.03)}
.card .pic img{transition:transform .4s}
.hero-visual .pic{aspect-ratio:4/3;border-radius:12px;position:relative;z-index:1;box-shadow:0 8px 30px rgba(26,26,26,.1);overflow:hidden}
[dir=rtl] .hero-visual .pic{border-radius:24px 120px 24px 24px}
.hero{background:#fff;padding:48px 0 32px}

.section.blush{background:radial-gradient(circle at 1px 1px,rgba(200,16,46,.08) 1px,transparent 0) 0 0/22px 22px,var(--blush)}
.section.grey{background:linear-gradient(180deg,#F5F5F5,#EFEFEF)}
.stage .ring .inner svg{width:52%;height:52%;stroke-width:1.6}
.stage .ring .inner.photo{padding:0;overflow:hidden;background:#e9ecef}
.stage .ring .inner.photo img{width:100%;height:100%;object-fit:cover;border-radius:50%}


.cat .pic{border-radius:0;aspect-ratio:1;box-shadow:none;background:#F9F4EF}
.cat .pic img{object-fit:cover}
.product .pic{aspect-ratio:1;background:#FAF7F3}
.thumbs .pic{aspect-ratio:1;border-radius:8px;cursor:pointer;box-shadow:none;border:2px solid transparent}
.thumbs .pic.on{border-color:var(--red)}
.gallery .pic{aspect-ratio:4/3}
.gallery .pic:first-child{grid-row:span 2;aspect-ratio:auto}
.person .pic{margin-bottom:12px;aspect-ratio:4/5;box-shadow:none}
.news .pic{aspect-ratio:4/3;border-radius:8px;box-shadow:none}
.feature .pic{aspect-ratio:21/9;border-radius:0}
.culture .pic{margin-bottom:14px}
.showcase-bg{background:linear-gradient(135deg,#FFF4F5,#fff 60%)}
.stats .stat b{font-variant-numeric:tabular-nums}
.pic .badge-halal{position:absolute;right:12px;top:12px;background:#fff;color:var(--red);font-family:var(--font-display);font-weight:800;font-size:.75rem;padding:6px 10px;border-radius:999px;box-shadow:var(--shadow)}
.trust-item .ic{background:var(--red);color:#fff;border:0;box-shadow:0 6px 14px var(--red-glow)}
.trust{border:0;background:#fff;border-radius:16px;padding:28px 32px;box-shadow:var(--shadow)}
.article .pic{margin-bottom:8px}
@media (max-width:860px){.gallery .pic:first-child{grid-column:span 2;grid-row:auto;aspect-ratio:16/9}.frame::before{right:-8px;bottom:-8px}}
@media (max-width:520px){.gallery .pic:first-child{grid-column:auto}}

/* Sabroso brand accents (secondary brand within Products) */
:root{--sabroso-purple:#5B2B8A;--sabroso-gold:#F5A623}
.sabroso-brand{display:flex;align-items:center;gap:14px;margin-bottom:8px}
.sabroso-brand img{height:52px;width:auto}
.teaser{background:linear-gradient(135deg,#F6EEFA,#FFF6EC)}
.teaser .kicker{color:var(--sabroso-purple)}
.teaser .btn-primary{background:var(--sabroso-purple)}
.teaser .btn-primary:hover{background:#48206E}
.pd .tag,.product .tag{}
.brand-logo-lg{height:64px;width:auto;margin-bottom:18px}
.footer-brands{display:flex;gap:22px;align-items:center;margin-top:16px;flex-wrap:wrap}
.footer-brands img{height:38px;width:auto;filter:brightness(0) invert(1);opacity:.85}
.footer-brands img.sabroso{filter:none;opacity:1;background:#fff;padding:5px 8px;border-radius:6px}


/* Management Section */
#management .section-head { margin-bottom: 40px; }
#management h3 { font-family: var(--font-display); color: var(--ink); margin-bottom: 20px; font-size: 1.5rem; }

/* Founder Section */
.founder-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.founder-card h3 { margin: 0 0 4px; font-size: 1.8rem; }
.founder-card .role { color: var(--red); font-weight: 600; margin-bottom: 16px; }
.founder-card .bio { color: var(--muted); line-height: 1.7; margin-bottom: 12px; }

/* Executive Directors */
.executive-directors h3 { margin-bottom: 20px; }
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.director-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.director-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-red); }
.director-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--red);
  display: grid; place-items: center;
  margin: 0 auto 12px;
}
.director-icon svg { width: 24px; height: 24px; }
.director-card h4 { margin: 0; font-size: 1rem; color: var(--ink); }
.directors-note { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* Divisions */
.divisions-section { margin-top: 40px; }
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.division-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s;
}
.division-card:hover { transform: translateY(-4px); }
.division-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 14px;
  box-shadow: var(--shadow-red);
}
.division-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; }
.division-card h4 { margin: 0 0 10px; font-size: 1.1rem; color: var(--ink); }
.division-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

.customer-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
  margin-top: 30px;
}

.customer-logos img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.2s ease; /* Sirf zoom ka effect */
}

.customer-logos img:hover {
  transform: scale(1.05); /* Hover par halka sa zoom */
}