/* ============================================================
   AUTO GLOSS — shared stylesheet (used by every page)
   ============================================================ */
:root{
  --bg:#0A0A0C;
  --bg-alt:#121216;
  --surface:#17171B;
  --surface-2:#1D1D22;
  --yellow:#FFC700;
  --yellow-dim:rgba(255,199,0,.14);
  --red:#E63946;
  --white:#F5F5F7;
  --muted:#9A9AA4;
  --muted-2:#6E6E78;
  --border:rgba(255,255,255,.08);
  --border-strong:rgba(255,255,255,.16);
  --shadow-yellow: 0 8px 30px -6px rgba(255,199,0,.35);
  --ease: cubic-bezier(.16,.84,.44,1);
  --f-ar:'IBM Plex Sans Arabic', sans-serif;
  --f-en-head:'IBM Plex Sans Arabic', sans-serif;
  --f-en-body:'IBM Plex Sans Arabic', sans-serif;
}

*,*::before,*::after{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; background:var(--bg);}
html,body{overflow-x:hidden; max-width:100%;}

body{
  background:var(--bg);
  color:var(--white);
  font-family:var(--f-ar);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  position:relative;
  min-height:100vh;
}

/* grain texture overlay for premium tactile feel */
body::before{
  content:'';
  position:fixed; inset:0;
  z-index:2;
  pointer-events:none;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}

body.lang-en{ font-family:var(--f-en-body); }
body.lang-en h1, body.lang-en h2, body.lang-en h3, body.lang-en .eyebrow, body.lang-en .btn, body.lang-en .logo-word, body.lang-en .nav-link, body.lang-en .stat-num{ font-family:var(--f-en-head); }
body.lang-ar h1, body.lang-ar h2, body.lang-ar h3{ font-weight:800; }

img,video{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font:inherit; color:inherit; background:none; border:none; cursor:pointer;}
svg{display:block;}

::selection{ background:var(--yellow); color:#0A0A0C; }

::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background:var(--bg); }
::-webkit-scrollbar-thumb{ background:#2A2A30; border-radius:10px; border:2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover{ background:var(--yellow); }

.container{ width:100%; max-width:1320px; margin-inline:auto; padding-inline:24px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-en-head);
  font-size:12px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--yellow);
  font-weight:600;
}
body.lang-ar .eyebrow{ font-family:var(--f-ar); font-weight:700; letter-spacing:.02em; }
.eyebrow::before{
  content:''; width:26px; height:2px; background:var(--yellow); display:inline-block;
}

