/* BBU Cleaning Theme CSS - Complete Design System v2.0 */
:root {
    --background: 210 20% 97%;
    --foreground: 220 40% 13%;
    --card: 0 0% 100%;
    --card-foreground: 220 40% 13%;
    --popover: 0 0% 100%;
    --popover-foreground: 220 40% 13%;
    --primary: 220 40% 13%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 25% 93%;
    --secondary-foreground: 220 40% 13%;
    --muted: 210 20% 94%;
    --muted-foreground: 215 20% 45%;
    --accent: 178 50% 32%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214 25% 88%;
    --input: 214 25% 88%;
    --ring: 178 50% 32%;
    --radius: 0.5rem;
    --navy: 220 40% 13%;
    --navy-light: 220 30% 20%;
    --navy-foreground: 210 40% 98%;
    --slate-mid: 215 20% 45%;
    --teal: 178 50% 32%;
    --teal-light: 178 40% 90%;
    --teal-foreground: 0 0% 100%;
    --surface: 0 0% 100%;
    --surface-alt: 210 20% 97%;
    --highlight: 38 92% 50%;
    --highlight-foreground: 0 0% 100%;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: hsl(var(--border)); }
body { margin: 0; background-color: hsl(var(--background)); color: hsl(var(--foreground)); font-family: 'Plus Jakarta Sans', system-ui, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.5; }
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-weight: 700; letter-spacing: -0.025em; margin: 0; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }

/* ═══════════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════════ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
/* CRITICAL: no !important on hidden — allows JS .open override */
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.shrink-0 { flex-shrink: 0; }
.select-none { user-select: none; }
.cursor-col-resize { cursor: col-resize; }

/* ═══════════════════════════════════════════════
   SIZING
   ═══════════════════════════════════════════════ */
