/* ============================================================
   IINKDROP — Custom Printing Studio
   Modern Hype Neon Stylesheet — Dark/Light Mode
   ============================================================ */

/* ---- Dark Mode (Default) ---- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-elevated: #1a1a1a;
  --bg-card: rgba(22, 22, 22, 0.8);
  --bg-card-hover: rgba(30, 30, 30, 0.9);

  --neon-green: #00FF87;
  --neon-pink: #FF2D95;
  --neon-blue: #00C2FF;
  --neon-yellow: #FFE600;
  --neon-purple: #B24BF3;

  --accent: var(--neon-green);
  --accent-dim: rgba(0, 255, 135, 0.1);
  --accent-glow: rgba(0, 255, 135, 0.25);

  --text-primary: #ffffff;
  --text-body: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.38);

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 255, 135, 0.35);

  --font-heading: 'Syne', 'Arial Black', sans-serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  --container: 1200px;
  --section-py: clamp(80px, 10vw, 130px);
  --radius: 12px;
  --radius-lg: 20px;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-bg-scrolled: rgba(10, 10, 10, 0.92);
  --mobile-menu-bg: rgba(10, 10, 10, 0.97);
  --input-bg: rgba(255, 255, 255, 0.05);
  --overlay-gradient: rgba(10, 10, 10, 0.9);
  --map-filter: invert(0.92) hue-rotate(180deg) saturate(0.7) brightness(0.75);
}

/* ---- Light Mode ---- */
[data-theme="light"] {
  --bg-primary: #f5f5f5;
  --bg-secondary: #ffffff;
  --bg-elevated: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.95);

  --neon-green: #00CC6A;
  --neon-pink: #E6006E;
  --neon-blue: #0099D6;
  --neon-yellow: #CC9900;
  --neon-purple: #8A1FBF;

  --accent: var(--neon-green);
  --accent-dim: rgba(0, 204, 106, 0.08);
  --accent-glow: rgba(0, 204, 106, 0.15);

  --text-primary: #0a0a0a;
  --text-body: rgba(10, 10, 10, 0.7);
  --text-muted: rgba(10, 10, 10, 0.4);

  --border: rgba(10, 10, 10, 0.08);
  --border-hover: rgba(0, 204, 106, 0.4);

  --nav-bg-scrolled: rgba(255, 255, 255, 0.92);
  --mobile-menu-bg: rgba(255, 255, 255, 0.97);
  --input-bg: rgba(0, 0, 0, 0.03);
  --overlay-gradient: rgba(245, 245, 245, 0.9);
  --map-filter: none;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-primary);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s, color 0.4s;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-pink); }

::selection { background: rgba(0, 255, 135, 0.2); color: #fff; }
[data-theme="light"] ::selection { background: rgba(0, 204, 106, 0.2); color: #000; }

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--neon-pink); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }

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

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease);
}
.nav--scrolled {
  background: var(--nav-bg-scrolled);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 32px;
  width: auto;
}
/* Theme-based logo swap */
.logo-dark { display: none; }
.logo-white { display: block; }
[data-theme="light"] .logo-dark { display: block; }
[data-theme="light"] .logo-white { display: none; }
/* Light mode on pages with dark hero bg: force white nav before scroll */
[data-theme="light"] .has-hero-bg .nav:not(.nav--scrolled) .logo-white { display: block; }
[data-theme="light"] .has-hero-bg .nav:not(.nav--scrolled) .logo-dark { display: none; }
[data-theme="light"] .has-hero-bg .nav:not(.nav--scrolled) .nav__links a {
  color: rgba(255,255,255,0.8);
}
[data-theme="light"] .has-hero-bg .nav:not(.nav--scrolled) .nav__links a:hover {
  color: var(--accent);
}
[data-theme="light"] .has-hero-bg .nav:not(.nav--scrolled) .theme-toggle {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}
[data-theme="light"] .has-hero-bg .nav:not(.nav--scrolled) .theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}
[data-theme="light"] .has-hero-bg .nav:not(.nav--scrolled) .nav__burger span {
  background: #fff;
}
[data-theme="light"] .has-hero-bg .nav:not(.nav--scrolled) .mega-chevron {
  stroke: rgba(255,255,255,0.8);
}
/* Reset to dark text when mobile menu is open in light mode */
[data-theme="light"] .has-hero-bg .nav:not(.nav--scrolled) .nav__links.open a {
  color: var(--text-body);
}
[data-theme="light"] .has-hero-bg .nav:not(.nav--scrolled) .nav__links.open a:hover {
  color: var(--accent);
}
.nav__links {
  display: flex; gap: 2rem;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-body);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
  border-radius: 1px;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { width: 100%; }