.section-head{ margin-bottom:56px; }
.section-head.with-action{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.section-title{
  font-size:clamp(28px,4.4vw,48px);
  line-height:1.12;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:-.01em;
  margin-top:14px;
}
body.lang-ar .section-title{ text-transform:none; letter-spacing:0; font-weight:800; }
.section-sub{
  margin-top:16px; max-width:620px;
  color:var(--muted); font-size:16px; line-height:1.8;
}

.accent{ color:var(--yellow); }
.accent-red{ color:var(--red); }

/* Buttons */
.btn{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 34px;
  font-size:14px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  border-radius:2px;
  cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s, color .35s, border-color .35s;
  white-space:nowrap;
  isolation:isolate;
  font-family:var(--f-en-head);
}
body.lang-ar .btn{ font-family:var(--f-ar); text-transform:none; font-weight:700; letter-spacing:0; }
.btn-primary{ background:var(--yellow); color:#0A0A0C; }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:var(--shadow-yellow); }
.btn-outline{ background:transparent; color:var(--white); border:1px solid var(--border-strong); backdrop-filter:blur(6px); }
.btn-outline:hover{ border-color:var(--yellow); color:var(--yellow); transform:translateY(-3px); }
.btn-dark{ background:#0A0A0C; color:var(--yellow); }
.btn-dark:hover{ transform:translateY(-3px); box-shadow:0 8px 30px -6px rgba(0,0,0,.5); }
.btn-sm{ padding:12px 22px; font-size:12px; }
.btn-whatsapp{ background:#25D366; color:#08130c; }
.btn-whatsapp:hover{ transform:translateY(-3px); box-shadow:0 8px 30px -6px rgba(37,211,102,.45); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position:fixed; inset-inline:0; top:0; z-index:100;
  padding:20px 0;
  transition:padding .4s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease);
  border-bottom:1px solid transparent;
}
.site-header::before{
  content:''; position:absolute; inset:0; z-index:-1;
  background:rgba(10,10,12,.55);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  opacity:0; transition:opacity .4s var(--ease);
}
.site-header.scrolled{ padding:12px 0; border-color:var(--border); }
.site-header.scrolled::before{ opacity:1; }
/* inner pages start with a solid header immediately (no transparent hero behind it) */
.site-header.solid::before{ opacity:1; }
.site-header.solid{ border-color:var(--border); }

.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }

.logo{ display:flex; flex-direction:column; line-height:1; gap:4px; }
/* logo-mark.png is the client's logo cut out of its studio background, so it
   drops straight onto the dark UI — no blend trick, no square photo edge. */
.logo-mark{ height:50px; width:auto; display:block; }
.logo-mark-footer{ height:70px; margin-bottom:8px; }
@media (max-width:640px){
  .logo-mark{ height:42px; }
  .logo-mark-footer{ height:58px; }
  /* the header CTA is repeated inside the mobile menu and by the floating
     WhatsApp button, so on phones it makes way for the full-size logo */
  .site-header .nav-right > .btn{ display:none; }
  .nav-inner{ gap:12px; }
}
.logo-word{
  font-family:var(--f-en-head); font-size:24px; font-weight:700; letter-spacing:.06em;
  display:flex; gap:8px; text-transform:uppercase;
}
.logo-word span:first-child{ color:var(--white); }
.logo-word span:last-child{ color:var(--yellow); }

.nav-links{ display:flex; align-items:center; gap:38px; }
.nav-link{
  position:relative; font-size:13.5px; font-weight:600; letter-spacing:.03em;
  color:var(--white); padding:6px 0; text-transform:uppercase;
  font-family:var(--f-en-head);
}
body.lang-ar .nav-link{ font-family:var(--f-ar); text-transform:none; font-weight:700; letter-spacing:0; font-size:15px;}
.nav-link::after{
  content:''; position:absolute; bottom:0; inset-inline-start:0; height:2px; width:0;
  background:var(--yellow); transition:width .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after{ width:100%; }
.nav-link:hover{ color:var(--yellow); }

.nav-right{ display:flex; align-items:center; gap:16px; }

.lang-switch{
  display:flex; align-items:center; background:var(--surface); border:1px solid var(--border);
  border-radius:999px; padding:3px; gap:2px; position:relative;
}
.lang-switch button{
  position:relative; z-index:1; padding:7px 14px; font-size:12px; font-weight:700;
  letter-spacing:.05em; border-radius:999px; color:var(--muted); transition:color .3s;
  font-family:var(--f-en-head);
}
.lang-switch button.is-active{ color:#0A0A0C; }
.lang-switch-thumb{
  position:absolute; top:3px; bottom:3px; width:calc(50% - 3px);
  background:var(--yellow); border-radius:999px; transition:transform .35s var(--ease);
  inset-inline-start:3px;
}
.lang-switch[data-lang="en"] .lang-switch-thumb{ transform:translateX(0); }
html[dir="ltr"] .lang-switch[data-lang="ar"] .lang-switch-thumb{ transform:translateX(100%); }
html[dir="rtl"] .lang-switch[data-lang="ar"] .lang-switch-thumb{ transform:translateX(-100%); }

.burger{
  display:none; width:44px; height:44px; border:1px solid var(--border-strong); border-radius:2px;
  align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.burger span{ display:block; width:20px; height:2px; background:var(--white); transition:transform .3s, opacity .3s; }
.burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0; z-index:90;
  background:rgba(8,8,10,.98);
  backdrop-filter:blur(10px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:34px;
  opacity:0; visibility:hidden; transform:translateY(-14px);
  transition:opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.mobile-menu.is-open{ opacity:1; visibility:visible; transform:translateY(0); }
.mobile-menu .nav-link{ font-size:22px; }
.mobile-menu .nav-right{ margin-top:10px; flex-direction:column; gap:22px; }

/* ============================================================
   HERO (home page)
   ============================================================ */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  overflow:hidden; padding-top:100px; padding-bottom:170px;
}
.hero-media{ position:absolute; inset:0; z-index:0; background:#000; }
.hero-media video, .hero-media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:.62;
}
.hero-media::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.35) 0%, rgba(10,10,12,.55) 45%, var(--bg) 96%),
    linear-gradient(90deg, rgba(10,10,12,.92) 0%, rgba(10,10,12,.35) 48%, rgba(10,10,12,.75) 100%);
}
.hero-content{ position:relative; z-index:2; max-width:760px; }

/* the centre's name leads the homepage, in the logo's own two colours */
.hero-brand{
  display:flex; flex-direction:column; gap:6px; margin-bottom:20px; line-height:1.14;
  text-shadow:0 6px 30px rgba(0,0,0,.6);
}
.hero-brand .brand-ar{
  font-family:var(--f-ar); font-weight:900;
  font-size:clamp(46px,9vw,96px); letter-spacing:-.01em;
}
.hero-brand .brand-en{
  font-family:var(--f-en-head); font-weight:700; text-transform:none;
  font-size:clamp(20px,3.4vw,36px); letter-spacing:.2em;
}
.brand-red{ color:var(--red); }
.brand-yellow{ color:var(--yellow); }

.hero-title{ font-size:clamp(26px,4.2vw,44px); line-height:1.04; font-weight:700; text-transform:uppercase; letter-spacing:-.01em; }
body.lang-ar .hero-title{ text-transform:none; font-weight:900; letter-spacing:-.005em; }
.hero-title .line{ display:block; }
.hero-title .line.accent{ color:var(--yellow); }

.hero-sub{ margin-top:28px; font-size:17px; line-height:1.85; color:#D6D6DC; max-width:560px; }
.hero-actions{ margin-top:42px; display:flex; flex-wrap:wrap; gap:16px; }

.hero-marquee{
  position:absolute; bottom:0; inset-inline:0; z-index:2;
  border-top:1px solid var(--border);
  background:rgba(10,10,12,.55); backdrop-filter:blur(10px);
  padding:16px 0; overflow:hidden;
  white-space:nowrap;
}
.hero-marquee-track{ display:inline-flex; gap:48px; animation:marquee 26s linear infinite; }
.hero-marquee-track span{
  font-family:var(--f-en-head); font-size:13px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--muted); display:inline-flex; align-items:center; gap:48px; font-weight:500;
}
.hero-marquee-track span b{ color:var(--yellow); font-weight:600; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
html[dir="rtl"] .hero-marquee-track{ animation-direction:reverse; }

.scroll-cue{
  position:absolute; bottom:90px; inset-inline-end:40px; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:var(--muted); font-size:11px; letter-spacing:.2em; text-transform:uppercase;
  writing-mode:vertical-rl;
}
.scroll-cue .line{ width:1px; height:50px; background:linear-gradient(var(--yellow), transparent); animation:pulseline 2s ease-in-out infinite; }
@keyframes pulseline{ 0%,100%{ opacity:.3;} 50%{ opacity:1;} }
@media (max-width:900px){ .scroll-cue{ display:none; } }

/* ============================================================
   PAGE BANNER (inner pages: services / gallery / location)
   ============================================================ */
.page-banner{
  position:relative; padding:168px 0 76px; overflow:hidden;
  background:var(--bg-alt); border-bottom:1px solid var(--border);
}
.page-banner-media{ position:absolute; inset:0; z-index:0; }
.page-banner-media video, .page-banner-media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.24;
}
.page-banner-media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,10,12,.45) 0%, var(--bg-alt) 92%);
}
.page-banner .container{ position:relative; z-index:2; }
.breadcrumb{
  display:flex; align-items:center; gap:8px; font-size:12.5px; color:var(--muted-2);
  margin-bottom:20px; font-family:var(--f-en-head); letter-spacing:.03em; text-transform:uppercase;
}
body.lang-ar .breadcrumb{ font-family:var(--f-ar); text-transform:none; letter-spacing:0; font-size:13.5px; }
.breadcrumb a{ color:var(--muted); transition:color .3s; }
.breadcrumb a:hover{ color:var(--yellow); }
.breadcrumb svg{ width:11px; height:11px; color:var(--muted-2); }
html[dir="rtl"] .breadcrumb svg{ transform:scaleX(-1); }
.page-banner h1{
  font-size:clamp(34px,5.6vw,60px); font-weight:700; line-height:1.08;
  text-transform:uppercase; letter-spacing:-.01em; max-width:760px;
}
body.lang-ar .page-banner h1{ text-transform:none; font-weight:900; letter-spacing:0; }
.page-banner p{ margin-top:18px; max-width:560px; color:var(--muted); font-size:16px; line-height:1.85; }

