/* ============================================
   SECURETECH 2.0 — Shared Stylesheet
   Design tokens, layout, components, utilities
   Fonts: Outfit (display) + DM Sans (body)
   ============================================ */

/* ── Design Tokens ──────────────────────── */
:root {
  --black:   #080808;
  --dark:    #111111;
  --dark2:   #1a1a1a;
  --dark3:   #222222;
  --border:  rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.14);
  --orange:  #8fc726da;
  --orange2: #82b329;
  --gold:    #C9A84C;
  --white:   #ffffff;
  --grey:    #888888;
  --light:   #CCCCCC;
  --green:   #22C55E;
  --card-bg: #1a1a1a;
  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 24px 64px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Container ─────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Ticker ────────────────────────────── */
.ticker { background: var(--orange); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.ticker--sticky { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; }
.ticker__inner { display: inline-flex; gap: 0; animation: ticker 25s linear infinite; }
.ticker__inner:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker__item { display: inline-flex; align-items: center; gap: 16px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; padding: 0 32px; }
.ticker__dot { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; }

/* ── Skip Link ─────────────────────────── */
.skip-link { position: absolute; left: -9999px; z-index: 9999; padding: 8px 16px; background: var(--orange); color: #fff; font-weight: 600; border-radius: 0 0 4px 0; }
.skip-link:focus { left: 0; }

/* ── Nav ───────────────────────────────── */
.nav { position: fixed; top: 52px; left: 0; right: 0; z-index: 1000; background: rgba(154,158,143,0.541); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--border); transition: all 0.3s ease; }
.nav.scrolled { background: rgba(17,17,17,0.97); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; padding: 0 24px; max-width: 1400px; margin: 0 auto; gap: 10px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { width: 42px; height: 42px; border-radius: 8px; }
.nav__logo-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--white); letter-spacing: -0.3px; }
.nav__logo-name span { color: var(--orange); }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; flex: 1; justify-content: flex-start; min-width: 0; }
.nav__link { display: flex; align-items: center; gap: 5px; font-family: var(--font-display); font-size: 13px; font-weight: 500; color: var(--light); padding: 7px 10px; border-radius: 8px; background: none; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav__link--active { color: var(--white); background: rgba(143,199,38,0.15); font-weight: 600; }
.nav__meta { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.nav__meta-link { font-family: var(--font-display); font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 6px; letter-spacing: 0.2px; white-space: nowrap; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); transition: all 0.15s; display: flex; align-items: center; gap: 2px; }
.nav__meta-link:hover { color: var(--white); background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.15); }
.nav__meta-link--active { color: var(--white); background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.2); }
.nav__meta-link svg { width: 12px; height: 12px; }
.nav__ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__social { display: flex; align-items: center; gap: 6px; margin: 0 10px; flex-shrink: 0; }
.nav__social-link { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--grey); transition: all 0.2s; }
.nav__social-link:hover { color: #fff; transform: translateY(-2px); }
.nav__social-link[data-svg="wa"]:hover { background: #25D366; border-color: #25D366; }
.nav__social-link[data-svg="ig"]:hover { background: #E4405F; border-color: #E4405F; }
.nav__social-link[data-svg="fb"]:hover { background: #1877F2; border-color: #1877F2; }
.nav__social-link[data-svg="x"]:hover { background: #000; border-color: #000; }
.nav__social-link[data-svg="tt"]:hover { background: #EE1D52; border-color: #EE1D52; }
.nav__social-link[data-svg="li"]:hover { background: #0A66C2; border-color: #0A66C2; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav__mobile { display: none; position: fixed; inset: 122px 0 0 0; background: var(--dark); overflow-y: auto; z-index: 999; padding: 24px; }
.nav__mobile.open { display: block; }
.nav__mob-group { margin-bottom: 24px; }
.nav__mob-title { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; padding: 0 4px; }
.nav__mob-link { display: block; padding: 12px 14px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--light); transition: all 0.15s; }
.nav__mob-link:hover { background: rgba(143,199,38,0.1); color: var(--orange2); }
.nav__mob-link--active { background: rgba(143,199,38,0.15); color: var(--orange); border-left: 3px solid var(--orange); font-weight: 700; }
.nav__mob-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* ── Service Quickbar ──────────────────── */
.service-quickbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  overflow-x: auto;
  position: fixed;
  top: 122px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(17,17,17,0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  scrollbar-width: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.service-quickbar::-webkit-scrollbar { display: none; }
.service-quickbar__link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: 1.5px solid transparent;
}
.service-quickbar__link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Green accent — Security category (CCTV, biometrics, fence, gates, intercom) */
.sq--sec {
  color: var(--orange);
  background: rgba(143,199,38,0.08);
  border-color: rgba(143,199,38,0.2);
}
.sq--sec:hover {
  background: rgba(143,199,38,0.18);
  border-color: rgba(143,199,38,0.45);
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 20px rgba(143,199,38,0.25);
}
.sq--sec.service-quickbar__link--active {
  background: rgba(143,199,38,0.22);
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(143,199,38,0.35), 0 0 0 1px rgba(143,199,38,0.15);
}

/* Red accent — Fire/alarm category */
.sq--fire {
  color: #ff6b6b;
  background: rgba(230,57,70,0.08);
  border-color: rgba(230,57,70,0.2);
}
.sq--fire:hover {
  background: rgba(230,57,70,0.18);
  border-color: rgba(230,57,70,0.45);
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 20px rgba(230,57,70,0.25);
}
.sq--fire.service-quickbar__link--active {
  background: rgba(230,57,70,0.22);
  border-color: #ff6b6b;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(230,57,70,0.35);
}

/* Cyan/blue accent — IT/networking category */
.sq--it {
  color: #7ec8e3;
  background: rgba(0,180,255,0.08);
  border-color: rgba(0,180,255,0.2);
}
.sq--it:hover {
  background: rgba(0,180,255,0.18);
  border-color: rgba(0,180,255,0.45);
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 20px rgba(0,180,255,0.25);
}
.sq--it.service-quickbar__link--active {
  background: rgba(0,180,255,0.22);
  border-color: #7ec8e3;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,180,255,0.35);
}

/* Neutral — Other services */
.sq--other {
  color: var(--light);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.sq--other:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 20px rgba(255,255,255,0.08);
}
.sq--other.service-quickbar__link--active {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(255,255,255,0.12);
}

/* ── Mobile Quick-Action Bar ───────────── */
.mobile-quickbar { display: none; }

/* ── Service Hero ──────────────────────── */
.service-hero { position: relative; min-height: auto; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 168px 0 64px; }
.service-hero__bg { position: absolute; inset: 0; z-index: 0; }
.service-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 50%, rgba(143,199,38,0.06) 100%); }
.service-hero__grid { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(143,199,38,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(143,199,38,0.03) 1px, transparent 1px); background-size: 60px 60px; -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%); mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%); }
.service-hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 800px; margin: 0 auto; padding: 0 24px; width: 100%; text-align: center; gap: 20px; }
.service-hero__title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; color: var(--white); }
.service-hero__title span { color: var(--orange); }
.service-hero__subtitle { font-size: 17px; color: var(--light); line-height: 1.7; max-width: 640px; margin: 0 auto; }

