/* ============================================================================
   Plan One — Overrides (styles-v2.css + WP-specific tweaks)
   This file MUST load AFTER pages.css to mirror prototype load order.
   ============================================================================ */

/* styles-v2.css — Brand-forward light design
   Bright blue + turquoise from the logo, no dark surfaces.
   Asymmetric bento layout, color-blocking, geometric chrome. */


html, body {
  background: var(--bg);
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--ink);
  font-size: 15.5px;
}

/* ── NAV: white with thin colored progress bar at top ── */
.nav::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand) 50%, var(--accent) 50%, var(--accent) 100%);
}
.nav-link:hover { background: var(--brand-50); color: var(--brand); }
.nav-link.active { background: var(--brand); color: white; }
.nav-link.active:hover { background: var(--brand-600); color: white; }


/* nav-actions sizing handled in master rules at end of file */
.nav-social {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none;
}
.nav-social:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
  transform: translateY(-1px);
}

/* ── Home works preview ── */
.works-prev-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.work-prev {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.work-prev:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -22px rgba(15,23,42,.22);
  border-color: var(--brand-100);
}
.work-prev-cover {
  position: relative;
  aspect-ratio: 5/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.work-prev-deco { position: absolute; inset: 0; }
.work-prev-mark {
  position: relative;
  z-index: 1;
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: white;
  letter-spacing: .02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.work-prev-meta {
  position: absolute;
  z-index: 2;
  top: 12px;
  inset-inline-start: 12px;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: white;
}
.work-prev-meta > span:first-child {
  background: rgba(0,0,0,.32);
  padding: 3px 8px;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}
.work-prev-sector {
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 5px;
}
.work-prev-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.work-prev-client {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.work-prev-title {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.work-prev-services {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.work-prev-svc {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--line-soft);
  color: var(--ink-700);
}
.work-prev-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  font-size: 11.5px;
}
.work-prev-loc { color: var(--muted); }
.work-prev-metric { color: var(--brand); font-weight: 700; }
@media (max-width: 1100px) {
  .works-prev-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .works-prev-grid { grid-template-columns: 1fr; }
}

/* ── Services page redesign — uniform clean cards ── */
.svc-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-pro {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.svc-pro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.svc-pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -22px rgba(15,23,42,.18);
  border-color: var(--brand-100);
}
.svc-pro:hover::before { transform: scaleX(1); transform-origin: left; }
.svc-pro-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .12em;
}
.svc-pro-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-pro-icon svg { width: 32px; height: 32px; }
.svc-pro-title {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.svc-pro-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-700);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(14.5px * 1.75 * 3);
}
.svc-pro-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
}
@media (max-width: 1000px) {
  .svc-grid-pro { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-grid-pro { grid-template-columns: 1fr; }
}

/* ── BUTTONS ── */
.btn { font-weight: 600; }
.btn-primary { background: var(--brand); }
.btn-primary:hover { background: var(--brand-600); }
.btn-brand { background: var(--accent); color: var(--ink); }
.btn-brand:hover { background: var(--accent-600); color: white; }

/* ── HERO: split-screen, blue + turquoise color blocks, NO dark ── */
.hero {
  background: var(--bg);
  color: var(--ink);
  padding: 64px 0 0;
  position: relative;
  overflow: visible;
}
.hero::before { display: none; }
.hero::after { display: none; }
.hero-inner {
  display: grid !important;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: stretch;
  padding-bottom: 80px;
}
.hero-text { padding: 32px 0; }
.hero .section-eyebrow { color: var(--brand); }
.hero .section-eyebrow::before { background: var(--accent); }

.hero h1 {
  color: var(--ink);
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 6.4vw, 100px);
  line-height: .94;
  letter-spacing: -0.04em;
  margin: 18px 0 28px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 900;
  display: inline-block;
  position: relative;
  color: var(--brand);
}
.hero h1 em::after {
  content: '';
  position: absolute;
  inset: auto -6px -2px -6px;
  height: 18px;
  background: var(--accent);
  z-index: -1;
  border-radius: 4px;
  opacity: .7;
}