/* ============================================================
   USP STRIP
   ============================================================ */
.usp{
  position:relative; background:var(--bg-alt);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:0;
}
.usp-grid{ display:grid; grid-template-columns:repeat(3,1fr); }
.usp-item{
  padding:44px 36px; display:flex; align-items:flex-start; gap:20px;
  border-inline-start:1px solid var(--border); position:relative; overflow:hidden;
}
.usp-item:first-child{ border-inline-start:none; }
.usp-item::before{
  content:''; position:absolute; inset:0; background:radial-gradient(circle at 30% 0%, var(--yellow-dim), transparent 60%);
  opacity:0; transition:opacity .4s;
}
.usp-item:hover::before{ opacity:1; }
.usp-icon{
  flex-shrink:0; width:52px; height:52px; border-radius:2px; border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; color:var(--yellow); background:var(--surface);
}
.usp-icon svg{ width:24px; height:24px; }
.usp-num{ font-family:var(--f-en-head); font-size:11px; color:var(--muted-2); letter-spacing:.15em; margin-bottom:6px; display:block; }
.usp-title{ font-size:17px; font-weight:700; margin-bottom:6px; }
.usp-text{ font-size:13.5px; color:var(--muted); line-height:1.7; }

@media (max-width:860px){
  .usp-grid{ grid-template-columns:1fr; }
  .usp-item{ border-inline-start:none; border-top:1px solid var(--border); }
  .usp-item:first-child{ border-top:none; }
}