/* ── Hero Gallery (4 circular images) ──── */
.hero-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; width: 100%; max-width: 420px; }
.hero-gallery__fig { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-gallery__img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; border-radius: 50%; cursor: zoom-in; transition: transform 0.2s; }
.hero-gallery__img:hover { transform: scale(1.05); }
.hero-gallery__cap { font-size: 10px; color: var(--grey); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Lightbox ──────────────────────────── */
.lb-overlay { display: none; position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); align-items: center; justify-content: center; }
.lb-overlay.open { display: flex; animation: lbIn 0.2s ease; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb-img-wrap { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: min(88vw, 1200px); max-height: 90vh; }
.lb-img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 10px; box-shadow: 0 40px 100px rgba(0,0,0,0.9); transition: opacity 0.18s ease; }
.lb-caption { text-align: center; font-family: var(--font-display); }
.lb-caption strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.lb-caption span { font-size: 13px; color: rgba(255,255,255,0.55); }
.lb-dots { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; max-width: 300px; }
.lb-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.22); cursor: pointer; transition: all 0.2s; flex-shrink: 0; border: none; padding: 0; }
.lb-dot.active { background: var(--orange); transform: scale(1.4); }
.lb-btn { position: fixed; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; backdrop-filter: blur(8px); line-height: 1; }
.lb-btn:hover { background: rgba(143,199,38,0.25); border-color: var(--orange); color: var(--orange); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-close { position: fixed; top: 16px; right: 16px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; backdrop-filter: blur(8px); }
.lb-close:hover { background: rgba(239,68,68,0.25); border-color: #ef4444; color: #ef4444; }
.lb-counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.45); background: rgba(0,0,0,0.5); padding: 5px 14px; border-radius: 20px; backdrop-filter: blur(8px); white-space: nowrap; }