.hero p.lead {
  color: var(--ink-500);
  font-size: 19px;
  font-weight: 400;
  max-width: 52ch;
  line-height: 1.6;
}
.hero .btn-primary { background: var(--brand); color: white; }
.hero .btn-primary:hover { background: var(--brand-600); }
.hero .btn-ghost {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
.hero .btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.hero-stats {
  margin-top: 48px;
  border-top: 0;
  padding-top: 0;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-stats > div {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}
.hero-stats > div:last-child { border-right: 0; }
.hero-stat-num {
  color: var(--brand) !important;
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
}
.hero-stat-lbl { color: var(--ink-500); font-weight: 500; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }

/* HERO VISUAL — tilted brand color block w/ floating elements */
.hero-visual {
  background: var(--brand);
  border-radius: 28px;
  border: 0;
  box-shadow: 0 30px 80px -20px rgba(30, 64, 215, .35);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
/* When .hero-visual also has .hero-visual-receipt, undo the blue card styles */
.hero-visual.hero-visual-receipt {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.hero-visual.hero-visual-receipt::before,
.hero-visual.hero-visual-receipt::after {
  display: none !important;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 100%, var(--accent) 0%, transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .15) 0%, transparent 50%);
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .25;
}
.hero-mini-map {
  filter: brightness(1.5) contrast(.9);
  opacity: .5;
}
.hero-mini-map svg path { stroke: rgba(255, 255, 255, .35) !important; }
.hero-mini-map svg circle { filter: drop-shadow(0 0 8px rgba(255, 255, 255, .6)); }
.hero-floater {
  background: white;
  backdrop-filter: blur(20px);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, .35);
  font-weight: 600;
}

/* ── TRUST STRIP — turquoise band ── */
.trust-strip {
  background: var(--accent);
  border: 0;
  border-radius: 0;
  margin-top: 0;
  padding: 40px 56px;
  box-shadow: none;
  position: relative;
  z-index: 2;
}
.trust-item-num { color: var(--ink); font-weight: 800; font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif; }
.trust-item-lbl { color: rgba(42, 53, 89, .75); font-weight: 500; }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-eyebrow {
  color: var(--brand);
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head-text h2 {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 68px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.section-head-text p { color: var(--ink-500); font-size: 18px; font-weight: 400; }

/* HOW IT WORKS — bento with alternating brand colors */
.steps {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px;
}
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step:nth-child(1) { background: var(--brand); border-color: transparent; color: white; }
.step:nth-child(1) h3, .step:nth-child(1) .step-num { color: white; }
.step:nth-child(1) p { color: rgba(255, 255, 255, .8); }
.step:nth-child(2) { background: var(--accent); border-color: transparent; }
.step:nth-child(2) h3, .step:nth-child(2) .step-num { color: var(--ink); }
.step:nth-child(2) p { color: rgba(42, 53, 89, .8); }
.step:nth-child(3) { background: var(--cream); border-color: transparent; }
.step:nth-child(4) { background: white; }

.step-num {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--brand);
  margin: 0;
  letter-spacing: -0.04em;
  opacity: .9;
}
.step:nth-child(2) .step-num { color: var(--brand); }
.step:nth-child(3) .step-num { color: var(--brand); }
.step-icon { display: none; }
.step h3 {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.step p { font-size: 14.5px; color: var(--ink-500); margin: 0; line-height: 1.6; }

/* ── CARDS — soft white w/ accent stripe on hover ── */
.bb-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.bb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.bb-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-100);
}
.bb-card:hover::before { transform: scaleX(1); transform-origin: left; }
.bb-card-body { padding: 18px 20px 20px; gap: 12px; }
.bb-card-head .chip-brand { background: var(--brand-50); color: var(--brand); }
.bb-code {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  color: var(--accent-600);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.bb-card-title {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  min-height: 46px;
}
.bb-card-foot { border-top-color: var(--line-soft); padding-top: 14px; }
.bb-price-num {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--brand);
  letter-spacing: -0.02em;
}

/* ── CTA banner: turquoise+blue diagonal split ── */
.cta-banner {
  background: var(--brand);
  border-radius: 28px;
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 110%, var(--accent) 0%, transparent 45%),
    radial-gradient(circle at -10% -10%, rgba(255, 255, 255, .12) 0%, transparent 50%);
}
.cta-banner h2 {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: white;
}
.cta-banner p { color: rgba(255, 255, 255, .85); font-weight: 400; font-size: 17px; }
.cta-banner .btn-primary { background: white; color: var(--brand); }
.cta-banner .btn-primary:hover { background: var(--cream); }
.cta-banner .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
  color: white;
}
.cta-banner .btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: white; }

/* ── FOOTER — light, brand stripe ── */
.footer {
  background: white;
  color: var(--ink-500);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--brand) 50%, var(--accent) 50%) 1;
  margin-top: 0;
}
.footer-col h4 { color: var(--ink); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.footer-col a { color: var(--ink-500); font-size: 14px; font-weight: 500; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { color: var(--muted); border-color: var(--line-soft); }
.footer-col p { color: var(--ink-500) !important; }

/* ── BROWSE — bright workspace ── */
.browse-filters { background: white; border-left: 1px solid var(--line); }
.filter-group-title { color: var(--brand); letter-spacing: .12em; font-weight: 700; font-size: 11px; }
.filter-item.active { background: var(--brand); color: white; }
.filter-item.active .filter-item-count { background: var(--accent); color: var(--ink); }

.browse-toolbar { background: white; border-bottom: 1px solid var(--line); }
.browse-search input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-50); }
.view-toggle button.active { background: var(--brand); }