/* ============================================================
   SECTION shell
   ============================================================ */
section{ position:relative; padding:120px 0; }
.section-alt{ background:var(--bg-alt); }

.view-all-wrap{ display:flex; justify-content:center; margin-top:48px; }

/* ============================================================
   BEFORE / AFTER  (real client footage, قبل ↔ بعد)
   ============================================================ */
.ba-wrap{ display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:center; }

.ba-showcase{ display:flex; flex-direction:column; align-items:center; gap:18px; }
.ba-video{
  position:relative; width:100%; max-width:390px; aspect-ratio:9/16;
  border-radius:4px; overflow:hidden; border:1px solid var(--border-strong);
  box-shadow:0 30px 80px -30px rgba(0,0,0,.7); background:#0d0d10;
}
.ba-video video{ width:100%; height:100%; object-fit:contain; display:block; background:#0d0d10; }

/* live "which half am I watching" marker */
.ba-stage{
  position:absolute; top:14px; inset-inline-start:14px; z-index:3; pointer-events:none;
  padding:7px 16px; border-radius:2px; font-size:12px; font-weight:700; letter-spacing:.06em;
  background:rgba(10,10,12,.72); backdrop-filter:blur(6px);
  border:1px solid var(--border-strong); color:#B8B8BF;
  transition:color .25s ease, border-color .25s ease;
}
.ba-stage.is-after{ color:var(--yellow); border-color:rgba(255,199,0,.45); }

.ba-info h3{ font-size:clamp(24px,3vw,34px); font-weight:800; margin-bottom:18px; line-height:1.2; }
.ba-info p{ color:var(--muted); font-size:15.5px; line-height:1.85; margin-bottom:28px; max-width:480px; }
.ba-points{ display:flex; flex-direction:column; gap:14px; }
.ba-point{ display:flex; align-items:center; gap:12px; font-size:14.5px; }
.ba-point svg{ width:20px; height:20px; color:var(--yellow); flex-shrink:0; }

@media (max-width:900px){
  .ba-wrap{ grid-template-columns:1fr; gap:44px; }
  .ba-info{ order:2; }
  .ba-video{ max-width:320px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.filters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:48px; }
.filter-btn{
  padding:10px 20px; border:1px solid var(--border-strong); border-radius:999px;
  font-size:12.5px; font-weight:600; letter-spacing:.03em; text-transform:uppercase;
  color:var(--muted); transition:all .3s var(--ease); font-family:var(--f-en-head);
}
body.lang-ar .filter-btn{ font-family:var(--f-ar); text-transform:none; font-weight:700; }
.filter-btn:hover{ color:var(--white); border-color:var(--white); }
.filter-btn.is-active{ background:var(--yellow); border-color:var(--yellow); color:#0A0A0C; }

.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--border); border:1px solid var(--border); }
.service-card{
  background:var(--bg); position:relative; overflow:hidden;
  transition:transform .5s var(--ease); display:flex; flex-direction:column;
}
.service-card.is-hidden{ display:none; }
.service-media{
  position:relative; aspect-ratio:16/10; overflow:hidden;
  background:linear-gradient(135deg,#1a1a1f,#0d0d10);
}
.service-media .media-fallback{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.06); z-index:0;
}
.service-media .media-fallback svg{ width:96px; height:96px; }
.service-media video, .service-media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1;
  transition:transform .7s var(--ease), opacity .4s;
}
.service-card:hover .service-media video, .service-card:hover .service-media img{ transform:scale(1.08); }
.service-media::after{ content:''; position:absolute; inset:0; z-index:2; background:linear-gradient(180deg, transparent 40%, rgba(10,10,12,.88) 100%); }
.service-index{
  position:absolute; top:16px; inset-inline-start:16px; z-index:3;
  font-family:var(--f-en-head); font-size:13px; color:var(--yellow); font-weight:700; letter-spacing:.05em;
}
.service-badge{
  position:absolute; bottom:16px; inset-inline-start:16px; z-index:3;
  width:44px; height:44px; border-radius:2px; background:rgba(255,199,0,.12);
  border:1px solid rgba(255,199,0,.35); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; color:var(--yellow);
}
.service-badge svg{ width:22px; height:22px; }
.service-play{
  position:absolute; inset:0; z-index:3; display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .35s;
}
.service-card:hover .service-play{ opacity:1; }
/* touch screens have no hover: keep the play badge visible so the card reads
   as tappable, and show the tap target on the media area */
