/* Auto Bridge Pro Theme - Compiled Styles */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Custom Properties */
:root {
  /* Premium Automotive Dark Theme */
  --background: 220 20% 10%;
  --foreground: 210 40% 98%;

  --card: 220 18% 13%;
  --card-foreground: 210 40% 98%;

  --popover: 220 18% 13%;
  --popover-foreground: 210 40% 98%;

  /* Yellow and Green Brand Colors */
  --primary: 60 96% 79%;
  --primary-foreground: 220 20% 10%;
  --brand-yellow: 60 96% 79%;
  --brand-green: 186 80% 19%;

  --secondary: 220 15% 18%;
  --secondary-foreground: 210 40% 98%;

  --muted: 220 15% 20%;
  --muted-foreground: 215 20% 65%;

  --accent: 186 80% 19%;
  --accent-foreground: 220 20% 10%;

  --destructive: 0 84% 60%;
  --destructive-foreground: 210 40% 98%;

  --border: 220 15% 22%;
  --input: 220 15% 18%;
  --ring: 60 96% 79%;

  --radius: 0.75rem;

  /* Custom Colors */
  --lime: 60 96% 79%;
  --lime-glow: 60 98% 82%;
  --navy: 220 40% 15%;
  --navy-light: 220 30% 25%;
  --slate-dark: 220 20% 8%;
  --success: 186 80% 19%;
  --warning: 38 92% 50%;

  /* Gradients - Yellow to Green */
  --gradient-primary: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%));
  --gradient-brand: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%));
  --gradient-dark: linear-gradient(180deg, hsl(220 20% 10%), hsl(220 25% 6%));
  --gradient-card: linear-gradient(145deg, hsl(220 18% 15%), hsl(220 20% 10%));
  --gradient-glow: radial-gradient(ellipse at center, hsl(60 96% 79% / 0.15), hsl(186 80% 19% / 0.15), transparent 70%);

  /* Shadows */
  --shadow-sm: 0 2px 8px hsl(220 40% 4% / 0.3);
  --shadow-md: 0 4px 16px hsl(220 40% 4% / 0.4);
  --shadow-lg: 0 8px 32px hsl(220 40% 4% / 0.5);
  --shadow-glow: 0 0 40px hsl(60 96% 79% / 0.3), 0 0 40px hsl(186 80% 19% / 0.2);
  --shadow-glow-sm: 0 0 20px hsl(60 96% 79% / 0.2), 0 0 20px hsl(186 80% 19% / 0.15);
}

/* Base Styles */
* {
  border-color: hsl(var(--border));
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Outfit', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

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

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

/* Utility Classes */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

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

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

/* Grid Utilities */
.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)); }

