/* 
  BrickFlame Waste Solutions Limited | Custom Stylesheet (Strict Pure CSS)
  Fully responsive layout, beautiful typography, micro-interactions, and themes.
  NO TAILWIND COMPILER dependencies. Built strictly using CSS standard layout rules.
*/

:root {
  --brick-red: #C94A2C;
  --brick-red-hover: #b03e23;
  --flame-orange: #F57C00;
  --gold-yellow: #FFC107;
  --forest-green: #1B5E20;
  --forest-green-hover: #144718;
  --charcoal-black: #212121;
  --med-gray: #9E9E9E;
  
  /* Theme Defaults (Light Theme) */
  --bg-main: #FAF9F6;
  --bg-card: #ffffff;
  --text-main: #1C1917;
  --text-muted: #57534E;
  --text-inverse: #ffffff;
  --border-color: #E7E5E4;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  
  /* Typography */
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

.dark {
  --bg-main: #0F0F10;
  --bg-card: #141416;
  --text-main: #F5F5F7;
  --text-muted: #A1A1AA;
  --text-inverse: #121212;
  --border-color: #27272A;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

/* Base Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
}

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

/* Custom Page & Load Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

@keyframes scaleIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-fadeIn {
  animation: fadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-scaleIn {
  animation: scaleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Scrollbar customizations */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 9999px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* 1. LAYOUT & DISPLAY UTILITIES */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.inline { display: inline; }
.inline-block { display: inline-block; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-1 { top: 0.25rem; }
.top-4 { top: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.left-4 { left: 1rem; }
.left-6 { left: 1.5rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

/* 2. FLEXBOX & GRID ALIGNMENTS */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-full { grid-column: 1 / -1; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* 3. SIZING */
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-1\.5 { width: 0.375rem; }
.h-1\.5 { height: 0.375rem; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-3\.5 { width: 0.875rem; }
.h-3\.5 { height: 0.875rem; }
.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-9 { width: 2.25rem; }
.h-9 { height: 2.25rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-24 { width: 6rem; }
.h-24 { height: 6rem; }
.w-28 { width: 7rem; }
.h-28 { height: 7rem; }
.w-32 { width: 8rem; }
.h-32 { height: 8rem; }
.w-36 { width: 9rem; }
.h-36 { height: 9rem; }
.w-48 { width: 12rem; }
.h-48 { height: 12rem; }
.w-60 { width: 15rem; }
.h-60 { height: 15rem; }
.w-64 { width: 16rem; }
.h-64 { height: 16rem; }
.w-80 { width: 20rem; }
.h-80 { height: 20rem; }

.max-w-0 { max-width: 0px; }
.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mx-auto { margin-left: auto; margin-right: auto; }

.min-h-\[180px\] { min-height: 180px; }
.min-h-\[480px\] { min-height: 480px; }
.min-h-\[60vh\] { min-height: 60vh; }

/* 4. PADDING & MARGIN */
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.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; }

.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.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-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-16 { margin-bottom: 4rem; }

.pt-0 { padding-top: 0px; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-2 { padding-right: 0.5rem; }

/* Spacing Layout Utilities */
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.625rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.space-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 2.5rem; }
.space-y-12 > :not([hidden]) ~ :not([hidden]) { margin-top: 3rem; }
.space-y-16 > :not([hidden]) ~ :not([hidden]) { margin-top: 4rem; }

/* 5. COLORS & DECORATIVE BACKGROUNDS */
.bg-white { background-color: #ffffff; }
.bg-neutral-50 { background-color: #FAF9F6; }
.bg-neutral-100 { background-color: #F5F5F7; }
.bg-neutral-300 { background-color: #D4D4D8; }
.bg-neutral-900 { background-color: #18181B; }
.bg-neutral-950 { background-color: #09090B; }

.bg-brick-red { background-color: var(--brick-red); }
.bg-brick-red\/5 { background-color: rgba(201, 74, 44, 0.05); }
.bg-brick-red\/10 { background-color: rgba(201, 74, 44, 0.1); }
.bg-brick-red\/15 { background-color: rgba(201, 74, 44, 0.15); }
.bg-brick-red\/20 { background-color: rgba(201, 74, 44, 0.2); }

.bg-forest-green\/5 { background-color: rgba(27, 94, 32, 0.05); }
.bg-forest-green\/10 { background-color: rgba(27, 94, 32, 0.1); }
.bg-forest-green\/15 { background-color: rgba(27, 94, 32, 0.15); }
.bg-gold-yellow\/10 { background-color: rgba(255, 193, 7, 0.1); }

.bg-neutral-950\/80 { background-color: rgba(9, 9, 11, 0.8); }
.bg-neutral-800\/80 { background-color: rgba(39, 39, 42, 0.8); }
.bg-neutral-900\/10 { background-color: rgba(24, 24, 27, 0.1); }

.bg-\[\#FAF9F6\] { background-color: #FAF9F6; }
.bg-\[\#FAF9F6\]\/95 { background-color: rgba(250, 249, 246, 0.95); }
.bg-\[\#141416\] { background-color: #141416; }
.bg-\[\#128C7E\] { background-color: #128C7E; }
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-orange-flame { background-color: var(--flame-orange); }
.bg-orange-flame\/10 { background-color: rgba(245, 124, 0, 0.1); }

/* Text colors */
.text-white { color: #ffffff; }
.text-neutral-300 { color: #D4D4D8; }
.text-neutral-400 { color: #A1A1AA; }
.text-neutral-500 { color: #71717A; }
.text-neutral-600 { color: #52525B; }
.text-neutral-700 { color: #3F3F46; }
.text-neutral-800 { color: #27272A; }
.text-neutral-900 { color: #18181B; }
.text-neutral-950 { color: #09090B; }

.text-brick-red { color: var(--brick-red); }
.text-amber-500 { color: #F59E0B; }
.text-forest-green { color: var(--forest-green); }
.text-gold-yellow { color: var(--gold-yellow); }
.text-orange-flame { color: var(--flame-orange); }

/* Gradient supports */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops, var(--brick-red), var(--flame-orange)));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops, #09090b, transparent));
}
.from-brick-red { --tw-gradient-from: var(--brick-red); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(201, 74, 44, 0)); }
.to-orange-flame { --tw-gradient-to: var(--flame-orange); }
.from-neutral-950 { --tw-gradient-from: #09090b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(9, 9, 11, 0)); }
.to-transparent { --tw-gradient-to: transparent; }

/* 6. TYPOGRAPHY */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-3\.5xl { font-size: 2.1rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.leading-none { line-height: 1; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }

.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

/* 7. CORNERS & BORDERS */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid var(--border-color); }
.border-4 { border-width: 4px; border-style: solid; border-color: var(--border-color); }
.border-t { border-top: 1px solid var(--border-color); }
.border-b { border-bottom: 1px solid var(--border-color); }
.border-l { border-left: 1px solid var(--border-color); }
.border-l-4 { border-left: 4px solid var(--border-color); }

.border-brick-red { border-color: var(--brick-red); }
.border-brick-red\/10 { border-color: rgba(201, 74, 44, 0.1); }
.border-brick-red\/25 { border-color: rgba(201, 74, 44, 0.25); }
.border-brick-red\/30 { border-color: rgba(201, 74, 44, 0.3); }
.border-brick-red\/40 { border-color: rgba(201, 74, 44, 0.4); }

.border-forest-green { border-color: var(--forest-green); }
.border-neutral-100 { border-color: #F5F5F7; }
.border-neutral-200 { border-color: #E7E5E4; }
.border-neutral-200\/30 { border-color: rgba(231, 229, 228, 0.3); }
.border-neutral-200\/40 { border-color: rgba(231, 229, 228, 0.4); }
.border-neutral-200\/50 { border-color: rgba(231, 229, 228, 0.5); }
.border-neutral-200\/60 { border-color: rgba(231, 229, 228, 0.6); }
.border-neutral-50 { border-color: #FAF9F6; }
.border-neutral-700 { border-color: #3F3F46; }
.border-neutral-800 { border-color: #27272A; }
.border-neutral-900 { border-color: #18181B; }
.border-white { border-color: #ffffff; }

/* 8. HOVER EFFECTS & TRANSITIONS */
.transition-colors { transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.transition-all { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.transition-opacity { transition: opacity 0.3s ease; }
.transition-shadow { transition: box-shadow 0.3s ease; }
.transition-transform { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in-out { transition-timing-function: ease-in-out; }
.ease-out { transition-timing-function: ease-out; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-\[1\.01\]:hover { transform: scale(1.01); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-2px); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }

.hover\:bg-\[\#075E54\]:hover { background-color: #075E54; }
.hover\:bg-\[\#20ba5a\]:hover { background-color: #20ba5a; }
.hover\:bg-brick-red:hover { background-color: var(--brick-red); }
.hover\:bg-neutral-100:hover { background-color: #E7E5E4; }
.hover\:bg-neutral-200:hover { background-color: #D4D4D8; }
.hover\:bg-neutral-50:hover { background-color: #FAF9F6; }
.hover\:bg-neutral-700\/80:hover { background-color: rgba(63, 63, 70, 0.8); }
.hover\:bg-neutral-950:hover { background-color: #09090B; }
.hover\:bg-orange-flame:hover { background-color: var(--flame-orange); }

.hover\:border-brick-red\/30:hover { border-color: rgba(201, 74, 44, 0.3); }
.hover\:text-brick-red:hover { color: var(--brick-red); }
.hover\:text-neutral-600:hover { color: #52525B; }
.hover\:text-orange-flame:hover { color: var(--flame-orange); }
.hover\:text-white:hover { color: #ffffff; }

.hover\:shadow-md:hover { box-shadow: var(--shadow-md); }

.active\:scale-95:active { transform: scale(0.95); }
.active\:translate-y-0:active { transform: translateY(0); }

/* Parent group hover states */
.group:hover .group-hover\:scale-101 { transform: scale(1.01); }
.group:hover .group-hover\:scale-102 { transform: scale(1.02); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:text-brick-red { color: var(--brick-red); }
.group:hover .group-hover\:max-w-xs { max-width: 20rem; }

/* 9. SHADOWS, BLURS & OTHER EFFECTS */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06); }

.shadow-brick-red\/10 { box-shadow: 0 4px 14px 0 rgba(201, 74, 44, 0.1); }
.shadow-brick-red\/15 { box-shadow: 0 4px 14px 0 rgba(201, 74, 44, 0.15); }
.shadow-brick-red\/20 { box-shadow: 0 4px 14px 0 rgba(201, 74, 44, 0.2); }
.shadow-emerald-500\/10 { box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.1); }
.shadow-neutral-100\/10 { box-shadow: 0 4px 14px 0 rgba(245, 245, 247, 0.1); }

.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.opacity-10 { opacity: 0.1; }
.opacity-35 { opacity: 0.35; }
.blur-2xl { filter: blur(40px); }
.blur-xl { filter: blur(24px); }
.cursor-pointer { cursor: pointer; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.appearance-none { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
.resize-none { resize: none; }

.selection\:bg-brick-red\/20::selection { background-color: rgba(201, 74, 44, 0.2); }
.selection\:text-brick-red::selection { color: var(--brick-red); }

/* Form inputs & interactive states */
.focus\:border-brick-red:focus { border-color: var(--brick-red); }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.placeholder-neutral-400::placeholder { color: #A1A1AA; }
.placeholder-neutral-600::placeholder { color: #52525B; }

/* Typography Lists */
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

/* 10. RESPONSIVE MEDIA QUERIES (Pure CSS Replacement of Tailwind responsive variants) */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:inline { display: inline; }
  .sm\:-left-\[39px\] { left: -39px; }
  .sm\:col-span-1 { grid-column: span 1 / span 1; }
  .sm\:h-72 { height: 18rem; }
  .sm\:h-80 { height: 20rem; }
  .sm\:h-96 { height: 24rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:pl-8 { padding-left: 2rem; }
  .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 2.5rem; }
  .sm\:text-2xl { font-size: 1.5rem; }
  .sm\:text-sm { font-size: 0.875rem; }
  .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .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-\[1fr_2fr\] { grid-template-columns: 1fr 2fr; }
  .md\:min-h-\[580px\] { min-height: 580px; }
  .md\:mt-0 { margin-top: 0px; }
  .md\:mx-0 { margin-left: 0px; margin-right: 0px; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
  .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { margin-top: 4rem; }
  .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { margin-top: 6rem; }
  .md\:text-\[10px\] { font-size: 10px; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .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\:text-6xl { font-size: 3.75rem; }
  .md\:text-left { text-align: left; }
}

@media (min-width: 1024px) {
  .lg\:border-l { border-left-width: 1px; border-left-style: solid; border-left-color: var(--border-color); }
  .lg\:border-neutral-100 { border-color: #F5F5F7; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-16 { gap: 4rem; }
  .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\:grid-cols-\[0\.9fr_1\.1fr\] { grid-template-columns: 0.9fr 1.1fr; }
  .lg\:grid-cols-\[1\.1fr_0\.9fr\] { grid-template-columns: 1.1fr 0.9fr; }
  .lg\:grid-cols-\[1\.2fr_0\.8fr\] { grid-template-columns: 1.2fr 0.8fr; }
  .lg\:grid-cols-\[280px_1fr\] { grid-template-columns: 280px 1fr; }
  .lg\:inline-flex { display: inline-flex; }
  .lg\:pl-6 { padding-left: 1.5rem; }
  .lg\:pl-12 { padding-left: 3rem; }
}

@media (min-width: 1280px) {
  .xl\:flex { display: flex; }
  .xl\:hidden { display: none; }
  .xl\:col-span-1 { grid-column: span 1 / span 1; }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* 11. DARK THEME MODIFIERS */
.dark .dark\:bg-\[\#0F0F10\] { background-color: #0F0F10; }
.dark .dark\:bg-\[\#0F0F10\]\/95 { background-color: rgba(15, 15, 16, 0.95); }
.dark .dark\:bg-\[\#141416\] { background-color: #141416; }
.dark .dark\:bg-\[\#141416\]\/50 { background-color: rgba(20, 20, 22, 0.5); }
.dark .dark\:bg-forest-green\/10 { background-color: rgba(27, 94, 32, 0.1); }
.dark .dark\:bg-neutral-700 { background-color: #3F3F46; }
.dark .dark\:bg-neutral-800 { background-color: #27272A; }
.dark .dark\:bg-neutral-900 { background-color: #18181B; }
.dark .dark\:bg-neutral-900\/40 { background-color: rgba(24, 24, 27, 0.4); }
.dark .dark\:bg-neutral-900\/60 { background-color: rgba(24, 24, 27, 0.6); }
.dark .dark\:bg-neutral-950 { background-color: #09090B; }
.dark .dark\:bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }

.dark .dark\:border-\[\#141416\] { border-color: #141416; }
.dark .dark\:border-neutral-800 { border-color: #27272A; }
.dark .dark\:border-neutral-900 { border-color: #18181B; }

.dark .dark\:hover\:bg-neutral-700:hover { background-color: #3F3F46; }
.dark .dark\:hover\:bg-neutral-900:hover { background-color: #18181B; }
.dark .dark\:hover\:text-brick-red:hover { color: var(--brick-red); }
.dark .dark\:hover\:text-neutral-200:hover { color: #E4E4E7; }

.dark .dark\:shadow-none { box-shadow: none; }

.dark .dark\:text-neutral-200 { color: #E4E4E7; }
.dark .dark\:text-neutral-300 { color: #D4D4D8; }
.dark .dark\:text-neutral-400 { color: #A1A1AA; }
.dark .dark\:text-neutral-500 { color: #71717A; }
.dark .dark\:text-white { color: #ffffff; }

@media (min-width: 1024px) {
  .dark .lg\:dark\:border-neutral-800 { border-color: #27272A; }
}

/* 12. COMPONENT OVERRIDES & BRICKFLAME SPECIAL CLASSES */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeInModal 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  animation: scaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dark .modal-card {
  background: #141416;
  border-color: #27272A;
}

@keyframes scaleUp {
  to { transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--brick-red);
}

.modal-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.modal-header-icon {
  background-color: rgba(201, 74, 44, 0.1);
  color: var(--brick-red);
  padding: 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header-title-group h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.modal-header-title-group p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.modal-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.modal-body-list-box {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.modal-body-list-box h5 {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.modal-body-list-box ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-body-list-box li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.85rem;
}

.modal-body-list-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brick-red);
  font-weight: bold;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.modal-footer-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.5rem 1.25rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-footer-btn:hover {
  background-color: var(--bg-main);
}

.btn-primary {
  background-color: var(--brick-red);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(201, 74, 44, 0.2);
}

.btn-primary:hover {
  background-color: var(--brick-red-hover);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Accordion FAQs */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--brick-red);
  box-shadow: 0 4px 12px -2px rgba(201, 74, 44, 0.05);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  color: var(--text-main);
  transition: color 0.2s ease;
}

.accordion-trigger:hover {
  color: var(--brick-red);
}

.accordion-icon {
  font-size: 1.25rem;
  color: var(--brick-red);
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials Slide styling */
.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-rating {
  color: var(--gold-yellow);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-content {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #D1D5DB;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
}

.testimonial-author-role {
  font-size: 11px;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.testimonials-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1.5rem;
}

.testimonial-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #374151;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-dot.active {
  background: var(--brick-red);
  width: 20px;
  border-radius: 9999px;
}

/* Preloader custom layout support */
#app-preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Text Gradients */
.text-gradient {
  background: linear-gradient(135deg, var(--brick-red), var(--flame-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