.service-media{ cursor:pointer; }
@media (hover:none){
  .service-play{ opacity:1; }
}
.service-play span{
  width:56px; height:56px; border-radius:50%; border:1px solid rgba(255,255,255,.5);
  display:flex; align-items:center; justify-content:center; backdrop-filter:blur(4px);
  background:rgba(10,10,12,.3);
}
.service-play svg{ width:18px; height:18px; color:#fff; }

.service-body{ padding:30px 30px 34px; flex:1; display:flex; flex-direction:column; }
.service-title{ font-size:19px; font-weight:800; margin-bottom:10px; line-height:1.3; }
.service-text{ font-size:14px; color:var(--muted); line-height:1.8; flex:1; }
.service-note{
  display:flex; align-items:center; gap:10px; margin-top:18px; padding:11px 14px;
  background:var(--yellow-dim); border:1px solid rgba(255,199,0,.3); border-radius:2px;
  font-size:12.5px; color:var(--yellow); font-weight:600; line-height:1.55;
}
.service-note svg{ width:17px; height:17px; flex-shrink:0; }
.service-more{
  margin-top:22px; display:inline-flex; align-items:center; gap:8px; font-size:12.5px;
  font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--white);
  font-family:var(--f-en-head); width:fit-content; padding-bottom:2px; border-bottom:1px solid var(--border-strong);
  transition:color .3s, border-color .3s, gap .3s;
}
body.lang-ar .service-more{ font-family:var(--f-ar); text-transform:none; font-weight:700; }
.service-more svg{ width:14px; height:14px; transition:transform .3s; }
html[dir="rtl"] .service-more svg{ transform:scaleX(-1); }
.service-more:hover{ color:var(--yellow); border-color:var(--yellow); gap:12px; }