@media (min-width: 768px) {
  .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\:flex-row { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:grid { 
    display: grid !important; 
  }
  /* Override hidden class when lg:grid is also present */
  .hidden.lg\:grid {
    display: grid !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\:flex { display: flex; }
  .lg\:hidden { 
    display: none !important; 
    visibility: hidden !important;
  }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-4 { padding-top: 1rem; }
.pt-20 { padding-top: 5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.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; }
.mb-16 { margin-bottom: 4rem; }

/* Typography */
.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; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-right { text-align: right; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Colors */
.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-primary\/20 { background-color: hsl(var(--primary) / 0.2); }
.bg-card\/80 { background-color: hsl(var(--card) / 0.8); }
.bg-card\/90 { background-color: hsl(var(--card) / 0.9); }

.text-foreground { color: hsl(var(--foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }

.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-border { border-color: hsl(var(--border)); }
.border-primary\/30 { border-color: hsl(var(--primary) / 0.3); }
.border-primary\/50 { border-color: hsl(var(--primary) / 0.5); }

/* Sizing */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-full { width: 100%; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.min-h-\[90vh\] { min-height: 90vh; }
.min-h-\[400px\] { min-height: 400px; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Border Radius */
.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; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Custom Components */
.glass {
  background-color: hsl(var(--card) / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border) / 0.5);
}

.glass-strong {
  background-color: hsl(var(--card) / 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid hsl(var(--border) / 0.6);
}

.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: var(--gradient-primary);
}

/* Brand Gradient Utilities */
.bg-brand-gradient {
  background: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%));
}

.text-brand-gradient {
  background: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: hsl(60 96% 79%);
}

.border-brand-gradient {
  border-image: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%)) 1;
}

.hero-gradient {
  background: linear-gradient(to bottom, hsl(220 20% 10% / 0.3), hsl(220 20% 10% / 0.95));
}

.section-gradient {
  background: var(--gradient-dark);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  outline: none;
}

.button:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.button-hero {
  background: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 15px -3px hsl(60 96% 79% / 0.3), 0 10px 15px -3px hsl(186 80% 19% / 0.2);
}

.button-hero:hover {
  background: linear-gradient(135deg, hsl(60 96% 82%), hsl(186 80% 22%));
  box-shadow: 0 20px 25px -5px hsl(60 96% 79% / 0.4), 0 20px 25px -5px hsl(186 80% 19% / 0.3);
  transform: translateY(-2px);
}

.button-hero-outline {
  border: 2px solid hsl(var(--foreground) / 0.2);
  background-color: transparent;
  color: hsl(var(--foreground));
  font-weight: 600;
}

.button-hero-outline:hover {
  background-color: hsl(var(--foreground) / 0.1);
  border-color: hsl(var(--foreground) / 0.4);
}

.button-ghost {
  color: hsl(var(--foreground));
  background-color: transparent;
}

.button-ghost:hover {
  background-color: hsl(var(--secondary));
}

.button-nav {
  color: hsl(var(--muted-foreground));
  background-color: transparent;
  font-weight: 400;
}

.button-nav:hover {
  color: hsl(var(--foreground));
}

.button-sm {
  height: 2.25rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.button-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.button-xl {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px hsl(60 96% 79% / 0.3), 0 0 20px hsl(186 80% 19% / 0.2);
  }
  50% {
    box-shadow: 0 0 40px hsl(60 96% 79% / 0.5), 0 0 40px hsl(186 80% 19% / 0.3);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

/* Transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:bg-primary\/20 {
  background-color: hsl(var(--primary) / 0.2);
}

/* Hover Effects */
.hover\:bg-secondary:hover {
  background-color: hsl(var(--secondary));
}

.hover\:text-primary:hover {
  background: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: hsl(60 96% 79%);
}

.hover\:border-primary\/30:hover {
  border-color: hsl(var(--primary) / 0.3);
}

/* Space Utilities */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Flex Shrink */
.flex-shrink-0 {
  flex-shrink: 0;
}

/* Max Width */
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-md { max-width: 28rem; }

/* Object Fit */
.object-cover {
  object-fit: cover;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(220 20% 10%);
}

::-webkit-scrollbar-thumb {
  background: hsl(220 15% 25%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(220 15% 35%);
}

/* Responsive Utilities */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:w-auto { width: auto; }
}

/* Force menu visibility on large screens */
@media (min-width: 1024px) {
  header nav.hidden.lg\:flex {
    display: flex !important;
  }
  
  header nav ul {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Additional Utilities */
.cursor-pointer {
  cursor: pointer;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background 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-stops));
}

.from-background {
  --tw-gradient-from: hsl(var(--background));
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, hsl(var(--background) / 0));
}

.via-background\/80 {
  --tw-gradient-to: hsl(var(--background) / 0.8);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--background) / 0.8), var(--tw-gradient-to, hsl(var(--background) / 0));
}

.via-background\/90 {
  --tw-gradient-to: hsl(var(--background) / 0.9);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--background) / 0.9), var(--tw-gradient-to, hsl(var(--background) / 0));
}

.to-background\/40 {
  --tw-gradient-to: hsl(var(--background) / 0.4);
}

.to-transparent {
  --tw-gradient-to: transparent;
}