/* ── Section Layout ────────────────────── */
.section { padding: 96px 0; }
.section--alt { background: var(--dark); }
.section--dark2 { background: var(--dark2); }
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }
.section-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 18px; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 17px; color: var(--light); line-height: 1.7; max-width: 560px; }

/* ── Buttons ───────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; border-radius: var(--radius); cursor: pointer; border: none; transition: all 0.25s ease; white-space: nowrap; }
.btn--primary { background: var(--orange); color: var(--white); padding: 15px 28px; font-size: 15px; box-shadow: 0 8px 32px rgba(143,199,38,0.35); }
.btn--primary:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(143,199,38,0.5); }
.btn--secondary { background: transparent; color: var(--white); padding: 14px 27px; font-size: 15px; border: 1.5px solid rgba(255,255,255,0.25); }
.btn--secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--white); border: 1px solid var(--border); padding: 12px 22px; font-size: 14px; }
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--wa { background: #25D366; color: #fff; padding: 15px 28px; font-size: 15px; box-shadow: 0 8px 32px rgba(37,211,102,0.3); }
.btn--wa:hover { background: #20bc5a; transform: translateY(-2px); }

/* ── Grid ──────────────────────────────── */
.grid--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

/* ── Card ──────────────────────────────── */
.card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; padding: 12px; }
.card:hover { background: var(--dark3); }
.card__title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.card__description { font-size: 11px; color: var(--grey); line-height: 1.4; margin-bottom: 6px; }
.card__list { list-style: none; display: flex; flex-wrap: wrap; gap: 2px 8px; }
.card__list li { font-size: 10px; color: var(--light); display: flex; align-items: center; gap: 4px; }
.card__list li::before { content: "\2713"; color: var(--orange); font-weight: 700; }