@media (max-width:980px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .services-grid{ grid-template-columns:1fr; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.gallery-item{
  position:relative; aspect-ratio:9/14; border-radius:3px; overflow:hidden; cursor:pointer;
  background:linear-gradient(135deg,#1a1a1f,#0d0d10); border:1px solid var(--border);
}
.gallery-item video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.gallery-item::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 55%, rgba(10,10,12,.92) 100%); pointer-events:none; }
.gallery-caption{ position:absolute; bottom:16px; inset-inline-start:16px; inset-inline-end:16px; z-index:2; }
.gallery-caption .g-cat{ font-family:var(--f-en-head); font-size:10px; letter-spacing:.15em; text-transform:uppercase; color:var(--yellow); font-weight:700; }
body.lang-ar .gallery-caption .g-cat{ font-family:var(--f-ar); letter-spacing:0; }
.gallery-caption .g-title{ font-size:14px; font-weight:700; margin-top:4px; }
.gallery-play{
  position:absolute; top:16px; inset-inline-end:16px; z-index:2; width:36px; height:36px; border-radius:50%;
  background:rgba(255,199,0,.9); display:flex; align-items:center; justify-content:center; color:#0A0A0C;
  transition:transform .3s var(--ease);
}
.gallery-play svg{ width:13px; height:13px; }
.gallery-item:hover .gallery-play{ transform:scale(1.15); }
.gallery-item:hover video{ animation:none; }

/* removal-method tiles: these clips carry their own burned-in subtitles along
   the bottom, so the tile label and the scrim are flipped to the top */
.gallery-grid.is-methods .gallery-item::after{ background:linear-gradient(0deg, transparent 55%, rgba(10,10,12,.94) 100%); }
.gallery-grid.is-methods .gallery-caption{ top:16px; bottom:auto; inset-inline-end:60px; }
.gallery-grid.is-methods .gallery-play{ top:auto; bottom:16px; }

@media (max-width:980px){ .gallery-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:640px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); gap:10px; } }