/* Backdrop Blur */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.backdrop-blur-md {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.backdrop-blur-xl {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.backdrop-blur-2xl {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Transform */
.scale-105 {
  transform: scale(1.05);
}

.translate-x-1 {
  transform: translateX(0.25rem);
}

.translate-y-0\.5 {
  transform: translateY(0.125rem);
}

.-translate-y-0\.5 {
  transform: translateY(-0.125rem);
}

/* Transition Duration */
.duration-300 {
  transition-duration: 300ms;
}

.duration-700 {
  transition-duration: 700ms;
}

/* Group Hover Variants */
.group\/btn:hover .group-hover\/btn\:translate-x-1 {
  transform: translateX(0.25rem);
}

/* Text Size Responsive */
@media (min-width: 768px) {
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}

/* Flex Wrap */
.flex-wrap {
  flex-wrap: wrap;
}

/* Text XS */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

/* Absolute Positioning with Specific Values */
.-top-4 {
  top: -1rem;
}

.top-4 {
  top: 1rem;
}

.top-6 {
  top: 1.5rem;
}

.top-10 {
  top: 2.5rem;
}

.right-4 {
  right: 1rem;
}

.right-6 {
  right: 1.5rem;
}

.left-6 {
  left: 1.5rem;
}

.left-\[60\%\] {
  left: 60%;
}

/* Width/Height Specific */
.w-2 {
  width: 0.5rem;
}

.h-2 {
  height: 0.5rem;
}

.w-24 {
  width: 6rem;
}

.h-24 {
  height: 6rem;
}

/* Border Dashed */
.border-dashed {
  border-style: dashed;
}

.border-2 {
  border-width: 2px;
}

/* Rotate */
.rotate-90 {
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .md\:rotate-0 {
    transform: rotate(0deg);
  }
}

/* Text Sizes */
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

/* Z-Index */
.relative.z-10 {
  position: relative;
  z-index: 10;
}

/* Min Height */
.min-h-\[80vh\] {
  min-height: 80vh;
}

.min-h-\[90vh\] {
  min-height: 90vh;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 1;
}

/* Justify End */
.justify-end {
  justify-content: flex-end;
}

/* Space Y */
.space-y-1 > * + * {
  margin-top: 0.25rem;
}

/* Inline Block */
.inline-block {
  display: inline-block;
}

/* WordPress Menu Styling */
.menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.menu-item a {
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

/* Navigation Menu List */
ul.menu,
ul.flex {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

ul.space-y-2 {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 0.5rem;
}

ul.space-y-2 .menu-item {
  width: 100%;
  display: list-item;
}

ul.space-y-2 .menu-item a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  width: 100%;
}

ul.space-y-2 .menu-item a:hover {
  background-color: hsl(var(--secondary));
}

/* Current Menu Item */
.current-menu-item a,
.current-page-item a,
.menu-item.current-menu-item > a,
.menu-item.current-page-item > a {
  background-color: hsl(60 96% 79% / 0.1) !important;
  background: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: hsl(60 96% 79%) !important;
}

/* Ensure menu items are visible */
nav ul,
nav .menu,
nav .flex {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

nav .space-y-2 {
  display: flex !important;
  flex-direction: column !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Force menu visibility in header */
header nav ul,
header nav .menu,
header nav .flex {
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

header nav .menu-item {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  position: static !important;
  box-sizing: border-box !important;
}

/* Prevent any layout shifts on menu items */
header nav .menu-item > a,
header nav .menu-item .button-nav {
  box-sizing: border-box !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* Menu items with children need relative positioning for dropdowns */
header nav .menu-item-has-children {
  position: relative !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* Ensure menu item doesn't move when dropdown opens - critical for stable positioning */
header nav .menu-item-has-children {
  position: relative !important;
  display: inline-block !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
}

/* Lock the link/toggle button position - prevents any movement */
header nav .menu-item-has-children > a,
header nav .menu-item-has-children .dropdown-toggle,
header nav .menu-item-has-children .button-nav {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  transform: none !important;
  top: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  right: auto !important;
  margin: 0 !important;
  padding: 0.5rem 0.75rem !important;
  box-sizing: border-box !important;
  width: auto !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  line-height: inherit !important;
  vertical-align: middle !important;
  float: none !important;
}

/* Dropdown content - must not affect parent layout at all */
header nav .menu-item-has-children .dropdown-content {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  margin-top: 0.5rem !important;
  /* Remove from document flow completely */
  float: none !important;
  clear: none !important;
}

/* Professional Dropdown Menu Styling */
header nav .dropdown-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  position: relative !important;
}

header nav .dropdown-toggle .menu-item-text {
  display: inline-block;
}

header nav .dropdown-toggle .dropdown-arrow {
  width: 14px !important;
  height: 14px !important;
  transition: transform 0.2s ease !important;
  opacity: 0.7 !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

header nav .menu-item-has-children:hover .dropdown-arrow,
header nav .dropdown-toggle:hover .dropdown-arrow {
  opacity: 1 !important;
}

/* Dropdown content styling - Professional Design */
header nav .dropdown-content {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 0.5rem) !important;
  left: 0 !important;
  margin-top: 0 !important;
  width: 14rem !important;
  min-width: 14rem !important;
  max-width: 16rem !important;
  background-color: hsl(var(--card)) !important;
  border: 1px solid hsl(var(--border)) !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 10px 40px hsl(220 40% 4% / 0.5), 0 0 0 1px hsl(var(--border) / 0.5) !important;
  z-index: 9999 !important;
  padding: 0.5rem 0 !important;
  flex-direction: column !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  white-space: nowrap !important;
  overflow: visible !important;
}

header nav .dropdown-content:not(.hidden) {
  display: flex !important;
  flex-direction: column !important;
  animation: dropdownFadeIn 0.2s ease-out !important;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header nav .dropdown-content.hidden {
  display: none !important;
}

/* Professional Dropdown Menu Items */
header nav .dropdown-content .dropdown-item {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  color: hsl(var(--foreground)) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border: none !important;
  text-align: left !important;
  position: relative !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  border-left: 3px solid transparent !important;
  background-color: transparent !important;
  margin: 0 !important;
  cursor: pointer !important;
}

header nav .dropdown-content .dropdown-item:hover {
  background-color: hsl(var(--primary) / 0.1) !important;
  color: hsl(var(--primary)) !important;
  border-left-color: hsl(var(--primary)) !important;
  padding-left: 1.25rem !important;
  transition: all 0.2s ease !important;
}

header nav .dropdown-content .dropdown-item.bg-primary\/10,
header nav .dropdown-content .dropdown-item.text-primary {
  background-color: hsl(var(--primary) / 0.1) !important;
  color: hsl(var(--primary)) !important;
  border-left-color: hsl(var(--primary)) !important;
}

header nav .menu-item a {
  display: inline-block !important;
  padding: 0.5rem 1rem !important;
  text-decoration: none !important;
  white-space: nowrap;
}

/* Force menu visibility */
header nav[role="navigation"] {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

header nav ul {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Mobile menu visibility */
#mobile-menu ul,
#mobile-menu .menu,
#mobile-menu .space-y-2 {
  display: flex !important;
  flex-direction: column !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#mobile-menu .menu-item {
  display: block !important;
  width: 100% !important;
}

#mobile-menu .menu-item a {
  display: block !important;
  width: 100% !important;
}

/* Submenu Support - desktop only (mobile uses #mobile-menu .sub-menu in theme) */
.sub-menu {
  display: none;
  position: absolute;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
  min-width: 200px;
  list-style: none;
}

/* Do not apply absolute positioning to mobile menu submenus - they must stay in flow */
#mobile-menu .sub-menu {
  position: static !important;
  min-width: 0 !important;
}

.menu-item:hover .sub-menu {
  display: block;
}

.sub-menu .menu-item {
  margin: 0;
}

.sub-menu .menu-item a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}

.sub-menu .menu-item a:hover {
  background-color: hsl(var(--secondary));
}

/* Prose Styling for Content */
.prose {
  color: hsl(var(--foreground));
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  color: hsl(var(--foreground));
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 1em;
}

.prose p {
  margin-bottom: 1.25em;
  line-height: 1.75;
}

.prose a {
  color: hsl(var(--primary));
  text-decoration: underline;
}

.prose a:hover {
  color: hsl(var(--primary) / 0.8);
}

.prose ul,
.prose ol {
  margin: 1.25em 0;
  padding-left: 1.625em;
}

.prose li {
  margin: 0.5em 0;
}

.prose img {
  margin: 2em 0;
  border-radius: 0.5rem;
}

.prose blockquote {
  border-left: 4px solid hsl(var(--primary));
  padding-left: 1em;
  margin: 1.5em 0;
  font-style: italic;
  color: hsl(var(--muted-foreground));
}

.prose code {
  background-color: hsl(var(--secondary));
  padding: 0.125em 0.375em;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

.prose pre {
  background-color: hsl(var(--secondary));
  padding: 1em;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5em 0;
}

.prose pre code {
  background-color: transparent;
  padding: 0;
}

/* Pagination */
.page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: all 0.2s;
}

.page-numbers a:hover {
  background: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%));
  color: hsl(var(--primary-foreground));
}

.page-numbers .current {
  background: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%));
  color: hsl(var(--primary-foreground));
}

/* Tags */
.tags-links a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin: 0.25rem;
  background-color: hsl(var(--secondary));
  color: hsl(var(--foreground));
  border-radius: 0.25rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
}

.tags-links a:hover {
  background: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%));
  color: hsl(var(--primary-foreground));
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: all 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: hsl(60 96% 79%);
  box-shadow: 0 0 0 3px hsl(60 96% 79% / 0.1), 0 0 0 3px hsl(186 80% 19% / 0.1);
}