/* ── Pricing ───────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.pricing-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 14px 12px; text-align: center; position: relative; }
.pricing-card--featured { border-color: var(--orange); }
.pricing-card__badge { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; padding: 2px 10px; border-radius: 100px; font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.pricing-card__title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.pricing-card__price { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--orange); margin-bottom: 2px; }
.pricing-card__subtitle { font-size: 10px; color: var(--grey); margin-bottom: 8px; }
.pricing-card__features { list-style: none; text-align: center; margin-bottom: 8px; }
.pricing-card__features li { padding: 2px 0; color: var(--light); font-size: 10px; }
.pricing-card__features li::before { content: "\2713"; color: var(--orange); font-weight: 700; margin-right: 4px; }
.pricing-card__cta { margin-top: 4px; }
.pricing-card__cta .btn { padding: 6px 14px; font-size: 11px; }
.pricing-info { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; max-width: 600px; margin: 0 auto; }
.pricing-info h3 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pricing-info p { font-size: 11px; color: var(--grey); margin-bottom: 6px; line-height: 1.4; }
.pricing-info ul { list-style: none; display: flex; flex-wrap: wrap; gap: 2px 12px; }
.pricing-info li { font-size: 10px; color: var(--light); display: flex; align-items: center; gap: 4px; }
.pricing-info li::before { content: "\2713"; color: var(--orange); font-weight: 700; }

/* ── Process ───────────────────────────── */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.process__item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 8px; text-align: center; }
.process__number { width: 24px; height: 24px; border-radius: 50%; background: rgba(143,199,38,0.1); border: 1px solid rgba(143,199,38,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 11px; font-weight: 800; color: var(--orange); margin: 0 auto 6px; }
.process__title { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.process__description { font-size: 10px; color: var(--grey); line-height: 1.3; }

/* ── Video Showcase ────────────────────── */
.video-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; margin-top: 12px; }
.video-container { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.video-player { width: 100%; height: 180px; object-fit: cover; display: block; }
.video-info { padding: 0; }
.video-info h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.video-info p { font-size: 12px; color: var(--grey); line-height: 1.5; margin-bottom: 8px; }
.video-features { list-style: none; }
.video-features li { padding: 1px 0; font-size: 11px; color: var(--light); display: flex; align-items: center; gap: 5px; }
.video-features li::before { content: "\2713"; color: var(--orange); font-weight: 700; }

/* ── Product / Project Gallery ─────────── */
.project-gallery { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; max-width: 100%; }
.project-gallery::-webkit-scrollbar { height: 4px; }
.project-gallery::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.project-gallery::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }
.project-item { flex: 0 0 220px; scroll-snap-align: start; position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--dark); }
.project-image { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.4s ease; background: var(--dark); }
.project-item:hover .project-image { transform: scale(1.04); }
.project-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 10px 10px; background: linear-gradient(transparent 10%, rgba(0,0,0,0.95) 40%); transform: translateY(100%); transition: transform 0.3s ease; border-radius: 0 0 12px 12px; max-height: 80%; overflow-y: auto; pointer-events: none; }
.project-item:hover .project-overlay { transform: translateY(0); }
.project-overlay * { pointer-events: auto; }
.project-overlay h4 { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; line-height: 1.3; }
.project-overlay p { font-size: 10px; color: rgba(255,255,255,0.7); margin: 0 0 2px; line-height: 1.3; }
.gallery-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; color: var(--grey); gap: 16px; flex: 0 0 100%; }
.gallery-spinner { width: 40px; height: 40px; border: 3px solid #2a2a2a; border-top-color: var(--orange); border-radius: 50%; animation: galSpin .7s linear infinite; }
@keyframes galSpin { to { transform: rotate(360deg); } }
.gallery-error { text-align: center; padding: 40px 20px; color: #f87171; flex: 0 0 100%; }
.gallery-badge-wrap { position: absolute; top: 0; left: 0; z-index: 3; display: flex; flex-direction: column; gap: 0; }
.gallery-badge { padding: 2px 6px; border-radius: 0; font-size: 10px; font-weight: 800; letter-spacing: 0.3px; text-transform: uppercase; line-height: 1.4; }
.gallery-badge-sale { background: #e63946; color: #fff; }
.gallery-badge-new { background: #ff6b35; color: #fff; }
.gallery-badge-hot { background: #7c3aed; color: #fff; }
.gallery-badge-featured { background: #10b981; color: #fff; }
.gallery-badge-labour { background: #3b82f6; color: #fff; }
.gallery-stock-badge { position: absolute; bottom: 8px; left: 8px; z-index: 3; padding: 2px 7px; border-radius: 3px; font-size: 9px; font-weight: 700; }
.gallery-stock-in { background: rgba(16,185,129,.18); color: #10b981; border: 1px solid rgba(16,185,129,.3); }
.gallery-stock-out { background: rgba(239,68,68,.15); color: #f87171; border: 1px solid rgba(239,68,68,.3); }
.gallery-category-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--orange); background: rgba(143,199,38,0.15); border: 1px solid rgba(143,199,38,0.3); padding: 1px 7px; border-radius: 3px; margin: 2px 0; }
.gallery-price-row { display: flex; align-items: baseline; gap: 5px; margin: 2px 0; flex-wrap: wrap; }
.gallery-price-now { font-size: 13px; font-weight: 800; color: #fff; }
.gallery-price-old { font-size: 10px; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.gallery-price-quote { font-size: 12px; font-weight: 700; color: #ff6b35; }
.gallery-rating { display: flex; align-items: center; gap: 4px; margin: 1px 0; }
.gallery-stars { font-size: 10px; color: #fbbf24; letter-spacing: 0; }
.gallery-rev-count { font-size: 10px; color: rgba(255,255,255,0.45); }
.gallery-store-btn { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; padding: 5px 12px; background: var(--orange); color: #fff; border: none; border-radius: 5px; font-size: 11px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.gallery-store-btn:hover { background: var(--orange2); }
.gallery-store-btn svg { width: 12px; height: 12px; }

/* ── CTA Section ───────────────────────── */
.cta-section { padding: 20px 0; background: var(--dark); }
.cta { text-align: center; max-width: 500px; margin: 0 auto; }
.cta__title { font-family: var(--font-display); font-size: clamp(16px, 3vw, 22px); font-weight: 800; line-height: 1.2; color: var(--white); margin-bottom: 6px; }
.cta__description { font-size: 12px; color: var(--grey); line-height: 1.5; margin-bottom: 12px; }
.cta__buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta__buttons .btn { padding: 8px 18px; font-size: 12px; }

/* ── Footer ────────────────────────────── */
.footer { padding: 64px 0 32px; background: var(--dark2); border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer__brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__brand-logo img { width: 36px; height: 36px; border-radius: 8px; }
.footer__brand-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--white); letter-spacing: -0.3px; }
.footer__brand-name span { color: var(--orange); }
.footer__brand-desc { font-size: 14px; color: var(--grey); line-height: 1.6; margin-bottom: 20px; max-width: 300px; }
.footer__social { display: flex; gap: 8px; }
.footer__social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--grey); transition: all 0.2s; }
.footer__social-link:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer__col-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 14px; color: var(--light); transition: color 0.2s; }
.footer__link:hover { color: var(--orange); }
.footer__contact-text { font-size: 14px; color: var(--light); margin-bottom: 10px; }
.footer__contact-text a { color: var(--light); transition: color 0.2s; }
.footer__contact-text a:hover { color: var(--orange); }
.footer__hero-text { text-align: center; padding: 24px 0 16px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 32px; }
.footer__hero-text p { font-size: 14px; color: var(--light); line-height: 1.6; max-width: 600px; margin: 0 auto 12px; }
.footer__hero-stats { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer__hero-stats span { font-size: 12px; color: var(--grey); }
.footer__hero-stats strong { font-family: var(--font-display); color: var(--orange); font-weight: 900; }
.footer__bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__copy { font-size: 13px; color: var(--grey); }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { font-size: 13px; color: var(--grey); transition: color 0.2s; }
.footer__legal a:hover { color: var(--light); }

/* ── WhatsApp FAB ──────────────────────── */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 99999; display: flex; align-items: center; gap: 12px; }
.whatsapp-fab-label { background: rgba(0,0,0,0.75); backdrop-filter: blur(8px); padding: 8px 16px; border-radius: 100px; font-family: var(--font-body); font-size: 12px; color: #fff; border: 1px solid rgba(255,255,255,0.1); opacity: 0; pointer-events: none; transition: opacity 0.3s; white-space: nowrap; }
.whatsapp-fab:hover .whatsapp-fab-label { opacity: 1; pointer-events: auto; }
.whatsapp-fab-btn { width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: all 0.3s ease; }
.whatsapp-fab-btn:hover { transform: scale(1.08); background: #20bc5a; }

/* ── Tag ───────────────────────────────── */
.tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,92,0,0.12); border: 1px solid rgba(255,92,0,0.3); color: var(--orange2); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; }

/* ── Scroll Reveal ─────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Utility ───────────────────────────── */
.open { display: block !important; }
.hidden { display: none !important; }
.visible { opacity: 1 !important; transform: none !important; }

/* ── Responsive ────────────────────────── */
@media (max-width: 1024px) {
  .video-showcase { grid-template-columns: 1fr; gap: 12px; }
  .video-player { height: 180px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__meta { display: none; }
  .nav__links, .nav__ctas, .nav__social { display: none; }
  .nav__toggle { display: flex; }
  .nav { top: 46px; }
  .nav__inner { height: 48px; padding: 0 12px; }
  .nav__logo img { width: 30px; height: 30px; }
  .nav__logo-name { font-size: 13px; }
  .nav__mobile { inset: 94px 0 0 0; }
  .service-quickbar { display: none; }
  .service-hero { padding: 130px 0 36px; }
  .service-hero__subtitle { font-size: 15px; }
  .section { padding: 24px 0; }
  .section-title { font-size: clamp(16px, 4.5vw, 20px) !important; }
  .section-sub, .service-hero__subtitle, .card__description, .video-info p, .pricing-card__subtitle, .process__description, .cta__description { font-size: 13px; }
  .card__title, .pricing-card__title, .process__title { font-size: 14px; }
  .section-header { margin-bottom: 20px; }
  .container { padding-left: 14px; padding-right: 14px; }
  .hero-gallery { grid-template-columns: repeat(2, 1fr); max-width: 280px; gap: 8px; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 8px; }
  .process { grid-template-columns: 1fr 1fr; gap: 6px; }
  .project-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; overflow: visible; scroll-snap-type: none; padding-bottom: 0; }
  .project-item { flex: none; scroll-snap-align: none; }
  .project-item::after { display: none; }
  .project-gallery::-webkit-scrollbar { display: none; }
  .project-overlay { transform: translateY(0); padding: 12px 6px 6px; background: linear-gradient(transparent 5%, rgba(0,0,0,0.95) 30%); }
  .project-overlay h4 { font-size: 10px; }
  .project-overlay p { display: none; }
  .project-overlay .gallery-price-row { margin: 0; }
  .gallery-store-btn { font-size: 9px; padding: 3px 8px; margin-top: 3px; }
  .gallery-badge { font-size: 8px; padding: 1px 4px; }
  .mobile-quickbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(17,17,17,0.97);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 94px;
    left: 0;
    right: 0;
    z-index: 998;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
  .mobile-quickbar::-webkit-scrollbar { display: none; }
  .mobile-quickbar__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    cursor: pointer;
    border: 1.5px solid transparent;
  }
  .mobile-quickbar__btn:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
  }
  .mobile-quickbar__btn--shop {
    background: rgba(143,199,38,0.15);
    border-color: rgba(143,199,38,0.3);
    color: var(--orange);
  }
  .mobile-quickbar__btn--shop:hover {
    background: rgba(143,199,38,0.25);
    border-color: rgba(143,199,38,0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(143,199,38,0.2);
  }
  .mobile-quickbar__btn--clients {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.1);
    color: var(--light);
  }
  .mobile-quickbar__btn--clients:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-1px);
  }
  .mobile-quickbar__btn--partners {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.25);
    color: var(--gold);
  }
  .mobile-quickbar__btn--partners:hover {
    background: rgba(201,168,76,0.2);
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-1px);
  }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .video-player { height: 180px; }
  .whatsapp-fab { bottom: 16px; right: 16px; }
  .whatsapp-fab-btn { width: 48px; height: 48px; }
}

@media (max-width: 600px) {
  .lb-btn { width: 40px; height: 40px; font-size: 18px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}

@media (max-width: 480px) {
  .section { padding: 18px 0; }
  .container { padding-left: 10px; padding-right: 10px; }
  .service-hero__title { font-size: clamp(20px, 6vw, 26px); }
  .section-title { font-size: clamp(14px, 4vw, 18px) !important; }
  .ticker--sticky { font-size: 11px; padding: 6px 0; }
  .nav { padding: 0 12px; }
  .grid--3 { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .process { grid-template-columns: 1fr !important; }
  .footer__grid { grid-template-columns: 1fr !important; }
}