/* video modal */
.video-modal{
  position:fixed; inset:0; z-index:200; background:rgba(5,5,6,.94); backdrop-filter:blur(10px);
  display:flex; align-items:center; justify-content:center; padding:40px;
  opacity:0; visibility:hidden; transition:opacity .35s, visibility .35s;
}
.video-modal.is-open{ opacity:1; visibility:visible; }
.video-modal-inner{ position:relative; width:100%; max-width:520px; aspect-ratio:9/16; background:#000; border-radius:6px; overflow:hidden; border:1px solid var(--border-strong); }
.video-modal-inner video{ width:100%; height:100%; object-fit:contain; background:#000; }
.video-modal-close{
  position:absolute; top:-50px; inset-inline-end:0; width:38px; height:38px; border:1px solid var(--border-strong);
  border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff;
}
.video-modal-close svg{ width:16px; height:16px; }

/* ============================================================
   LOCATION
   ============================================================ */
.location-banner{
  position:relative; border-radius:4px; overflow:hidden; border:1px solid var(--border-strong);
  display:grid; grid-template-columns:1fr 1fr; min-height:420px;
}
.location-info{ padding:64px 56px; display:flex; flex-direction:column; justify-content:center; position:relative; z-index:2; background:var(--bg-alt); }
.location-info h3{ font-size:clamp(24px,3vw,36px); font-weight:800; margin:16px 0 18px; line-height:1.25; }
.location-info p{ color:var(--muted); font-size:15px; line-height:1.85; margin-bottom:30px; max-width:420px; }
.location-addr{ display:flex; align-items:flex-start; gap:12px; margin-bottom:34px; }
.location-addr svg{ width:20px; height:20px; color:var(--yellow); flex-shrink:0; margin-top:2px; }
.location-addr span{ font-size:14.5px; color:#D6D6DC; line-height:1.7; }

.location-map{ position:relative; background:#0d0d10; overflow:hidden; }
.location-map iframe{
  position:absolute; inset:0; width:100%; height:100%; border:0;
  filter:invert(94%) hue-rotate(180deg) contrast(88%) brightness(94%) saturate(120%);
}
.location-map::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  box-shadow:inset 0 0 60px 10px rgba(10,10,12,.55);
  border-inline-start:1px solid var(--border-strong);
}
.location-map-tag{
  position:absolute; bottom:16px; inset-inline-start:16px; z-index:2; pointer-events:none;
  display:flex; align-items:center; gap:8px; padding:9px 16px;
  background:rgba(10,10,12,.75); backdrop-filter:blur(6px); border:1px solid var(--border-strong);
  border-radius:999px; font-size:11.5px; font-weight:600; letter-spacing:.05em; color:var(--yellow);
}
.location-map-tag svg{ width:14px; height:14px; }

@media (max-width:900px){
  .location-banner{ grid-template-columns:1fr; }
  .location-info{ padding:48px 28px; }
  .location-map{ min-height:280px; }
}

/* location page extras: hours + contact cards */
.info-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--border); border:1px solid var(--border); margin-top:60px; }
.info-card{ background:var(--bg); padding:34px 30px; }
.info-card-icon{
  width:46px; height:46px; border-radius:2px; background:var(--yellow-dim); border:1px solid rgba(255,199,0,.3);
  display:flex; align-items:center; justify-content:center; color:var(--yellow); margin-bottom:20px;
}
.info-card-icon svg{ width:22px; height:22px; }
.info-card h4{ font-size:16px; font-weight:800; margin-bottom:10px; }
.info-card p, .info-card a{ font-size:14px; color:var(--muted); line-height:1.8; }
.info-card a:hover{ color:var(--yellow); }
.hours-row{ display:flex; justify-content:space-between; font-size:13.5px; color:var(--muted); padding:6px 0; border-bottom:1px solid var(--border); }
.hours-row:last-child{ border-bottom:0; }
.hours-row span:last-child{ color:var(--white); font-weight:600; }
@media (max-width:900px){ .info-cards{ grid-template-columns:1fr; } }

/* ============================================================
   CTA BANNER (reusable mid-page call to action)
   ============================================================ */
.cta-banner{
  position:relative; background:var(--yellow); color:#0A0A0C; border-radius:4px; overflow:hidden;
  padding:60px 56px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-banner-text h3{ font-size:clamp(22px,3vw,32px); font-weight:800; max-width:520px; line-height:1.25; }
.cta-banner-text p{ margin-top:10px; font-size:14.5px; opacity:.72; max-width:460px; }
.cta-banner-actions{ display:flex; gap:14px; flex-wrap:wrap; }
@media (max-width:700px){ .cta-banner{ padding:40px 28px; flex-direction:column; align-items:flex-start; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--bg-alt); border-top:1px solid var(--border); padding-top:90px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:50px; padding-bottom:70px; }
.footer-brand p{ color:var(--muted); font-size:14px; line-height:1.85; margin:20px 0 26px; max-width:320px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:38px; height:38px; border:1px solid var(--border-strong); border-radius:2px;
  display:flex; align-items:center; justify-content:center; transition:all .3s;
}
.footer-social a svg{ width:16px; height:16px; }
.footer-social a:hover{ background:var(--yellow); border-color:var(--yellow); color:#0A0A0C; }
.footer-col h4{ font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:var(--white); margin-bottom:22px; font-family:var(--f-en-head); font-weight:600; }
body.lang-ar .footer-col h4{ font-family:var(--f-ar); letter-spacing:0; font-weight:800; }
.footer-col ul{ display:flex; flex-direction:column; gap:13px; }
.footer-col a, .footer-col span{ font-size:14px; color:var(--muted); transition:color .3s; }
.footer-col li a:hover{ color:var(--yellow); }
.footer-contact li{ display:flex; align-items:flex-start; gap:10px; }
.footer-contact svg{ width:16px; height:16px; color:var(--yellow); flex-shrink:0; margin-top:3px; }
.footer-bottom{
  border-top:1px solid var(--border); padding:26px 0; display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px; font-size:12.5px; color:var(--muted-2);
}
.footer-bottom a{ color:var(--muted-2); }
.footer-bottom a:hover{ color:var(--yellow); }

@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; gap:36px; } }

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.fab-stack{ position:fixed; bottom:26px; right:26px; z-index:80; display:flex; flex-direction:column; gap:14px; }
.fab{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.45); position:relative;
}
.fab svg{ width:24px; height:24px; }
.fab-whatsapp{ background:#25D366; color:#07130c; }
.fab-call{ background:var(--yellow); color:#0A0A0C; }
.fab::before{
  content:''; position:absolute; inset:0; border-radius:50%; border:2px solid currentColor; opacity:.5;
  animation:fabpulse 2.2s ease-out infinite;
}
.fab-call::before{ animation-delay:1.1s; }
@keyframes fabpulse{ 0%{ transform:scale(1); opacity:.5;} 100%{ transform:scale(1.6); opacity:0;} }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-delay-1.in-view{ transition-delay:.1s; }
.reveal-delay-2.in-view{ transition-delay:.2s; }
.reveal-delay-3.in-view{ transition-delay:.3s; }

/* ============================================================
   RESPONSIVE — nav / layout
   ============================================================ */
@media (max-width:980px){
  .nav-links{ display:none; }
  .burger{ display:flex; }
  .hero{ padding-top:96px; padding-bottom:150px; }
}
@media (max-width:768px){
  section{ padding:80px 0; }
  .hero-actions .btn{ flex:1; }
  .page-banner{ padding-top:140px; }
}
@media (max-width:480px){
  .container{ padding-inline:18px; }
  .hero-title{ font-size:clamp(22px,6vw,30px); }
  .hero-brand .brand-ar{ font-size:clamp(40px,11vw,56px); }
  .hero-brand .brand-en{ font-size:clamp(17px,4.6vw,24px); letter-spacing:.1em; }
}

/* ============================================================
   RED ACCENTS — red touches site-wide (client request, expanded)
   Yellow stays the primary brand colour (buttons, headline,
   language switch); red is the secondary accent pulled from the
   Auto Gloss logo mark — used on headings, icons, hover states,
   play buttons and interactive lines.
   ============================================================ */
:root{ --red-dim:rgba(230,57,70,.14); }

/* red underline beneath section + page-banner headings */
.section-title::after,
.page-banner h1::after{
  content:''; display:block; width:64px; height:4px; margin-top:20px;
  background:var(--red); border-radius:2px;
}

/* index numbers picked out in red */
.service-index{ color:var(--red); }
.usp-num{ color:var(--red); }

/* red top edge on the footer */
.footer{ border-top:2px solid var(--red); }

/* red accent bar down the start edge of the yellow CTA banner */
.cta-banner::before{
  content:''; position:absolute; inset-block:0; inset-inline-start:0; width:6px;
  background:var(--red); z-index:1;
}

/* accent icons in red */
.usp-icon{ color:var(--red); border-color:rgba(230,57,70,.4); }
.info-card-icon{ color:var(--red); background:var(--red-dim); border-color:rgba(230,57,70,.3); }
.location-addr svg,
.footer-contact svg,
.ba-point svg{ color:var(--red); }

/* service card badge switched to a red tint */
.service-badge{ background:var(--red-dim); border-color:rgba(230,57,70,.4); color:var(--red); }

/* video play buttons in red */
.gallery-play{ background:var(--red); color:var(--white); }

/* red hover states */
.nav-link::after{ background:var(--red); }
.nav-link:hover{ color:var(--red); }
.btn-outline:hover{ border-color:var(--red); color:var(--red); }
.filter-btn:hover{ color:var(--white); border-color:var(--red); }
.service-more:hover{ color:var(--red); border-color:var(--red); }
.footer-col li a:hover,
.breadcrumb a:hover,
.footer-bottom a:hover,
.info-card a:hover{ color:var(--red); }

/* smaller touches */
.eyebrow::before{ background:linear-gradient(90deg, var(--yellow), var(--red)); }
.hero-marquee-track span b{ color:var(--red); }
.scroll-cue .line{ background:linear-gradient(var(--red), transparent); }
html[dir="rtl"] .breadcrumb svg,
.breadcrumb svg{ color:var(--red); }
.footer-social a:hover{ background:var(--red); border-color:var(--red); color:var(--white); }
.fab-call::before{ border-color:var(--red); }
.section-alt .cta-banner::before{ background:var(--red); }
::-webkit-scrollbar-thumb:hover{ background:var(--red); }