/* Mega Menu Trigger */
.mega-trigger { position: static; }
.mega-trigger > a {
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.mega-trigger > a::after { display: none; }
.mega-chevron { transition: transform 0.3s; flex-shrink: 0; }
.mega-trigger:hover .mega-chevron,
.mega-trigger.open .mega-chevron { transform: rotate(180deg); }

/* Mega Menu Panel — drops below navbar */
.mega-menu {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  z-index: 8999;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.mega-trigger:hover .mega-menu,
.mega-trigger.open .mega-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-menu__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 24px 2.5rem;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2.5rem;
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}
.mega-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid transparent;
}
.mega-item:hover {
  background: var(--accent-dim);
  border-color: var(--border-hover);
}
.mega-item::after { display: none; }
.mega-item__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--accent);
  transition: all 0.25s;
}
.mega-item__icon svg { width: 18px; height: 18px; }
.mega-item:hover .mega-item__icon {
  border-color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 12px var(--accent-glow);
}
.mega-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mega-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
}
.mega-menu__featured {
  border-left: 1px solid var(--border);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mega-menu__featured img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.mega-menu__featured p {
  font-size: 0.82rem;
  color: var(--text-body);
  text-transform: none;
}

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }

/* Theme Toggle */
.theme-toggle {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-body);
  transition: all 0.3s;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }

.nav__burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border: none; border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--accent);
  color: #0a0a0a;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--accent-glow), 0 8px 30px rgba(0, 0, 0, 0.3);
  color: #0a0a0a;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--border-hover);
  color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn--sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn--lg { padding: 0.95rem 2.2rem; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Full-bleed background image */
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* Dark gradient overlay for text legibility */
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center 40%, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 50%, rgba(10,10,10,0.6) 100%),
    linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.5) 100%);
  z-index: 1;
}
/* Subtle accent glow on bg */
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(0, 255, 135, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(255, 45, 149, 0.05) 0%, transparent 40%);
  z-index: 2;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 100px;
}

.hero__text {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero__label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--accent-glow); }
  50% { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 4px var(--accent-glow); }
}

.hero__title {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--ease-out) forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.hero__typewriter {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 2.4em;
}
.hero__typewriter--city {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.06em;
  gap: 0.4em;
  min-height: auto;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s var(--ease-out) forwards;
}
.hero__typewriter-static {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.hero__typewriter-word {
  color: var(--accent);
  position: relative;
  min-width: 2ch;
  font-size: 1.15em;
  line-height: 1.1;
}
.hero__typewriter-city {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}
.hero__typewriter-bottom {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-height: 1.3em;
}
.hero__typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent);
  margin-left: 3px;
  animation: cursorBlink 0.6s step-end infinite;
  vertical-align: baseline;
  border-radius: 1px;
  box-shadow: 0 0 8px var(--accent-glow);
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s var(--ease-out) forwards;
}

.hero__buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
}
.hero__buttons .btn--outline {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero__buttons .btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 255, 135, 0.08);
}

/* Hero Stats Row */
.hero__stats {
  display: flex; gap: 3rem; margin-top: 3.5rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s var(--ease-out) forwards;
}
.hero__stat {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.hero__stat-value .accent-inline {
  color: var(--accent);
}
.hero__stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Scroll */
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  z-index: 4;
}
.hero__scroll span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__scroll-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 1px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---- Brands Strip ---- */
.brands-strip {
  padding: 4.5rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.brands-strip__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.brands-strip__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.brands-strip__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.brands-strip__scroll {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.brands-strip__track {
  display: flex;
  gap: 1.25rem;
  animation: brandsScroll 25s linear infinite;
  width: max-content;
}
.brands-strip__item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-card);
  transition: all 0.35s;
  user-select: none;
  flex-shrink: 0;
}
.brands-strip__item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 20px var(--accent-glow);
}
@keyframes brandsScroll {
  to { transform: translateX(-50%); }
}

/* ---- Marquee ---- */
.marquee {
  padding: 1.5rem 0;
  background: var(--accent);
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--accent), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--accent), transparent); }