input[type="checkbox"],
input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: hsl(60 96% 79%);
  cursor: pointer;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Language switcher – theme branding (gradient #f9e79f → #1b4d3e, accent #1b4d3e) */
.header-language-switcher {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 40px;
  z-index: 99999;
  font-family: 'Outfit', system-ui, sans-serif;
}

/* Transparent background – design with border only (border-color #57572f) */
.header-language-switcher .gtranslate_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 40px !important;
  overflow: hidden !important;
  background: transparent !important;
  border: 0.5px solid #57572f !important;
  border-radius: 0.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  transition: height 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Desktop: hover opens dropdown. Mobile: tap opens via .is-open (see JS) */
.header-language-switcher:hover .gtranslate_wrapper,
.header-language-switcher.is-open .gtranslate_wrapper {
  height: auto !important;
  background: transparent !important;
  border: 0.5px solid #57572f !important;
  box-shadow: none !important;
  animation: dropdownFadeIn 0.2s ease-out;
}

/* Border-radius only on parent – children transparent, border-only design */
.header-language-switcher .gtranslate_wrapper a.glink {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  height: 40px !important;
  line-height: 40px !important;
  margin: 0 !important;
  padding: 0 0.75rem !important;
  color: #1b4d3e !important;
  text-decoration: none !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 0.5px solid rgba(87, 87, 47, 0.5) !important;
  order: 2;
  transition: color 0.15s ease, border-color 0.15s ease !important;
}

.header-language-switcher .gtranslate_wrapper a.glink:last-child {
  border-bottom: none !important;
}

/* Active language: transparent, border accent */
.header-language-switcher .gtranslate_wrapper a.glink.gt-current-lang {
  order: 1 !important;
  background: transparent !important;
  color: #ffffff !important;
  border-bottom: 0.5px solid rgba(87, 87, 47, 0.5) !important;
}

.header-language-switcher .gtranslate_wrapper a.glink:hover {
  background: transparent !important;
  color: #1b4d3e !important;
  border-bottom: 0.5px solid rgba(87, 87, 47, 0.5) !important;
}

/* Focus visible for accessibility (border-color #57572f, thin outline) */
.header-language-switcher .gtranslate_wrapper a.glink:focus-visible {
  outline: 1px solid #57572f !important;
  outline-offset: 2px !important;
}

/* Language switcher in mobile/tablet header: visible at ≤1024px, next to hamburger */
.mobile-header-layout .header-language-switcher-mobile {
  width: 52px;
  min-width: 52px;
  height: 36px;
  align-self: center;
}
.mobile-header-layout .header-language-switcher-mobile .gtranslate_wrapper {
  height: 36px !important;
  border-radius: 0.5rem !important;
}
.mobile-header-layout .header-language-switcher-mobile.is-open .gtranslate_wrapper {
  height: auto !important;
}
.mobile-header-layout .header-language-switcher-mobile .gtranslate_wrapper a.glink {
  height: 36px !important;
  line-height: 36px !important;
  font-size: 0.8125rem !important; /* theme scale, ~13px */
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-header-layout .header-language-switcher-mobile {
    width: 56px;
    min-width: 56px;
    height: 38px;
  }
  .mobile-header-layout .header-language-switcher-mobile .gtranslate_wrapper {
    height: 38px !important;
    border-radius: 0.5rem !important;
  }
  .mobile-header-layout .header-language-switcher-mobile .gtranslate_wrapper a.glink {
    height: 38px !important;
    line-height: 38px !important;
  }
}

/* Customer / Partner role tabs (Register & Login) – theme design system */
.wheelfy-role-tabs {
  display: flex;
  gap: 0;
  padding: 0.25rem;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.wheelfy-role-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  color: hsl(var(--muted-foreground));
  background-color: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  outline: none;
}

.wheelfy-role-tab:hover {
  color: hsl(var(--foreground));
  background-color: hsl(var(--muted));
}

.wheelfy-role-tab:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.wheelfy-role-tab--active {
  color: hsl(var(--primary-foreground));
  background: linear-gradient(135deg, hsl(60 96% 79%), hsl(186 80% 19%));
  box-shadow: 0 2px 8px hsl(60 96% 79% / 0.25);
}

.wheelfy-role-tab--active:hover {
  background: linear-gradient(135deg, hsl(60 96% 82%), hsl(186 80% 22%));
  color: hsl(var(--primary-foreground));
}

.wheelfy-role-tab svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.wheelfy-role-tabs-radios-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Terms of Use / Privacy Policy – border rgba(87, 87, 47, 0.5) / #57572f, hover theme yellow */
.wheelfy-legal-page {
  background-color: hsl(var(--background));
}

.wheelfy-legal-hero {
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .wheelfy-legal-hero {
    padding: 4rem 0 5rem;
  }
}
.wheelfy-legal-hero .container {
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, rgba(249, 231, 159, 0.12) 0%, rgba(87, 87, 47, 0.2) 100%);
  border: 1px solid rgba(87, 87, 47, 0.5);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(87, 87, 47, 0.2), 0 0 0 1px rgba(249, 231, 159, 0.08);
}
.wheelfy-legal-hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .wheelfy-legal-hero__title {
    font-size: 2.5rem;
  }
}
.wheelfy-legal-hero__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0;
}