.browse-map-wrap {
  margin: 24px 32px 0;
  border-radius: 22px;
  border: 1px solid var(--line);
  height: 480px;
  background: var(--cream);
}
.browse-results-bar h2 {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* ── DETAIL ── */
.detail-title {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}
.detail-section h3 {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.spec { border-radius: 14px; }
.spec-lbl { font-weight: 700; letter-spacing: .1em; color: var(--brand); }
.spec-val { font-weight: 800; font-size: 22px; color: var(--ink); }

.cal-cell.selected {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}
.cal-cell.selected .cal-month-name, .cal-cell.selected .cal-year, .cal-cell.selected .cal-status { color: white !important; }
.cal-cell.selected > div[style*="background"] { background: var(--accent) !important; color: var(--ink) !important; }

/* booking sidebar */
.book-side {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: white;
}
.book-price-num {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--brand);
  letter-spacing: -0.03em;
}
.book-summary { background: var(--brand-50); border-radius: 14px; }
.book-summary-total {
  font-weight: 900;
  font-size: 22px;
  color: var(--brand);
}

/* checkout */
.step-pill.active { background: var(--brand); color: white; }
.step-pill.done { background: var(--accent); color: var(--ink); }
.pay-option.selected { border-color: var(--brand); background: var(--brand-50); }

/* confirm */
.confirm h1 {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -0.03em;
}
.confirm-check { background: var(--accent); color: var(--ink); box-shadow: 0 0 0 14px var(--accent-50); }

/* ============================================================================
   WordPress / Theme-specific additions
   ============================================================================ */

/* Skip link */
.skip-link {
  position: absolute; top: -100px; right: 16px;
  background: var(--ink); color: white;
  padding: 8px 16px; border-radius: 8px; z-index: 999;
}
.skip-link:focus { top: 16px; }

/* Screen reader text */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px; overflow: hidden;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  animation: fadeUp .3s ease both;
}
.toast-success { background: var(--ok); }
.toast-error { background: var(--danger); }

/* Admin bar adjustment */
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav { top: 46px; } }

/* WP entry-content */
.entry-content > *:not(:last-child) { margin-bottom: 24px; }
.entry-content h2 { font-size: 28px; margin-top: 32px; }
.entry-content h3 { font-size: 22px; margin-top: 24px; }
.entry-content p { line-height: 1.8; }
.entry-content ul, .entry-content ol { padding-right: 24px; line-height: 1.8; }
.entry-content blockquote {
  border-right: 4px solid var(--brand);
  padding: 12px 20px;
  background: var(--brand-50);
  border-radius: 8px;
  margin: 16px 0;
  color: var(--ink-700);
}

