@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=Barlow:wght@300;400;500;600&display=swap');


/* ── ELIMINATE MOBILE TAP DELAY ── */
*, *::before, *::after {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
a, button, [role="button"], .btn, .service-card,
.filter-btn, .faq-question, .masonry-item,
.nav-links a, .hamburger, .wa-toggle, .ig-post,
.pkg-card, .tint-pkg, .card, .work-item, .showcase-item {
  touch-action: manipulation;
  cursor: pointer;
}

:root {
  --blue: #00AAFF;
  --blue-bright: #33CCFF;
  --blue-dim: #0077BB;
  --black: #050608;
  --dark: #0a0c10;
  --dark2: #0f1318;
  --dark3: #161b22;
  --white: #ffffff;
  --grey: #8899AA;
  --grey-light: #c8d4df;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blue-dim); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3.5rem, 10vw, 9rem); font-weight: 900; }
h2 { font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 700; }
h3 { font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 700; }
h4 { font-size: 1.3rem; font-weight: 600; }
p { font-size: 1rem; color: var(--grey-light); line-height: 1.7; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: background 0.3s, backdrop-filter 0.3s;
  background: #050608;
}
nav.scrolled {
  background: #050608;
  border-bottom: 1px solid rgba(0,170,255,0.12);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-logo span { color: var(--blue); }
/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-logo {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  nav { padding: 0 16px; }
  .nav-logo-img { height: 38px; }
  .section-label::before { display: none; }
  .section-label { letter-spacing: 0.15em; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
  position: relative;
  padding: 8px 4px;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--blue);
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: 700 !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-bright) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 12px;
  margin: -12px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  background: none;
  border: none;
  outline: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(5,6,8,0.97); padding: 24px 32px; gap: 0; z-index: 999; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links li:last-child { border-bottom: none; margin-top: 16px; }
  .nav-links a { display: block; padding: 16px 0; width: 100%; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  min-height: 48px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  user-select: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--black);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ── SECTION BASICS ── */
section { position: relative; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.section-pad { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  pointer-events: none;
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--blue);
}

/* ── BLUE GLOW ACCENT ── */
.blue-line {
  display: inline-block;
  color: var(--blue);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { max-width: 680px; font-size: 1.15rem; }
@media (max-width: 640px) {
  .page-hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 48px; }
  .page-hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .page-hero p { font-size: 1rem; }
}

/* ── DIVIDER ── */
.divider {
  width: 60px; height: 4px;
  background: var(--blue);
  margin: 24px 0;
}

/* ── CARD ── */
.card {
  background: var(--dark2);
  border: 1px solid rgba(0,170,255,0.1);
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.card:hover {
  border-color: rgba(0,170,255,0.4);
  transform: translateY(-6px);
}
.card img { max-width: 100%;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.card:hover img { transform: scale(1.04); }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.6rem; margin-bottom: 12px; }
.card-body p { margin-bottom: 20px; font-size: 0.95rem; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .section-pad { padding: 64px 0; }
  h1 { font-size: clamp(2.8rem, 13vw, 5rem); }
  .btn { padding: 14px 28px; font-size: 0.9rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── FOOTER ── */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(0,170,255,0.12);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.9rem; color: var(--grey); max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--grey); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(0,170,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--grey);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--blue); color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--grey);
}

/* ── SCROLL ANIMATIONS ── */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal-left.visible { opacity: 1; transform: translateX(0); }
.js .reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
}

/* ── AMBIENT COLOUR GLOWS ── */
.glow-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.glow-blue  { background: radial-gradient(circle, rgba(0,170,255,0.22) 0%, transparent 70%); }
.glow-cyan  { background: radial-gradient(circle, rgba(0,230,255,0.14) 0%, transparent 70%); }
.glow-indigo{ background: radial-gradient(circle, rgba(60,40,220,0.18) 0%, transparent 70%); }
.glow-teal  { background: radial-gradient(circle, rgba(0,200,170,0.13) 0%, transparent 70%); }

/* ── CHROMATIC SECTION ACCENTS ── */
.section-chromatic {
  position: relative;
  overflow: hidden;
}
.section-chromatic > .container { position: relative; z-index: 1;   position: relative;
  z-index: 1;
}
.section-chromatic::before {
  content: '';
  position: absolute;
  top: -200px; left: -150px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.section-chromatic::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,80,200,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid-lines texture */
.grid-texture {
  background-image:
    linear-gradient(rgba(0,170,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,170,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Diagonal sweep */
.sweep-accent {
  position: relative;
  overflow: hidden;
}
.sweep-accent::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 0%, rgba(0,170,255,0.06) 50%, transparent 100%);
  transform: skewX(-8deg);
  pointer-events: none;
}

/* Scanlines */
.scanlines::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,170,255,0.018) 3px, rgba(0,170,255,0.018) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* ── STAT BAR ── */
.stats-bar {
  background: var(--blue);
  padding: 24px 0;
  overflow: hidden;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--black);
  display: block;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

/* ── PARALLAX WRAPPER ── */
.parallax-img {
  overflow: hidden;
  position: relative;
}
.parallax-img img {
  transform: scale(1.15);
  transition: transform 0.1s linear;
  width: 100%;
  display: block;
}

/* ── ACTIVE NAV PAGE ── */
.current-page { color: var(--white) !important; }
.current-page::after { width: 100% !important; }

/* ── SERVICE CARD MOBILE FIX ── */
.service-card {
  position: relative;
  z-index: 2;
  display: block;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.service-card img {
  pointer-events: none;
}

/* ── MASONRY / GALLERY ITEMS ── */
.masonry-item {
  position: relative;
  z-index: 2;
  touch-action: manipulation;
}

/* ── PKG CARDS / TINT PKGS ── */
.pkg-card, .tint-pkg {
  position: relative;
  z-index: 2;
}
.pkg-card a, .tint-pkg a {
  position: relative;
  z-index: 3;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── FAQ ACCORDION ── */
.faq-question {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}

/* ── FILTER BUTTONS ── */
.filter-btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}

/* ── FOOTER SOCIAL LINKS ── */
.footer-social a {
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── GENERAL LINK FIX ── */
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