.marquee__track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}
.marquee__track span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--bg-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 1.2rem;
}
.marquee__dot {
  width: 6px; height: 6px;
  display: inline-flex; align-items: center; justify-content: center;
}
.marquee__dot::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: block;
  opacity: 0.4;
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--neon-pink);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--neon-pink);
  vertical-align: middle;
  margin-right: 0.5rem;
  border-radius: 1px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Service Cards ---- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 0 40px rgba(0, 255, 135, 0.06), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border);
  border-radius: 14px;
  margin-bottom: 1.25rem;
  color: var(--neon-blue);
  transition: all 0.3s;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card:hover .service-card__icon {
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 194, 255, 0.15);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: all 0.5s;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card:hover .service-card__img {
  border-color: var(--border-hover);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: none;
}

.service-card__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.service-card__link span {
  transition: transform 0.3s;
  display: inline-block;
}
.service-card:hover .service-card__link span { transform: translateX(6px); }

/* ---- Stats ---- */
.stats-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat { position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute; left: -1rem; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--border);
}
.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  display: inline;
}
.stat__suffix {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-yellow);
  display: inline;
  vertical-align: super;
}
.stat__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ---- Gallery ---- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.5s var(--ease);
}
.gallery-item:hover {
  border-color: var(--neon-pink);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(255, 45, 149, 0.1), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item__img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.gallery-item--wide .gallery-item__img { aspect-ratio: 2/1; }

.gallery-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover .gallery-item__img img { transform: scale(1.06); }

.gallery-item__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, var(--overlay-gradient) 0%, transparent 100%);
  display: flex; align-items: flex-end; gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-item__overlay { transform: translateY(0); }

.gallery-item__tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--neon-blue);
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--neon-blue);
  border-radius: 3px;
  flex-shrink: 0;
}
.gallery-item__overlay h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: none;
}

/* ---- How It Works ---- */
.how-it-works { background: var(--bg-secondary); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.process-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 0 25px var(--accent-glow), 0 15px 40px rgba(0, 0, 0, 0.2);
}
.process-step__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.1;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  pointer-events: none;
}
.process-step:hover .process-step__number {
  opacity: 0.2;
}
.process-step__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.process-step__icon svg { width: 22px; height: 22px; }
.process-step:hover .process-step__icon {
  border-color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 15px var(--accent-glow);
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---- Contact ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info p {
  margin: 1rem 0 2rem;
  font-size: 1.05rem;
}

.contact__details {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact__detail {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  border: 2px solid var(--border);
  color: var(--neon-blue);
  transition: all 0.3s;
}
.contact__detail:hover .contact__icon {
  border-color: var(--neon-blue);
  box-shadow: 0 0 12px rgba(0, 194, 255, 0.15);
}
.contact__detail div strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}
.contact__detail div span,
.contact__detail div a {
  font-size: 0.85rem;
  color: var(--text-body);
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim), 0 0 15px var(--accent-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-primary); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Service Areas ---- */
.service-areas { background: var(--bg-secondary); }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s;
}
.area-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}
.area-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.area-card p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.5;
}
.areas__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-body);
}
.areas__note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .areas__grid { grid-template-columns: 1fr; }
}