/* Aligncenter etc */
.alignwide { max-width: var(--container); margin-left: auto; margin-right: auto; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.wp-caption-text { font-size: 13px; color: var(--muted); margin-top: 6px; }


/* ─── Detail modal body padding ─── */
.detail-modal-body {
	padding: 32px;
}
@media (max-width: 768px) {
	.detail-modal-body { padding: 20px; }
}

/* Make sure billboard card visual area has overflow hidden + cursor */
.bb-card .bb-visual { overflow: hidden; }

/* Force chip remove button cursor */
.js-month-chips .chip { transition: all .15s; }
.js-month-chips .chip:hover { background: var(--brand) !important; color: white !important; }


/* ============================================================================
   Plan One v2 — Booking Receipt Hero (from design handoff bundle)
   ============================================================================ */
.hero-visual-receipt {
	aspect-ratio: 4/5;
	position: relative;
	background: transparent;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-visual-receipt::before {
	content: '';
	position: absolute;
	inset: 8% -10% 8% -10%;
	background:
		radial-gradient(40% 60% at 30% 30%, rgba(30, 64, 215, .14) 0%, transparent 70%),
		radial-gradient(40% 50% at 80% 80%, rgba(31, 207, 192, .18) 0%, transparent 70%);
	z-index: 0;
	pointer-events: none;
}
.receipt {
	position: relative;
	width: 92%;
	max-width: 460px;
	background: #fff;
	box-shadow:
		0 1px 0 rgba(15,27,64,.04),
		0 30px 80px -20px rgba(15, 27, 64, .25),
		0 8px 20px -8px rgba(15, 27, 64, .15);
	transform: rotate(-1.5deg);
	z-index: 2;
	font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
}
.receipt-edge {
	height: 14px;
	background: radial-gradient(circle at 7px 14px, transparent 7px, #fff 7.5px) repeat-x;
	background-size: 14px 14px;
}
.receipt-edge-top {
	background: radial-gradient(circle at 7px 0, transparent 7px, #fff 7.5px) repeat-x;
	background-size: 14px 14px;
}
.receipt-edge-bot {
	background: radial-gradient(circle at 7px 14px, transparent 7px, #fff 7.5px) repeat-x;
	background-size: 14px 14px;
}
.receipt-body { padding: 26px 28px 28px; }

.receipt-mast { text-align: center; margin-bottom: 14px; }
.receipt-brand {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 6px;
	color: #0A1B40;
}
.receipt-meta-line {
	margin-top: 6px;
	display: flex; justify-content: center; gap: 10px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 10px;
	letter-spacing: 1.5px;
	color: #6B7591;
	text-transform: uppercase;
}
.receipt-dot { color: #1FCFC0; }

.receipt-rule {
	height: 1px;
	background: #0A1B40;
	opacity: .12;
	margin: 14px 0;
}
.receipt-rule-dotted {
	height: 0;
	border-top: 1px dashed rgba(15, 27, 64, .25);
	background: none;
}

.receipt-row {
	display: flex; justify-content: space-between; align-items: flex-start;
	gap: 16px;
}
.receipt-key {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 9px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #6B7591;
	margin-bottom: 4px;
}
.receipt-val {
	font-weight: 700;
	font-size: 14px;
	color: #0A1B40;
}

.receipt-illus {
	height: 130px;
	margin: 8px 0 4px;
	background: linear-gradient(180deg, rgba(30, 64, 215, .04), rgba(31, 207, 192, .04));
	border-radius: 4px;
	padding: 8px;
}

.receipt-items { display: flex; flex-direction: column; gap: 12px; }
.receipt-item {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	gap: 12px;
	align-items: center;
}
.receipt-item-mark {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	font-weight: 700;
	color: #1E40D7;
	letter-spacing: 1px;
}
.receipt-item-title { font-weight: 700; font-size: 13px; color: #0A1B40; line-height: 1.3; }
.receipt-item-sub  { font-size: 11px; color: #6B7591; margin-top: 2px; }
.receipt-item-price {
	font-weight: 800;
	font-size: 14px;
	color: #0A1B40;
	white-space: nowrap;
}
.receipt-item-price span {
	font-size: 10px;
	font-weight: 600;
	color: #6B7591;
	margin-right: 4px;
}

.receipt-total {
	display: flex; justify-content: space-between; align-items: baseline;
	margin: 4px 0 18px;
}
.receipt-total-key {
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 700;
	color: #0A1B40;
	text-transform: uppercase;
	font-family: 'IBM Plex Mono', monospace;
}
.receipt-total-val {
	font-weight: 800;
	font-size: 24px;
	color: #0A1B40;
	letter-spacing: -.01em;
}
.receipt-total-val span {
	font-size: 12px;
	font-weight: 600;
	color: #6B7591;
	margin-right: 6px;
}

.receipt-foot {
	display: flex; justify-content: space-between; align-items: center;
	gap: 14px;
	padding-top: 6px;
}
.receipt-stamp {
	display: inline-flex; flex-direction: column; align-items: center;
	border: 2px solid #1FCFC0;
	color: #0EA89B;
	padding: 5px 12px;
	border-radius: 6px;
	transform: rotate(-8deg);
	font-family: 'IBM Plex Mono', monospace;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 2.5px;
	line-height: 1;
}
.receipt-stamp-sub {
	font-family: 'IBM Plex Sans Arabic', sans-serif;
	font-size: 8px;
	letter-spacing: 1px;
	margin-top: 3px;
	opacity: .7;
}

.receipt-bars { display: flex; align-items: end; gap: 1px; height: 28px; }
.receipt-bars span {
	display: inline-block;
	width: 2px;
	height: 100%;
	background: #0A1B40;
}

.receipt-tagline {
	margin-top: 14px;
	text-align: center;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 9px;
	letter-spacing: 2px;
	color: #6B7591;
	text-transform: uppercase;
}

.receipt-live-pill {
	position: absolute;
	top: 4%;
	left: 6%;
	z-index: 4;
	background: #0A1B40;
	color: #fff;
	border-radius: 999px;
	padding: 9px 16px;
	display: inline-flex; align-items: center; gap: 9px;
	font-size: 11px;
	font-weight: 600;
	box-shadow: 0 12px 30px -8px rgba(15, 27, 64, .35);
	transform: rotate(-2deg);
}
.receipt-live-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #1FCFC0;
	box-shadow: 0 0 0 4px rgba(31, 207, 192, .25);
	animation: rcp-pulse 1.6s ease-in-out infinite;
}
@keyframes rcp-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(31, 207, 192, .35); }
	50%      { box-shadow: 0 0 0 6px rgba(31, 207, 192, 0); }
}

.receipt-side-card {
	position: absolute;
	bottom: 6%;
	right: -2%;
	z-index: 3;
	background: #1E40D7;
	color: #fff;
	border-radius: 14px;
	padding: 16px 18px;
	width: 158px;
	box-shadow: 0 24px 50px -16px rgba(30, 64, 215, .55);
	transform: rotate(4deg);
}
.receipt-side-key {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 9px;
	letter-spacing: 1.5px;
	opacity: .75;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.receipt-side-val {
	font-weight: 800;
	font-size: 28px;
	letter-spacing: -.01em;
	line-height: 1;
}
.receipt-side-bars {
	display: flex; align-items: end; gap: 4px;
	height: 30px;
	margin-top: 12px;
}
.receipt-side-bars span {
	flex: 1;
	background: #1FCFC0;
	border-radius: 2px;
	display: block;
}

/* Mobile responsive */
@media (max-width: 968px) {
	.hero-visual-receipt {
		aspect-ratio: auto;
		min-height: 600px;
		margin-top: 24px;
	}
	.receipt { width: 88%; max-width: 380px; transform: rotate(-1deg); }
	.receipt-side-card {
		right: 0;
		bottom: 2%;
		width: 130px;
	}
}

/* ============================================================================
   Cart Pill (Header) — icon-only with teal background
   ============================================================================ */
.cart-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 999px;
	text-decoration: none;
	color: var(--ink, #2A3559);
	font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
	font-size: 13px;
	font-weight: 600;
	box-shadow: none;
	transition: all .2s cubic-bezier(.4, 0, .2, 1);
	position: relative;
	white-space: nowrap;
}

.cart-pill:hover {
	transform: translateY(-1px);
}

.cart-pill-active {
	background: transparent;
	border: 0;
}

/* Icon wrapper — matches nav-social style */
.cart-pill-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: #fff;
	color: var(--ink-700, #3C4670);
	position: relative;
	flex-shrink: 0;
	border: 1px solid var(--line);
	box-shadow: none;
	transition: transform .2s cubic-bezier(.4, 0, .2, 1), color .2s, background .2s, border-color .2s;
	overflow: visible;
}

.cart-pill-empty .cart-pill-icon-wrap {
	background: #fff;
	color: var(--ink-700, #3C4670);
}

.cart-pill:hover .cart-pill-icon-wrap {
	transform: translateY(-2px);
	color: var(--brand, #1E40D7);
	background: #fff;
	border-color: var(--brand, #1E40D7);
	box-shadow: none;
}

.cart-pill-icon {
	transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}
.cart-pill:hover .cart-pill-icon {
	transform: scale(1.08);
}

.cart-pill-badge {
	position: absolute;
	top: -4px;
	left: -4px;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	background: #1E40D7;
	color: #fff;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2.5px solid #fff;
	line-height: 1;
	box-shadow: 0 4px 10px rgba(30, 64, 215, .35);
	animation: cart-badge-pop .4s cubic-bezier(.34, 1.56, .64, 1);
	z-index: 2;
}

@keyframes cart-badge-pop {
	0%   { transform: scale(0); }
	60%  { transform: scale(1.15); }
	100% { transform: scale(1); }
}

/* Meta: label + total — only shown when cart has items */
.cart-pill-meta {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1px;
	line-height: 1.1;
	padding: 0 2px;
}

/* Hide meta entirely when cart is empty */
.cart-pill-empty .cart-pill-meta {
	display: none;
}

.cart-pill-label {
	font-size: 10px;
	color: var(--muted, #8089A8);
	font-weight: 600;
	letter-spacing: .04em;
}

.cart-pill-total {
	font-size: 13px;
	font-weight: 800;
	color: var(--ink, #2A3559);
	letter-spacing: -.01em;
	font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
}

.cart-pill-empty-hint {
	display: none;
}

/* Mobile: hide meta, show only icon pill */
@media (max-width: 640px) {
	.cart-pill {
		padding: 5px;
		gap: 0;
	}
	.cart-pill-meta { display: none; }
	.cart-pill-icon-wrap {
		width: 42px;
		height: 42px;
	}
}

/* Hide old cart-btn fallback */

/* ============================================================================
   MASTER HEADER RULES — Clean nav layout (must override main.css + earlier rules)
   ============================================================================ */

/* Nav container */

/* Grid layout: 3 equal columns to truly center the menu in viewport
   Column 1: logo (justify-self: start = right in RTL)
   Column 2: menu (justify-self: center = absolute center of page)
   Column 3: actions (justify-self: end = left in RTL) */

/* Logo: stick to start (right in RTL) */

/* Menu — placed in middle column, naturally centered */
/* Actions: stick to end (left in RTL) */

/* ── Browse Billboards CTA button ── */


/* Hide nav-toggle on desktop */

/* ── Tablet: hide CTA text, keep icon ── */
@media (max-width: 1024px) {
}

/* ── Mobile: hide menu, show toggle ── */
@media (max-width: 968px) {
	.cart-pill-meta { display: none !important; }
	.cart-pill {
		padding: 4px !important;
		gap: 0 !important;
	}
}

/* Very small screens: hide social icons (moved to customizer) */



/* ============================================================================
   Works Page — تصميم نظيف ومحترف
   ============================================================================ */

/* Stats inline */
.po-works-stats {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	padding-top: 28px;
	margin-top: 28px;
	border-top: 1px solid var(--line-soft, #EFF1F7);
}
.po-works-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.po-works-stat-num {
	font-family: 'IBM Plex Mono', 'Cairo', monospace;
	font-size: 30px;
	font-weight: 800;
	color: var(--brand, #1E40D7);
	line-height: 1;
	letter-spacing: -1px;
}
.po-works-stat-lbl {
	font-size: 13px;
	color: var(--muted, #6B7387);
	font-weight: 600;
}

/* Visual side (floating cards) */
.po-works-visual {
	position: relative;
	width: 100%;
	max-width: 440px;
	height: 440px;
	margin-inline-start: auto;
}
.po-works-visual-card {
	position: absolute;
	width: 280px;
	height: 160px;
	border-radius: 16px;
	color: #fff;
	padding: 22px 24px;
	box-shadow: 0 20px 40px -16px rgba(15, 23, 42, .22);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform .35s cubic-bezier(.4, 0, .2, 1);
	overflow: hidden;
}
.po-works-visual-card::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -10%;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 60%);
	pointer-events: none;
}
.po-works-visual-card-1 {
	top: 0;
	right: 60px;
	transform: rotate(-5deg);
	z-index: 1;
}
.po-works-visual-card-2 {
	top: 130px;
	right: 0;
	transform: rotate(3deg);
	z-index: 2;
}
.po-works-visual-card-3 {
	top: 260px;
	right: 40px;
	transform: rotate(-2deg);
	z-index: 3;
}
.po-works-visual-card:hover {
	transform: translateY(-4px) rotate(0deg) !important;
}
.po-works-visual-year {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, .8);
	font-weight: 600;
}
.po-works-visual-title {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	line-height: 1.3;
	margin-top: auto;
}
.po-works-visual-stat {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, .92);
	margin-top: 4px;
}

/* Filter pills */
.po-works-filter {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.po-works-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	background: #fff;
	border: 1.5px solid var(--line, #E5E9F2);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink-700, #1F2937);
	cursor: pointer;
	font-family: inherit;
	transition: all .15s;
}
.po-works-filter-btn:hover {
	border-color: var(--brand, #1E40D7);
	color: var(--brand, #1E40D7);
}
.po-works-filter-btn.active {
	background: var(--brand, #1E40D7);
	border-color: var(--brand, #1E40D7);
	color: #fff;
	box-shadow: 0 2px 8px -2px rgba(30, 64, 215, .35);
}
.po-works-filter-count {
	display: inline-block;
	min-width: 22px;
	padding: 2px 8px;
	background: rgba(255, 255, 255, .25);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
}
.po-works-filter-btn:not(.active) .po-works-filter-count {
	background: var(--tint, #F8FAFC);
	color: var(--muted, #6B7387);
}

/* Works grid */
.po-works-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 22px;
}

/* Work card */
.po-work-card {
	background: #fff;
	border: 1px solid var(--line, #E5E9F2);
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: all .25s cubic-bezier(.4, 0, .2, 1);
	display: flex;
	flex-direction: column;
}
.po-work-card:hover {
	border-color: var(--brand, #1E40D7);
	transform: translateY(-4px);
	box-shadow: 0 16px 32px -12px rgba(15, 23, 42, .15);
}
.po-work-card-image {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--tint, #F8FAFC);
}
.po-work-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}
.po-work-card:hover .po-work-card-image img {
	transform: scale(1.05);
}
.po-work-card-mark {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'IBM Plex Sans Arabic', sans-serif;
	font-size: 80px;
	font-weight: 900;
	color: rgba(255, 255, 255, .4);
	letter-spacing: -3px;
}
.po-work-card-type-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(255, 255, 255, .95);
	color: var(--ink, #0F172A);
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.po-work-card-body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.po-work-card-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink, #0F172A);
	line-height: 1.4;
	margin: 0;
}
.po-work-card-meta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 12px;
	color: var(--muted, #6B7387);
}
.po-work-card-meta > span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.po-work-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	color: var(--brand, #1E40D7);
	font-size: 13px;
	font-weight: 700;
	padding-top: 8px;
	border-top: 1px dashed var(--line-soft, #EFF1F7);
}
.po-work-card:hover .po-work-card-cta svg {
	transform: translateX(-3px);
}
.po-work-card-cta svg {
	transition: transform .2s;
}

/* Responsive */
@media (max-width: 900px) {
	.po-works-visual {
		display: none;
	}
	.po-works-stats {
		gap: 24px;
	}
	.po-works-stat-num {
		font-size: 26px;
	}
}
@media (max-width: 640px) {
	.po-works-grid {
		grid-template-columns: 1fr;
	}
	.po-works-stats {
		gap: 18px;
	}
	.po-works-filter {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
	}
	.po-works-filter-btn {
		flex-shrink: 0;
	}
}



/* ── CTA Banner: container padding-bottom ── */
.container:has(> .cta-banner) {
	padding-bottom: 76px !important;
}
/* Fallback for browsers without :has() — apply to direct cta-banner section wrapper */
section.container > .cta-banner {
	margin-bottom: 0;
}

/* ─── Service preview cards: head with icon + num ─── */
.svc-prev-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 4px;
}
.svc-prev-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--brand-50);
	color: var(--brand);
	flex-shrink: 0;
	transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
.svc-prev-icon svg {
	width: 26px;
	height: 26px;
}
.svc-prev:hover .svc-prev-icon {
	background: var(--brand);
	color: #fff;
	transform: rotate(-6deg) scale(1.05);
}
.svc-prev-head .svc-prev-num {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 13px;
	font-weight: 700;
	color: var(--muted);
	background: transparent;
	margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   SINGLE WORK PAGE — Professional layout
   ════════════════════════════════════════════════════════════════════════ */
.single-work-page { padding-bottom: 60px; }

.single-work-breadcrumb {
	display: flex;
	align-items: center;
}
.single-work-breadcrumb a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink-700);
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--line-soft, #F5F7FA);
	transition: all .2s;
}
.single-work-breadcrumb a:hover {
	background: var(--brand-50);
	color: var(--brand);
}

.single-work-hero {
	padding-top: 28px;
	padding-bottom: 32px;
}
.single-work-title {
	font-size: 52px;
	font-weight: 800;
	color: var(--ink, #0A1B40);
	line-height: 1.1;
	letter-spacing: -.025em;
	margin: 12px 0 18px;
}
.single-work-lead {
	font-size: 18px;
	line-height: 1.65;
	color: var(--ink-500, #5A6584);
	max-width: 720px;
	margin-bottom: 32px;
}

.single-work-meta-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	padding: 22px 24px;
	background: var(--surface, #fff);
	border: 1px solid var(--line);
	border-radius: 18px;
}
.single-work-meta-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.single-work-meta-item svg {
	flex-shrink: 0;
	color: var(--brand);
	margin-top: 2px;
}
.single-work-meta-lbl {
	font-size: 12px;
	color: var(--muted, #8089A8);
	margin-bottom: 2px;
	font-weight: 600;
	letter-spacing: .02em;
}
.single-work-meta-val {
	font-size: 15px;
	font-weight: 700;
	color: var(--ink, #0A1B40);
}

.single-work-cover-wrap { padding-top: 8px; padding-bottom: 32px; }
.single-work-cover {
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--brand-50);
}
.single-work-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.single-work-kpis-wrap { padding-bottom: 40px; }
.single-work-kpis {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	padding: 32px;
	background: linear-gradient(135deg, var(--brand-50), rgba(31, 207, 192, .08));
	border-radius: 20px;
}
.single-work-kpi { text-align: center; }
.single-work-kpi-val {
	font-size: 40px;
	font-weight: 800;
	color: var(--brand);
	letter-spacing: -.02em;
	line-height: 1;
	margin-bottom: 6px;
}
.single-work-kpi-lbl {
	font-size: 13px;
	color: var(--ink-700);
	font-weight: 600;
}

.single-work-content-wrap { padding-bottom: 48px; }
.single-work-content {
	font-size: 17px;
	line-height: 1.85;
	color: var(--ink, #0A1B40);
	max-width: 760px;
}
.single-work-content h2 {
	font-size: 28px;
	font-weight: 800;
	margin: 32px 0 16px;
	letter-spacing: -.01em;
}
.single-work-content h3 {
	font-size: 22px;
	font-weight: 700;
	margin: 24px 0 12px;
}
.single-work-content p { margin-bottom: 18px; }
.single-work-content img {
	border-radius: 16px;
	max-width: 100%;
	height: auto;
}

.single-work-gallery-wrap { padding-bottom: 56px; }
.single-work-section-title {
	font-size: 32px;
	font-weight: 800;
	color: var(--ink, #0A1B40);
	letter-spacing: -.02em;
	margin: 8px 0 24px;
}
.single-work-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.single-work-gallery-item {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 16px;
	background: var(--line-soft);
}
.single-work-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.single-work-gallery-item:hover img {
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.single-work-title { font-size: 32px !important; }
	.single-work-lead { font-size: 16px !important; }
	.single-work-meta-strip {
		grid-template-columns: 1fr 1fr !important;
		padding: 16px !important;
		gap: 12px !important;
	}
	.single-work-meta-val { font-size: 14px !important; }
	.single-work-cover { border-radius: 16px !important; }
	.single-work-kpis {
		grid-template-columns: 1fr 1fr !important;
		padding: 22px !important;
		gap: 16px !important;
	}
	.single-work-kpi-val { font-size: 30px !important; }
	.single-work-gallery {
		grid-template-columns: 1fr 1fr !important;
		gap: 10px !important;
	}
	.single-work-section-title { font-size: 24px !important; }
}

@media (max-width: 480px) {
	.single-work-meta-strip { grid-template-columns: 1fr !important; }
	.single-work-gallery { grid-template-columns: 1fr !important; }
}

/* ─── Contact service pills (multi-select) ─── */
.interest-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.interest-pill {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	position: relative;
	cursor: pointer;
	user-select: none;
}
.interest-pill-check {
	width: 14px;
	height: 14px;
	opacity: 0;
	transform: scale(.4);
	transition: opacity .2s, transform .2s cubic-bezier(.34, 1.56, .64, 1);
	flex-shrink: 0;
}
.interest-pill.active .interest-pill-check {
	opacity: 1;
	transform: scale(1);
}

/* ════════════════════════════════════════════════════════════════════════
   ABOUT STATS — Premium cards matching site design
   ════════════════════════════════════════════════════════════════════════ */
.about-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.about-stat-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 26px 22px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	transition: transform .3s cubic-bezier(.4, 0, .2, 1), border-color .3s, box-shadow .3s;
	position: relative;
	overflow: hidden;
}
.about-stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 50%;
	background: linear-gradient(225deg, rgba(31, 207, 192, .12), transparent 70%);
	pointer-events: none;
}
.about-stat-card:hover {
	transform: translateY(-4px);
	border-color: rgba(30, 64, 215, .25);
	box-shadow: 0 16px 32px -16px rgba(15, 27, 64, .18);
}
.about-stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--brand), var(--brand-600, #1734B5));
	color: #fff;
	margin-bottom: 6px;
	box-shadow: 0 8px 20px -6px rgba(30, 64, 215, .4);
	position: relative;
	z-index: 1;
}
.about-stat-num {
	font-size: 40px;
	font-weight: 800;
	color: var(--ink, #0A1B40);
	letter-spacing: -.02em;
	line-height: 1;
	font-family: 'IBM Plex Sans Arabic', sans-serif;
	position: relative;
	z-index: 1;
}
.about-stat-lbl {
	font-size: 14px;
	color: var(--ink-500, #5A6584);
	font-weight: 600;
	position: relative;
	z-index: 1;
}

@media (max-width: 968px) {
	.about-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
	.about-stat-num { font-size: 32px; }
	.about-stat-card { padding: 20px 18px; }
}

/* ════════════════════════════════════════════════════════════════════════
   CONTACT — Thank you state & error message
   ════════════════════════════════════════════════════════════════════════ */
.contact-thanks {
	text-align: center;
	padding: 48px 24px 32px;
	animation: thanksFadeIn .5s cubic-bezier(.4, 0, .2, 1);
}
@keyframes thanksFadeIn {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}
.contact-thanks-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 999px;
	background: linear-gradient(135deg, #1FCFC0, #17A8A0);
	color: #fff;
	margin-bottom: 22px;
	box-shadow: 0 16px 40px -10px rgba(31, 207, 192, .55);
	animation: thanksIconPop .55s cubic-bezier(.34, 1.56, .64, 1) .1s both;
}
@keyframes thanksIconPop {
	from { transform: scale(0); }
	60%  { transform: scale(1.1); }
	to   { transform: scale(1); }
}
.contact-thanks-title {
	font-size: 36px;
	font-weight: 800;
	color: var(--ink, #0A1B40);
	letter-spacing: -.02em;
	margin: 0 0 14px;
	line-height: 1.15;
}
.contact-thanks-lead {
	font-size: 17px;
	line-height: 1.7;
	color: var(--ink-500, #5A6584);
	max-width: 540px;
	margin: 0 auto 28px;
}
.contact-thanks-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.contact-thanks-channels {
	padding-top: 24px;
	border-top: 1px solid var(--line-soft, #F0F2F5);
}
.contact-thanks-or {
	font-size: 13px;
	color: var(--muted, #8089A8);
	margin-bottom: 12px;
}
.contact-thanks-channels-row {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}
.contact-thanks-channels-row a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--brand, #1E40D7);
	text-decoration: none;
	transition: opacity .2s;
}
.contact-thanks-channels-row a:hover {
	opacity: .75;
}

.contact-error {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	margin-bottom: 18px;
	background: #FEF2F2;
	border: 1px solid #FCA5A5;
	border-radius: 12px;
	color: #B91C1C;
	font-size: 14px;
	font-weight: 600;
}

@media (max-width: 768px) {
	.contact-thanks { padding: 32px 18px 24px; }
	.contact-thanks-icon { width: 72px; height: 72px; }
	.contact-thanks-title { font-size: 28px; }
	.contact-thanks-lead { font-size: 15px; }
	.contact-thanks-actions .btn { flex: 1 1 100%; }
}