.w-1\.5 { width: 0.375rem; } .h-1\.5 { height: 0.375rem; }
.w-2 { width: 0.5rem; } .h-2 { height: 0.5rem; }
.w-3 { width: 0.75rem; } .h-3 { height: 0.75rem; }
.w-4 { width: 1rem; } .h-4 { height: 1rem; }
.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; } .h-7 { height: 1.75rem; }
.w-8 { width: 2rem; } .h-8 { height: 2rem; }
.w-10 { width: 2.5rem; } .h-10 { height: 2.5rem; }
.w-12 { width: 3rem; } .h-12 { height: 3rem; }
.w-14 { width: 3.5rem; } .h-14 { height: 3.5rem; }
.w-16 { width: 4rem; } .h-16 { height: 4rem; }
.w-20 { width: 5rem; } .h-20 { height: 5rem; }
.min-h-\[48px\] { min-height: 48px; }
.min-h-\[52px\] { min-height: 52px; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[360px\] { min-height: 360px; }
.max-h-\[500px\] { max-height: 500px; }
.max-h-\[80vh\] { max-height: 80vh; }
.min-w-\[230px\] { min-width: 230px; }
.min-w-\[260px\] { min-width: 260px; }
.max-w-none { max-width: none; }
.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* ═══════════════════════════════════════════════
   SPACING
   ═══════════════════════════════════════════════ */
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; } .gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; } .gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.space-y-0\.5 > * + * { margin-top: 0.125rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; } .mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; }
.ml-1 { margin-left: 0.25rem; } .ml-2 { margin-left: 0.5rem; }
.-mr-2 { margin-right: -0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-2 { padding: 0.5rem; } .p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.pb-2 { padding-bottom: 0.5rem; } .pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; } .pb-16 { padding-bottom: 4rem; }
.pt-1 { padding-top: 0.25rem; } .pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pl-4 { padding-left: 1rem; } .pl-5 { padding-left: 1.25rem; }
.pl-10 { padding-left: 2.5rem; } .pl-12 { padding-left: 3rem; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════ */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.capitalize { text-transform: capitalize; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.underline { text-decoration: underline; }
.underline-offset-4 { text-underline-offset: 4px; }
.line-clamp-1 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ═══════════════════════════════════════════════
   COLORS
   ═══════════════════════════════════════════════ */
.bg-background { background-color: hsl(var(--background)); }
.bg-foreground { background-color: hsl(var(--foreground)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-surface { background-color: hsl(var(--surface)); }
.bg-surface-alt { background-color: hsl(var(--surface-alt)); }
.bg-navy { background-color: hsl(var(--navy)); }
.bg-navy-light { background-color: hsl(var(--navy-light)); }
.bg-navy-light\/30 { background-color: hsl(var(--navy-light) / 0.3); }
.bg-navy-light\/50 { background-color: hsl(var(--navy-light) / 0.5); }
.bg-teal { background-color: hsl(var(--teal)); }
.bg-teal\/10 { background-color: hsl(var(--teal) / 0.1); }
.bg-teal\/20 { background-color: hsl(var(--teal) / 0.2); }
.bg-teal-light { background-color: hsl(var(--teal-light)); }
.bg-highlight { background-color: hsl(var(--highlight)); }
.bg-highlight\/10 { background-color: hsl(var(--highlight) / 0.1); }
.bg-highlight\/20 { background-color: hsl(var(--highlight) / 0.2); }
.bg-destructive { background-color: hsl(var(--destructive)); }
.bg-white { background-color: #fff; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-transparent { background-color: transparent; }
.bg-black\/60 { background-color: rgba(0,0,0,0.6); }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-green-500\/20 { background-color: rgba(34,197,94,0.2); }
.bg-yellow-500\/20 { background-color: rgba(234,179,8,0.2); }
.bg-red-500\/20 { background-color: rgba(239,68,68,0.2); }

.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-navy-foreground { color: hsl(var(--navy-foreground)); }
.text-navy-foreground\/50 { color: hsl(var(--navy-foreground) / 0.5); }
.text-navy-foreground\/60 { color: hsl(var(--navy-foreground) / 0.6); }
.text-navy-foreground\/70 { color: hsl(var(--navy-foreground) / 0.7); }
.text-navy-foreground\/80 { color: hsl(var(--navy-foreground) / 0.8); }
.text-teal { color: hsl(var(--teal)); }
.text-teal-foreground { color: hsl(var(--teal-foreground)); }
.text-highlight { color: hsl(var(--highlight)); }
.text-highlight-foreground { color: hsl(var(--highlight-foreground)); }
.text-destructive { color: hsl(var(--destructive)); }
.text-white { color: #fff; }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/30 { color: rgba(255,255,255,0.3); }
.text-gray-800 { color: #1f2937; }
.text-green-600 { color: #16a34a; }
.text-yellow-600 { color: #ca8a04; }
.text-red-600 { color: #dc2626; }

.border-border { border: 1px solid hsl(var(--border)); }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-l-2 { border-left-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.border-navy-light { border-color: hsl(var(--navy-light)); }
.border-navy-light\/40 { border-color: hsl(var(--navy-light) / 0.4); }
.border-navy-light\/60 { border-color: hsl(var(--navy-light) / 0.6); }
.border-teal { border-color: hsl(var(--teal)); }
.border-teal\/30 { border-color: hsl(var(--teal) / 0.3); }
.border-teal\/40 { border-color: hsl(var(--teal) / 0.4); }
.border-gray-200 { border-color: #e5e7eb; }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.border-transparent { border-color: transparent; }

/* ═══════════════════════════════════════════════
   DECORATIONS
   ═══════════════════════════════════════════════ */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded-xl { border-radius: 0.75rem; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.shadow-\[0_0_16px_rgba\(234\,170\,0\,0\.4\)\] { box-shadow: 0 0 16px rgba(234,170,0,0.4); }
.shadow-\[0_-4px_12px_rgba\(0\,0\,0\,0\.2\)\] { box-shadow: 0 -4px 12px rgba(0,0,0,0.2); }
.opacity-60 { opacity: 0.6; }
.outline-none { outline: none; }

/* Object fit */
.object-cover { object-fit: cover; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-\[3\/4\] { aspect-ratio: 3/4; }
.aspect-\[16\/10\] { aspect-ratio: 16/10; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent)); }
.from-highlight\/10 { --tw-gradient-from: hsl(var(--highlight) / 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-teal\/10 { --tw-gradient-to: hsl(var(--teal) / 0.1); }
.from-navy\/80 { --tw-gradient-from: hsl(var(--navy) / 0.8); }
.to-transparent { --tw-gradient-to: transparent; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Positioning helpers */
.top-3 { top: 0.75rem; } .left-3 { left: 0.75rem; }
.right-3 { right: 0.75rem; } .left-4 { left: 1rem; }
.top-1\/2 { top: 50%; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* ═══════════════════════════════════════════════
   TRANSITIONS & HOVER STATES
   ═══════════════════════════════════════════════ */
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 200ms; transition-timing-function: ease; }
.transition-all { transition-property: all; transition-duration: 200ms; transition-timing-function: ease; }
.transition-transform { transition-property: transform; transition-duration: 200ms; transition-timing-function: ease; }
.transition-opacity { transition-property: opacity; transition-duration: 200ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:text-teal:hover { color: hsl(var(--teal)); }
.hover\:text-white:hover { color: #fff; }
.hover\:text-teal-foreground:hover { color: hsl(var(--teal-foreground)); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:bg-muted:hover { background-color: hsl(var(--muted)); }
.hover\:bg-teal:hover { background-color: hsl(var(--teal)); }
.hover\:bg-teal\/90:hover { background-color: hsl(var(--teal) / 0.9); }
.hover\:bg-teal\/20:hover { background-color: hsl(var(--teal) / 0.2); }
.hover\:bg-highlight\/90:hover { background-color: hsl(var(--highlight) / 0.9); }
.hover\:bg-navy-light\/50:hover { background-color: hsl(var(--navy-light) / 0.5); }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-border:hover { background-color: hsl(var(--border)); }
.hover\:border-teal\/40:hover { border-color: hsl(var(--teal) / 0.4); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:gap-3:hover { gap: 0.75rem; }
.hover\:translate-x-1:hover { transform: translateX(0.25rem); }

/* Group hover */
.group:hover .group-hover\:block { display: block; }
.group:hover .group-hover\:text-teal { color: hsl(var(--teal)); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:bg-teal { background-color: hsl(var(--teal)); }
.group:hover .group-hover\:text-teal-foreground { color: hsl(var(--teal-foreground)); }
.group:hover .group-hover\:text-white { color: #fff; }
.group:hover .group-hover\:bg-teal\/20 { background-color: hsl(var(--teal) / 0.2); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

/* Disabled */
.disabled\:opacity-50:disabled { opacity: 0.5; }

/* Focus */
.focus\:border-highlight:focus { border-color: hsl(var(--highlight)); }
.focus\:ring-highlight:focus { box-shadow: 0 0 0 2px hsl(var(--highlight) / 0.3); }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px hsl(var(--ring)); }

/* ═══════════════════════════════════════════════
   COMPONENT CLASSES
   ═══════════════════════════════════════════════ */
.section-padding { padding: 4rem 1rem; }
.container-narrow { max-width: 64rem; margin: 0 auto; }
.container-wide { max-width: 80rem; margin: 0 auto; }
.hero-overlay { position: absolute; inset: 0; background-color: hsl(var(--navy) / 0.8); }
.trust-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; padding: 1rem; font-size: 0.875rem; font-weight: 500; }
.service-card { background-color: hsl(var(--card)); border-radius: var(--radius); border: 1px solid hsl(var(--border)); padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: all 0.3s; }
.service-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

/* SVG icon styling */
.bbu-icon { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; }
.bbu-icon svg { width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse-subtle { 0%, 100% { box-shadow: 0 0 12px rgba(234,170,0,0.3); } 50% { box-shadow: 0 0 20px rgba(234,170,0,0.5); } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-pulse-subtle { animation: pulse-subtle 2s ease-in-out infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll[data-anim-dir="left"] { transform: translateX(-24px); }
.animate-on-scroll[data-anim-dir="right"] { transform: translateX(24px); }
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ═══════════════════════════════════════════════
   DESKTOP DROPDOWN NAV (pure CSS)
   ═══════════════════════════════════════════════ */
[data-dropdown] .dropdown-menu { display: none; }
[data-dropdown]:hover .dropdown-menu { display: block; }

/* ═══════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════ */
#mobile-nav { display: none; }
#mobile-nav.open { display: block; }
.mobile-subnav { display: none; }
.mobile-subnav.open { display: block; }
.mobile-dropdown-toggle svg { transition: transform 0.2s; }
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }

/* ═══════════════════════════════════════════════
   ACCORDION
   ═══════════════════════════════════════════════ */
.accordion-content { display: none; }
.accordion-content.open { display: block; }
.accordion-trigger .accordion-chevron { transition: transform 0.2s; }
.accordion-trigger.open .accordion-chevron { transform: rotate(180deg); }

/* ═══════════════════════════════════════════════
   BEFORE / AFTER SLIDER
   ═══════════════════════════════════════════════ */
.before-after-container { position: relative; overflow: hidden; }
.before-after-clip { position: absolute; inset: 0; overflow: hidden; }
.before-after-clip img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; }
.before-after-handle { position: absolute; top: 0; bottom: 0; z-index: 10; }

/* ═══════════════════════════════════════════════
   PROSE / BLOG TYPOGRAPHY
   ═══════════════════════════════════════════════ */
.prose { max-width: 65ch; color: hsl(var(--muted-foreground)); line-height: 1.75; }
.prose h1, .prose h2, .prose h3, .prose h4 { color: hsl(var(--foreground)); font-weight: 700; margin-top: 2em; margin-bottom: 0.75em; }
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.25rem; }
.prose p { margin-bottom: 1.25em; }
.prose a { color: hsl(var(--teal)); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose img { border-radius: 0.5rem; margin: 1.5em 0; }
.prose ul, .prose ol { padding-left: 1.5em; margin-bottom: 1.25em; }
.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: hsl(var(--teal)); }
.prose blockquote { border-left: 4px solid hsl(var(--teal)); background: hsl(var(--teal-light) / 0.5); padding: 1em 1.25em; border-radius: 0 0.5rem 0.5rem 0; margin: 1.5em 0; font-style: italic; }
.prose blockquote p { margin-bottom: 0; }
.prose strong { color: hsl(var(--foreground)); font-weight: 700; }
.prose code { background: hsl(var(--muted)); padding: 0.15em 0.4em; border-radius: 0.25rem; font-size: 0.875em; }
.prose pre { background: hsl(var(--navy)); color: hsl(var(--navy-foreground)); padding: 1.25em; border-radius: 0.5rem; overflow-x: auto; margin: 1.5em 0; }
.prose pre code { background: none; padding: 0; }
.prose-lg { font-size: 1.125rem; }

/* Search input focus */
input[type="search"]:focus { outline: none; box-shadow: 0 0 0 2px hsl(var(--teal) / 0.4); }
.widget + .widget { margin-top: 2rem; }

/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════ */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:flex-row { flex-direction: row; }
    .sm\:w-auto { width: auto; }
    .sm\:max-w-md { max-width: 28rem; }
}
@media (min-width: 768px) {
    .md\:hidden { display: none !important; }
    .md\:block { display: block !important; }
    .md\:flex { display: flex !important; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:h-12 { height: 3rem; }
    .md\:pb-0 { padding-bottom: 0; }
    .section-padding { padding: 6rem 2rem; }
    .trust-strip { gap: 1.5rem; }
}
@media (min-width: 1024px) {
    .lg\:hidden { display: none !important; }
    .lg\:flex { display: flex !important; }
    .lg\:block { display: block !important; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
    .lg\:text-5xl { font-size: 3rem; }
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
    .section-padding { padding: 6rem 4rem; }
}

/* ═══════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════ */
@media print {
    .print\:hidden { display: none !important; }
    .print\:m-0 { margin: 0 !important; }
    .print\:shadow-none { box-shadow: none !important; }
    .print\:border-0 { border: 0 !important; }
    .print\:bg-navy { background-color: hsl(var(--navy)) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    #mobile-sticky-cta { display: none !important; }
    header { display: none !important; }
    footer { display: none !important; }
}

/* ═══════════════════════════════════════════════
   GALLERY FILTER
   ═══════════════════════════════════════════════ */
.bg-muted-alt { background-color: hsl(var(--muted)); }
.gallery-item { transition: opacity 0.3s, transform 0.3s; }
.gallery-item.gallery-hidden { display: none; }
.gallery-filter-btn.active { background-color: hsl(var(--teal)); color: hsl(var(--teal-foreground)); }
