/* =====================================================================
   Adiga Fire & Safety — stylesheet
   Design system: deep navy (trust) + fire red (action) on clean white.
   ===================================================================== */

:root {
  --navy:        #0b1f3a;
  --navy-800:    #0f2747;
  --navy-700:    #173357;
  --red:         #e11d2a;
  --red-600:     #c2161f;
  --ink:         #0c1a2b;
  --body:        #46566a;
  --muted:       #6b7b8f;
  --line:        #e6ebf1;
  --bg:          #ffffff;
  --bg-alt:      #f4f7fb;
  --white:       #ffffff;
  --ok:          #16a34a;
  --wa:          #25d366;

  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 10px 30px -12px rgba(11,31,58,.18);
  --shadow-lg:   0 24px 60px -18px rgba(11,31,58,.28);
  --maxw:        1160px;
  --ease:        cubic-bezier(.22,.61,.36,1);

  --font:        'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display:     'Plus Jakarta Sans', var(--font);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.15; letter-spacing: -.02em; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.hide-sm { display: inline-flex; }

/* svg icon defaults (stroke style) */
.ic { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ic--ok { stroke: var(--ok); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); display: inline-block; box-shadow: 0 0 0 4px rgba(225,29,42,.15); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px -8px rgba(225,29,42,.6); }
.btn--primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(225,29,42,.65); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--whatsapp { background: var(--wa); color: #073e26; }
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(37,211,102,.7); }
.btn--whatsapp .ic { fill: #073e26; stroke: none; width: 20px; height: 20px; }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- top utility bar ---------- */
.topbar { background: var(--navy); color: #c8d4e3; font-size: .85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar__left { display: flex; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: #c8d4e3; transition: color .2s; }
.topbar__item:hover { color: #fff; }
.topbar .ic { width: 15px; height: 15px; stroke: var(--red); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line);
  transition: box-shadow .25s, background .25s;
}
.header.scrolled { box-shadow: 0 6px 24px -14px rgba(11,31,58,.35); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark svg { width: 38px; height: 38px; border-radius: 9px; }
.brand__text { font-family: var(--display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.03em; color: var(--navy); }
.brand__text span { color: var(--red); }
.brand--light .brand__text { color: #fff; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--ink);
  padding: 9px 14px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--red); background: var(--bg-alt); }
.nav__cta { margin-left: 10px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--display);
  font-weight: 700; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  color: #cdd9ea; margin-bottom: 18px;
}
.eyebrow--dark { color: var(--navy); }
.eyebrow--dark .dot, .eyebrow .dot { background: var(--red); }

.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--navy); color: #c8d4e3; }
.section__head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
.section__title--light { color: #fff; }
.section__lead { margin-top: 14px; font-size: 1.08rem; color: var(--muted); }
.section--dark .section__lead { color: #9fb0c6; }

/* ---------- grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--products { grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; color: #eaf1fb; overflow: hidden; background: var(--navy); }
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,23,44,.97) 0%, rgba(9,27,50,.9) 34%, rgba(9,27,50,.55) 64%, rgba(9,25,48,.72) 100%),
    radial-gradient(800px 460px at 82% -10%, rgba(225,29,42,.22), transparent 60%),
    url('assets/hero.jpg');
  background-size: cover;
  background-position: center right;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .4;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px;
  align-items: center; padding: 86px 0 96px;
}
.hero__title { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; color: #fff; letter-spacing: -.03em; }
.hero__title .hl { color: var(--red); }
.hero__sub { margin-top: 20px; font-size: 1.12rem; color: #b9c7dc; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 34px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: #d6e0ef; }

/* hero shield card */
.hero__card { display: flex; justify-content: center; }
.shieldcard {
  width: 100%; max-width: 380px; background: rgba(255,255,255,.06); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: 34px 30px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.shieldcard__icon svg { width: 92px; height: 92px; margin: 0 auto 16px; }
.shieldcard h3 { color: #fff; font-size: 1.35rem; }
.shieldcard p { color: #b9c7dc; margin-top: 8px; font-size: .96rem; }
.shieldcard__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 26px; }
.shieldcard__stats div { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 6px; }
.shieldcard__stats strong { display: block; font-family: var(--display); font-size: 1.4rem; color: var(--red); }
.shieldcard__stats span { font-size: .72rem; color: #aab9cf; line-height: 1.3; display: block; margin-top: 2px; }

/* =====================================================================
   LOGOS BAR
   ===================================================================== */
.logos { padding: 40px 0; border-bottom: 1px solid var(--line); }
.logos__label { text-align: center; color: var(--muted); font-size: .9rem; font-weight: 600; margin-bottom: 22px; }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; align-items: center; }
.logo-ph {
  font-family: var(--display); font-weight: 800; letter-spacing: .02em; color: #aeb9c8;
  border: 1.5px dashed var(--line); border-radius: 10px; padding: 12px 22px; font-size: .95rem;
}

/* =====================================================================
   CARDS / SERVICES
   ===================================================================== */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.service { padding: 30px 26px; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d9e2ec; }
.service__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, #fde8e9, #fff); border: 1px solid #f6d4d6;
}
.service__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { font-size: 1.18rem; margin-bottom: 8px; }
.service p { font-size: .96rem; color: var(--muted); }

/* =====================================================================
   PRODUCTS
   ===================================================================== */
.prod {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 16px; font-family: var(--display); font-weight: 700; color: var(--ink); font-size: .98rem;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s, color .2s;
}
.prod:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #f3c9cc; color: var(--red); }
.prod__ic { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-alt); transition: background .2s; }
.prod:hover .prod__ic { background: #fde8e9; }
.prod__ic svg { width: 26px; height: 26px; fill: none; stroke: var(--navy); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.prod:hover .prod__ic svg { stroke: var(--red); }
.products__note { text-align: center; margin-top: 36px; color: var(--muted); font-size: 1rem; }
.products__note a { color: var(--red); font-weight: 700; }

/* =====================================================================
   WHY US
   ===================================================================== */
.why__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.checklist { display: grid; gap: 18px; margin-top: 26px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .ic { flex-shrink: 0; margin-top: 3px; width: 22px; height: 22px; }
.checklist strong { display: block; color: var(--ink); font-family: var(--display); font-size: 1.02rem; }
.checklist span { color: var(--muted); font-size: .95rem; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px 24px; text-align: center;
  background-image: radial-gradient(400px 200px at 100% 0%, rgba(225,29,42,.25), transparent 70%);
}
.stat strong { display: block; font-family: var(--display); font-size: 2.3rem; font-weight: 800; }
.stat span { color: #aab9cf; font-size: .9rem; }

/* =====================================================================
   PROCESS
   ===================================================================== */
.steps .step { padding: 8px 4px; }
.step__n { font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: rgba(225,29,42,.85); display: block; line-height: 1; }
.step h3 { color: #fff; font-size: 1.18rem; margin: 14px 0 8px; }
.step p { color: #9fb0c6; font-size: .95rem; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery__item {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background-color: #0b1f3a; background-size: cover; background-position: center;
  display: flex; align-items: flex-end; border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery__item:nth-child(1) { background-image: url('assets/project1.jpg'); }
.gallery__item:nth-child(2) { background-image: url('assets/project2.jpg'); }
.gallery__item:nth-child(3) { background-image: url('assets/project3.jpg'); }
.gallery__item:nth-child(4) { background-image: url('assets/project4.jpg'); }
.gallery__item:nth-child(5) { background-image: url('assets/project5.jpg'); }
.gallery__item:nth-child(6) { background-image: url('assets/project6.jpg'); }
.gallery__item figcaption {
  position: relative; z-index: 1; width: 100%; padding: 14px 16px; color: #fff; font-size: .9rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(11,31,58,.85));
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quote { padding: 28px 26px; }
.quote .stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 12px; }
.quote p { color: var(--ink); font-size: 1.02rem; }
.quote footer { margin-top: 18px; }
.quote footer strong { display: block; color: var(--ink); font-family: var(--display); }
.quote footer span { color: var(--muted); font-size: .9rem; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.ctaband { background: linear-gradient(135deg, var(--red), #a30f17); color: #fff; padding: 56px 0; }
.ctaband__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.ctaband h2 { color: #fff; font-size: clamp(1.5rem,3vw,2rem); }
.ctaband p { color: rgba(255,255,255,.9); margin-top: 6px; }
.ctaband__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ctaband .btn--primary { background: #fff; color: var(--red); }
.ctaband .btn--primary:hover { background: #fff; color: var(--red-600); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__list { display: grid; gap: 18px; margin-top: 28px; }
.contact__list li { display: flex; gap: 14px; align-items: center; }
.contact__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-alt); display: grid; place-items: center; flex-shrink: 0; }
.contact__ic svg { width: 22px; height: 22px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact__list strong { display: block; color: var(--ink); font-family: var(--display); font-size: .95rem; }
.contact__list a, .contact__list span { color: var(--muted); }
.contact__list a:hover { color: var(--red); }

/* form */
.form { padding: 30px 28px; display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 7px; font-family: var(--display); font-weight: 600; font-size: .88rem; color: var(--ink); }
.form input, .form select, .form textarea {
  font-family: var(--font); font-size: .95rem; color: var(--ink); padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,29,42,.12); }
.form input.err, .form textarea.err { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,29,42,.12); }
.form__hint { font-size: .82rem; color: var(--muted); font-family: var(--font); font-weight: 400; }
.form__hint a { color: var(--red); font-weight: 600; }
.form__hint.success { color: var(--ok); font-weight: 600; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--navy); color: #9fb0c6; padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer__about { margin-top: 16px; font-size: .92rem; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col h4.mt { margin-top: 22px; }
.footer__col a { display: block; color: #9fb0c6; padding: 5px 0; font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__areas { font-size: .9rem; line-height: 1.8; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.soc { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s; }
.soc:hover { background: var(--red); }
.soc svg { width: 20px; height: 20px; fill: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .85rem; }
.footer__badges { color: #fff; font-weight: 600; }

/* =====================================================================
   FLOATING WHATSAPP
   ===================================================================== */
.fab {
  position: fixed; left: 22px; right: auto; bottom: 22px; z-index: 90; width: 58px; height: 58px;
  border-radius: 50%; background: var(--wa); display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.7); transition: transform .2s; animation: fabPulse 2.6s infinite;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; fill: #fff; }
@keyframes fabPulse { 0%,100% { box-shadow: 0 12px 28px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.4); } 50% { box-shadow: 0 12px 28px -8px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,0); } }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--products { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 70px; }
  .hero__card { order: -1; }
  .why__grid, .contact__grid { grid-template-columns: 1fr; gap: 38px; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .hide-sm { display: none !important; }
  .nav__toggle { display: flex; }
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px 22px 26px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .3s var(--ease); height: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav__link { padding: 13px 12px; border-radius: 8px; }
  .nav__cta { margin: 8px 0 0; text-align: center; }
  .section { padding: 62px 0; }
  .grid--4, .grid--products { grid-template-columns: 1fr 1fr; }
  .grid--products { gap: 12px; }
  .form__row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .ctaband__inner { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { flex: 1; }
}

@media (max-width: 380px) {
  .grid--4, .grid--products, .stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   INTERIOR PAGES (services / locations)
   ===================================================================== */
.pagehero {
  position: relative; color: #eaf1fb; padding: 72px 0 58px;
  background-image: linear-gradient(90deg, rgba(8,23,44,.93), rgba(9,27,50,.82)), url('assets/hero.jpg');
  background-size: cover; background-position: center;
}
.breadcrumb { font-size: .85rem; color: #9fb0c6; margin-bottom: 14px; }
.breadcrumb a { color: #cdd9ea; } .breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #6f819a; }
.pagehero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 800px; }
.pagehero p { color: #c3d0e2; max-width: 700px; margin-top: 14px; font-size: 1.1rem; }
.pagehero .hero__actions { margin-top: 26px; }

.pagewrap { padding: 72px 0; }
.pagelayout { display: grid; grid-template-columns: 1.7fr .9fr; gap: 48px; align-items: start; }

.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin: 36px 0 12px; }
.prose > h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; margin: 22px 0 6px; color: var(--ink); }
.prose p { margin-bottom: 15px; color: var(--body); }
.prose a { color: var(--red); font-weight: 600; }
.ticklist { display: grid; gap: 11px; margin: 8px 0 24px; }
.ticklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--body); }
.ticklist li::before { content: "✓"; color: var(--red); font-weight: 800; flex-shrink: 0; }

.sidecard {
  position: sticky; top: 90px; background: var(--navy); color: #cdd9ea; border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-lg);
  background-image: radial-gradient(420px 220px at 100% 0%, rgba(225,29,42,.28), transparent 70%);
}
.sidecard h3 { color: #fff; font-size: 1.2rem; }
.sidecard p { font-size: .93rem; color: #aebccf; margin: 8px 0 16px; }
.sidecard .btn { width: 100%; margin-bottom: 10px; }
.side-contact { margin-top: 16px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; display: grid; gap: 9px; font-size: .9rem; }
.side-contact a, .side-contact span { color: #cdd9ea; display: flex; gap: 9px; align-items: center; }
.side-contact a:hover { color: #fff; }
.side-contact svg { width: 16px; height: 16px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.faq { margin-top: 12px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 2px 18px; margin-bottom: 12px; background: #fff; }
.faq summary { cursor: pointer; font-family: var(--display); font-weight: 700; color: var(--ink); padding: 15px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--red); font-weight: 800; font-size: 1.2rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 0 16px; margin: 0; color: var(--muted); }

.linkpills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.linkpills a {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px;
  font-size: .9rem; font-weight: 600; color: var(--ink); transition: border-color .2s, color .2s;
}
.linkpills a:hover { border-color: #f3c9cc; color: var(--red); }

.service__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--red); font-family: var(--display); font-weight: 700; font-size: .92rem; }
.service__more:hover { gap: 9px; }

@media (max-width: 880px) {
  .pagelayout { grid-template-columns: 1fr; gap: 34px; }
  .sidecard { position: static; }
}

/* Language toggle (EN <-> AR) */
.langtoggle {
  border: 1.5px solid var(--line); border-radius: 8px; font-weight: 700;
  padding: 8px 13px !important; line-height: 1;
}
.langtoggle:hover { border-color: #f3c9cc; color: var(--red); background: transparent; }

/* Placeholder sections hidden until real content is supplied (client logos & testimonials).
   Re-enable by removing this rule once real logos/reviews are added. */
.logos, #testimonials { display: none; }