/* ---- Footer ---- */
.footer {
  padding: 5rem 0 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  max-width: 280px;
}
.footer__social {
  display: flex; gap: 0.75rem;
}
.footer__social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-body);
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 12px rgba(255, 45, 149, 0.15);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a,
.footer ul li {
  font-size: 0.85rem;
  color: var(--text-body);
}
.footer ul li a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--neon-pink);
  opacity: 0.7;
  font-weight: 700;
  text-transform: uppercase;
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services__grid .reveal:nth-child(1) { transition-delay: 0s; }
.services__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.gallery__grid .reveal:nth-child(1) { transition-delay: 0s; }
.gallery__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.gallery__grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.gallery__grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.gallery__grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.gallery__grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.process__grid .reveal:nth-child(1) { transition-delay: 0s; }
.process__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.process__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.process__grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.stats__grid .reveal:nth-child(1) { transition-delay: 0s; }
.stats__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats__grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .mega-menu__inner { grid-template-columns: 1fr; }
  .mega-menu__featured { display: none; }
  .mega-menu__grid { grid-template-columns: repeat(2, 1fr); }

  .hero__container {
    text-align: center;
    max-width: 100%;
  }
  .hero__text { max-width: 100%; }
  .hero__reviews { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__buttons { justify-content: center; }
  .hero__stats { justify-content: center; gap: 2rem; }
  .brands-strip__item { font-size: 0.78rem; padding: 0.6rem 1.4rem; }

  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }

  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__logo img { height: 26px; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--mobile-menu-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 9001;
  }
  .nav__links.open a {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    font-weight: 700;
  }

  /* Hero mobile */
  .hero { min-height: 100svh; }
  .hero__bg::after {
    background:
      radial-gradient(ellipse at center 40%, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.7) 100%),
      linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.6) 100%);
  }
  .hero__container { padding-top: 110px; padding-bottom: 60px; }
  .hero__text { padding: 0 0.5rem; }

  .hero__typewriter {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
    min-height: 2.2em;
  }
  .hero__typewriter--city {
    font-size: clamp(0.8rem, 3.2vw, 1.1rem);
    margin-top: 0.2rem;
  }
  .hero__typewriter-word { min-width: 0; }

  .hero__reviews {
    padding: 0.4rem 0.8rem;
    gap: 0.4rem;
  }
  .hero__reviews-stars svg { width: 12px; height: 12px; }
  .hero__reviews-rating { font-size: 0.8rem; }
  .hero__reviews-text { font-size: 0.65rem; }

  .hero__sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero__stats {
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
  }
  .hero__stat { align-items: center; }
  .hero__stat-value { font-size: 1.3rem; }
  .hero__stat-label { font-size: 0.55rem; letter-spacing: 0.1em; }

  .hero__scroll { display: none; }

  /* Brands strip mobile */
  .brands-strip { padding: 3rem 0; }
  .brands-strip__header { margin-bottom: 1.5rem; gap: 1rem; }
  .brands-strip__label { font-size: 0.6rem; letter-spacing: 0.2em; }
  .brands-strip__item { font-size: 0.7rem; padding: 0.5rem 1.1rem; }

  /* Marquee mobile */
  .marquee { padding: 1rem 0; }
  .marquee__track span { font-size: 0.75rem; padding: 0 0.8rem; }

  /* Process / How It Works mobile */
  .process__grid { grid-template-columns: 1fr; }
  .process-step { padding: 2rem 1.5rem 1.5rem; }
  .process-step__number { font-size: 3rem; }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stat + .stat::before { display: none; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }

  /* Service areas mobile */
  .area-card { padding: 1.25rem; }
  .area-card h3 { font-size: 0.9rem; }
  .area-card p { font-size: 0.78rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Section spacing tighter on mobile */
  .section { padding: 4rem 0; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .section-desc { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero__container { padding-top: 100px; padding-bottom: 50px; }

  .hero__typewriter {
    font-size: clamp(1.3rem, 9vw, 2rem);
    min-height: 2.2em;
  }
  .hero__typewriter--city {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
  }

  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }

  .hero__stats { gap: 1rem; }
  .hero__stat-value { font-size: 1.1rem; }
  .hero__stat-label { font-size: 0.5rem; }

  .hero__sub { font-size: 0.88rem; }

  .brands-strip__item { font-size: 0.65rem; padding: 0.45rem 0.9rem; }

  .contact__form { padding: 1.5rem; }
}

/* ============================================================
   SUBPAGE STYLES
   ============================================================ */

/* ---- Page Header ---- */
.page-header {
  padding: calc(100px + 3rem) 0 3rem;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(255, 45, 149, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(0, 194, 255, 0.04) 0%, transparent 50%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.page-header p {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* ---- Subpage Section ---- */
.subpage-section {
  padding: var(--section-py) 0;
}
.subpage-section--alt {
  background: var(--bg-secondary);
}

/* ---- Two Column Layout ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--reverse .two-col__content { order: 2; }
.two-col--reverse .two-col__media { order: 1; }

.two-col__content .section-label {
  text-align: left;
  margin-bottom: 0.75rem;
}

/* ---- Subpage Images ---- */
.subpage-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}
.subpage-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.subpage-img--portrait { aspect-ratio: 3/4; }
.subpage-img--square { aspect-ratio: 1/1; }
.subpage-img--wide { aspect-ratio: 16/9; }

/* ---- Feature List ---- */
.feature-list {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin: 1.25rem 0 2rem;
}
.feature-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.feature-list li svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* ---- Contact Cards ---- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.contact-card:hover {
  border-color: var(--neon-blue);
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 194, 255, 0.08);
}
.contact-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border);
  border-radius: 14px;
  color: var(--neon-blue);
  transition: all 0.3s;
}
.contact-card:hover .contact-card__icon {
  border-color: var(--neon-blue);
  box-shadow: 0 0 12px rgba(0, 194, 255, 0.15);
}
.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-body);
}
.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