.wheelfy-legal-section {
  padding: 0 0 3rem;
}
@media (min-width: 768px) {
  .wheelfy-legal-section {
    padding-bottom: 4rem;
  }
}

.wheelfy-legal-card {
  background: hsl(var(--card));
  border: 1px solid rgba(87, 87, 47, 0.5);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(87, 87, 47, 0.15), 0 0 0 1px rgba(249, 231, 159, 0.06);
}
@media (min-width: 768px) {
  .wheelfy-legal-card {
    padding: 2.5rem 2rem;
  }
}

.wheelfy-legal-prose {
  color: hsl(var(--muted-foreground));
}
.wheelfy-legal-prose h2 {
  color: hsl(var(--foreground));
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(87, 87, 47, 0.5);
}
.wheelfy-legal-prose h3 {
  color: hsl(var(--foreground));
  font-size: 1.1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
}
.wheelfy-legal-prose p {
  margin-bottom: 0.75rem;
}
.wheelfy-legal-prose a {
  color: #f9e79f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wheelfy-legal-prose a:hover {
  color: #fdfd96;
  text-decoration: underline;
}

.wheelfy-legal-contact__heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}
.wheelfy-legal-contact__desc {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.wheelfy-legal-contact__details {
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
}
.wheelfy-legal-contact__details p {
  margin-bottom: 0.5rem;
}
.wheelfy-legal-link {
  color: #f9e79f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wheelfy-legal-link:hover {
  color: #fdfd96;
}

/* Hero CTA micro-trust line — ul.flex sets margin:0 !important; compiled CSS has no .mt-5 / gap-x-8 */
ul.hero-micro-trust {
  list-style: none;
  margin-top: 1.25rem !important;
  margin-bottom: 0;
  padding-left: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 2rem;
  row-gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}