/* ---- Blog Cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.blog-card:hover {
  border-color: var(--neon-purple);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(178, 75, 243, 0.08), 0 20px 60px rgba(0, 0, 0, 0.3);
}
.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-secondary);
}
.blog-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body {
  padding: 1.5rem;
}
.blog-card__meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.blog-card__tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--neon-purple);
  background: rgba(178, 75, 243, 0.1);
  border: 1px solid rgba(178, 75, 243, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.blog-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-transform: none;
}
.blog-card__body h3 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}
.blog-card__body h3 a:hover { color: var(--neon-purple); }
.blog-card__body p {
  font-size: 0.88rem;
  color: var(--text-body);
}

/* ---- Portfolio Grid ---- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.5s var(--ease);
  aspect-ratio: 4/3;
}
.portfolio-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 0 30px var(--accent-glow), 0 20px 60px rgba(0, 0, 0, 0.3);
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.portfolio-item__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, var(--overlay-gradient) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.portfolio-item:hover .portfolio-item__overlay { transform: translateY(0); }
.portfolio-item__overlay span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ---- Filter Buttons ---- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-body);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover {
  border-color: var(--border-hover);
  color: var(--accent);
}
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 0 15px var(--accent-glow);
}

/* ---- Map Container ---- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none;
  filter: var(--map-filter);
}

/* ---- Values Grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.value-card:hover {
  border-color: var(--neon-yellow);
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.06);
}
.value-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--neon-yellow);
  transition: all 0.3s;
}
.value-card:hover .value-card__icon {
  border-color: var(--neon-yellow);
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.12);
}
.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  text-transform: none;
}

/* ---- Memorial Quote ---- */
.memorial-quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  font-style: italic;
  padding: 1.5rem;
  border-left: 3px solid var(--neon-pink);
  background: rgba(255, 45, 149, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
  text-transform: none;
}

/* ---- Stat Inline ---- */
.stat-row {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 2rem;
}
.stat-row__item .stat-row__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-row__item .stat-row__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ---- Story Page ---- */

/* Story Hero — full-bleed photo */
.story-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.story-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.story-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.story-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.6) 40%,
    rgba(10,10,10,0.2) 70%,
    rgba(10,10,10,0.4) 100%
  );
}
.story-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem 5rem;
  width: 100%;
}
.story-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.story-hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 500px;
}

/* Story Chapter — centered prose */
.story-chapter {
  padding: var(--section-py) 0;
}
.story-chapter--alt {
  background: var(--bg-secondary);
}
.story-prose {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.story-prose .section-title {
  margin-bottom: 2rem;
}
.story-lead {
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.story-prose p {
  margin-bottom: 1rem;
}

/* Story Diptych — two side-by-side photos */
.story-photos {
  padding: 0 0 var(--section-py);
}
.story-diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.story-diptych__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.story-diptych__item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.story-diptych__item:hover img {
  transform: scale(1.03);
}
.story-diptych__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

/* Story Split — image + text side by side */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-split--reverse {
  direction: rtl;
}
.story-split--reverse > * {
  direction: ltr;
}
.story-split__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.story-split__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.story-split__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  text-align: center;
}
.story-split__name strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.story-split__name span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}
.story-split__text .section-title {
  margin-bottom: 1.5rem;
}
.story-split__text p {
  margin-bottom: 1rem;
}
.memorial-quote__attr {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-body);
  font-style: normal;
}

/* Story Filmstrip — horizontal scrolling photos */
.story-filmstrip {
  padding: 2rem 0;
  overflow: hidden;
}
.story-filmstrip__track {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem;
}
.story-filmstrip__frame {
  flex: 0 0 auto;
  width: calc(33.333% - 1rem);
  min-width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.story-filmstrip__frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.story-filmstrip__frame:hover img {
  transform: scale(1.04);
}

/* Story page responsive */
@media (max-width: 768px) {
  .story-hero {
    min-height: 70vh;
  }
  .story-hero__content {
    padding: 0 1.5rem 3rem;
  }
  .story-diptych {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .story-diptych__item img {
    aspect-ratio: 3/4;
  }
  .story-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-split--reverse {
    direction: ltr;
  }
  .story-split__image {
    max-width: 400px;
    margin: 0 auto;
  }
  .story-filmstrip__track {
    padding: 0 1rem;
    gap: 1rem;
  }
  .story-filmstrip__frame {
    width: 75vw;
    min-width: 260px;
  }
  .story-prose {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .story-hero {
    min-height: 60vh;
  }
  .story-hero__content {
    padding: 0 1rem 2.5rem;
  }
  .story-filmstrip__frame {
    width: 85vw;
  }
}

/* ---- Quote Form ---- */
.quote-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.quote-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.quote-form h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--neon-blue);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.checkbox-group {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.checkbox-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-body);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}
.checkbox-item:hover {
  border-color: var(--border-hover);
  background: var(--accent-dim);
}
.checkbox-item input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px; height: 16px;
}

.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.file-upload:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.file-upload__icon {
  margin-bottom: 0.75rem;
  color: var(--accent);
}
.file-upload__text {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.file-upload__text strong {
  color: var(--accent);
}

/* Sidebar Cards */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step-list {
  display: flex; flex-direction: column; gap: 1rem;
}
.step-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.step-number {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
}
.step-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.step-item span {
  font-size: 0.85rem;
  color: var(--text-body);
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 255, 135, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 45, 149, 0.04) 0%, transparent 50%),
    var(--bg-secondary);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  max-width: 500px;
  margin: 0 auto 2rem;
  color: var(--text-body);
  text-transform: none;
}

/* ---- Newsletter ---- */
.newsletter-form {
  display: flex; gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 0.8rem 1rem;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}
.newsletter-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim), 0 0 15px var(--accent-glow);
}
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ---- Subpage Responsive ---- */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--reverse .two-col__content,
  .two-col--reverse .two-col__media { order: unset; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 1.5rem; }
  .gallery-filters { gap: 0.4rem; }
  .filter-btn { font-size: 0.65rem; padding: 0.4rem 0.75rem; }
  .mega-menu { display: none !important; }
}

/* Google Reviews Badge (hero overlay) */
.hero__reviews {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero__reviews-stars {
  display: flex; gap: 2px;
  color: var(--neon-yellow);
}
.hero__reviews-stars svg { width: 14px; height: 14px; fill: currentColor; }
.hero__reviews-rating {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}
.hero__reviews-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================================
   AI CHATBOT WIDGET
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 9500;
  font-family: var(--font-body);
}

/* Toggle Button */
.chat-toggle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a;
  box-shadow: 0 4px 20px var(--accent-glow), 0 8px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s var(--ease);
  position: relative;
  z-index: 2;
}
.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 30px var(--accent-glow), 0 12px 50px rgba(0, 0, 0, 0.4);
}
.chat-toggle svg { width: 24px; height: 24px; }
.chat-toggle__close { display: none; }
.chat-widget.open .chat-toggle__open { display: none; }
.chat-widget.open .chat-toggle__close { display: block; }

/* Notification dot */
.chat-toggle::after {
  content: '';
  position: absolute; top: -2px; right: -2px;
  width: 14px; height: 14px;
  background: var(--neon-pink);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  animation: pulse 2s ease-in-out infinite;
}
.chat-widget.open .chat-toggle::after { display: none; }

/* Chat Panel */
.chat-panel {
  position: absolute;
  bottom: 70px; right: 0;
  width: 380px;
  max-height: 520px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}
.chat-widget.open .chat-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

/* Chat Header */
.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.chat-header__info {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.chat-header__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
.chat-header__close {
  background: none; border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}
.chat-header__close:hover { color: var(--text-primary); }

/* Chat Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 350px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.chat-msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.55;
}
.chat-msg p { color: inherit; text-transform: none; }
.chat-msg--bot {
  align-self: flex-start;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-body);
  border-bottom-left-radius: 4px;
}
.chat-msg--user {
  align-self: flex-end;
  background: var(--accent);
  color: #0a0a0a;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat-msg--typing {
  align-self: flex-start;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-bottom-left-radius: 4px;
}
.typing-dots { display: inline-flex; gap: 4px; align-items: center; }
.typing-dots span {
  width: 6px; height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* Chat Input */
.chat-input {
  display: flex; gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}
.chat-input input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}
.chat-input input:focus { border-color: var(--accent); }
.chat-input input::placeholder { color: var(--text-muted); }
.chat-input button {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--accent);
  border: none;
  color: #0a0a0a;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.chat-input button:hover {
  box-shadow: 0 0 15px var(--accent-glow);
}
.chat-input button svg { width: 16px; height: 16px; }

@media (max-width: 480px) {
  .chat-panel {
    width: calc(100vw - 2rem);
    right: -0.5rem;
    max-height: 70vh;
  }
  .chat-widget { bottom: 1rem; right: 1rem; }
}
