/* ==========================================================================
   Long Island Web Design - WordPress Theme Stylesheet
   Performance-optimized | Mobile-first | Dark Mode Support | PageSpeed 100
   A Lead Marketing Strategies Company
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors - Orange primary */
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fb923c;
  --primary-50: #fff7ed;
  --primary-100: #ffedd5;

  /* Secondary - Navy blue */
  --secondary: #1e3a5f;
  --secondary-dark: #0f2744;
  --secondary-light: #2d5a8a;

  /* Neutrals */
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;

  /* Semantic */
  --success: #22c55e;
  --warning: #eab308;
  --error: #ef4444;
  --info: #3b82f6;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);

  /* Fluid Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.27vw, 0.95rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.38vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.55rem + 1.6vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.8rem + 2.25vw, 3.25rem);
  --text-5xl: clamp(2.75rem, 2.1rem + 3.25vw, 4rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1280px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* Borders */
  --radius: 0.5rem;
  --radius-sm: 0.375rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.06);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
}

/* --------------------------------------------------------------------------
   Dark Mode Variables
   -------------------------------------------------------------------------- */
html.dark {
  color-scheme: dark;

  --gray-50: #18181b;
  --gray-100: #27272a;
  --gray-200: #3f3f46;
  --gray-300: #52525b;
  --gray-400: #71717a;
  --gray-500: #a1a1aa;
  --gray-600: #d4d4d8;
  --gray-700: #e4e4e7;
  --gray-800: #f4f4f5;
  --gray-900: #fafafa;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -2px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.4);
}

/* --------------------------------------------------------------------------
   CSS Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

html.dark body {
  background: var(--secondary);
  color: var(--gray-600);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  text-wrap: balance;
}

html.dark h1,
html.dark h2,
html.dark h3,
html.dark h4,
html.dark h5,
html.dark h6 {
  color: var(--white);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { text-wrap: pretty; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--space-3xl);
}

@media (min-width: 768px) {
  .section { padding-block: var(--space-4xl); }
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  /* Use GPU-accelerated transform for smooth transitions */
  transform: translateZ(0);
  backface-visibility: hidden;
}

html.dark .header {
  background: var(--secondary);
  border-bottom-color: var(--gray-200);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

html.dark .header.scrolled {
  background: rgba(30, 58, 95, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: 70px;
}

@media (min-width: 1024px) {
  .header-inner { height: 80px; }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--duration-fast);
}

.logo:hover { opacity: 0.85; }

.logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .logo img { height: 45px; }
}

@media (min-width: 1024px) {
  .logo img { height: 50px; }
}

/* Navigation */
.nav-main {
  display: none;
  align-items: center;
  gap: var(--space-xs);
}

@media (min-width: 1024px) {
  .nav-main { display: flex; }
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: color var(--duration-fast), background var(--duration-fast);
}

html.dark .nav-link {
  color: var(--white);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
  background: var(--gray-50);
}

html.dark .nav-link:hover,
html.dark .nav-link:focus {
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  max-width: 90vw;
  padding: var(--space-sm);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--duration-fast) var(--ease-out),
              visibility var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  z-index: var(--z-dropdown);
}

/* Prevent dropdown overflow on right side */
.nav-dropdown:last-child .nav-dropdown-menu,
.nav-dropdown:nth-last-child(2) .nav-dropdown-menu,
.nav-dropdown:nth-last-child(3) .nav-dropdown-menu {
  left: auto;
  right: 0;
}

/* Alternative: center dropdowns on smaller screens */
@media (max-width: 1200px) {
  .nav-dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown:last-child .nav-dropdown-menu,
  .nav-dropdown:nth-last-child(2) .nav-dropdown-menu,
  .nav-dropdown:nth-last-child(3) .nav-dropdown-menu {
    left: auto;
    right: 0;
    transform: translateY(10px);
  }

  .nav-dropdown:last-child:hover .nav-dropdown-menu,
  .nav-dropdown:nth-last-child(2):hover .nav-dropdown-menu,
  .nav-dropdown:nth-last-child(3):hover .nav-dropdown-menu,
  .nav-dropdown:last-child:focus-within .nav-dropdown-menu,
  .nav-dropdown:nth-last-child(2):focus-within .nav-dropdown-menu,
  .nav-dropdown:nth-last-child(3):focus-within .nav-dropdown-menu {
    transform: translateY(0);
  }
}

html.dark .nav-dropdown-menu {
  background: var(--secondary-dark);
  border-color: var(--gray-200);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: color var(--duration-fast), background var(--duration-fast);
}

html.dark .nav-dropdown-link {
  color: var(--gray-600);
}

.nav-dropdown-link:hover {
  color: var(--primary);
  background: var(--gray-50);
}

html.dark .nav-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown item with icon */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: background var(--duration-fast);
}

.dropdown-item:hover {
  background: var(--gray-50);
}

html.dark .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.dropdown-title {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-900);
}

html.dark .dropdown-title {
  color: var(--white);
}

.dropdown-desc {
  display: block;
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .header-cta { display: flex; }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: color var(--duration-fast);
}

html.dark .header-phone {
  color: var(--white);
}

.header-phone:hover {
  color: var(--primary);
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  transition: all var(--duration-fast);
}

/* Mobile Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: var(--space-sm);
  border-radius: var(--radius);
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: calc(var(--z-sticky) + 10);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

html.dark .nav-toggle span {
  background: var(--white);
}

/* Hamburger to X animation */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-toggle { display: none !important; }
}

/* Mobile Nav Links */
.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: var(--space-md);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-lg);
  transition: all var(--duration-fast);
}

html.dark .mobile-nav-link {
  color: var(--white);
}

.mobile-nav-link:hover {
  color: var(--primary);
  background: var(--gray-50);
}

html.dark .mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-sublink {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  color: var(--gray-600);
  border-radius: var(--radius);
  transition: color var(--duration-fast);
}

html.dark .mobile-nav-sublink {
  color: var(--gray-500);
}

.mobile-nav-sublink:hover {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Skip Link (Accessibility)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: var(--space-md) var(--space-xl);
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: top var(--duration-fast);
}

.skip-link:focus {
  top: var(--space-md);
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px;
}

.sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Top Bar (Complete Styles)
   -------------------------------------------------------------------------- */
.top-bar {
  display: none;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: var(--text-sm);
}

@media (min-width: 1024px) {
  .top-bar { display: block; }
}

html.dark .top-bar {
  background: var(--secondary-dark);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.top-bar-contact,
.top-bar-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gray-600);
  transition: color var(--duration-fast);
}

html.dark .top-bar-link {
  color: var(--gray-400);
}

.top-bar-link:hover {
  color: var(--primary);
}

.top-bar-divider {
  color: var(--gray-300);
}

html.dark .top-bar-divider {
  color: var(--gray-600);
}

.top-bar-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gray-600);
}

html.dark .top-bar-rating {
  color: var(--gray-400);
}

.top-bar-rating .stars {
  color: #fbbf24;
  letter-spacing: -1px;
}

.top-bar-meta span {
  color: var(--gray-500);
}

html.dark .top-bar-meta span {
  color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   Logo Variants
   -------------------------------------------------------------------------- */
.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

html.dark .logo-light {
  display: none;
}

html.dark .logo-dark {
  display: block;
}

/* --------------------------------------------------------------------------
   Navigation Arrow
   -------------------------------------------------------------------------- */
.nav-arrow {
  margin-left: var(--space-xs);
  transition: transform var(--duration-fast);
}

.nav-arrow.is-open {
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   Mega Menu
   -------------------------------------------------------------------------- */
.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1400px;
  top: 100%;
  z-index: 9999;
  padding-top: var(--space-sm);
}

/* Alpine.js transition classes */
.menu-enter {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-leave {
  transition: opacity 0.15s ease, transform 0.15s ease;
}

[x-cloak] {
  display: none !important;
}

.mega-menu-inner {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow-2xl);
}

html.dark .mega-menu-inner {
  background: var(--secondary-dark);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

.mega-menu-grid-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
}

.mega-menu-column {
  min-width: 0;
}

.mega-menu-heading {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

html.dark .mega-menu-heading {
  color: var(--white);
}

.mega-menu-heading-sm {
  font-size: var(--text-xs);
}

.mega-menu-heading .icon {
  color: var(--primary);
}

.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mega-menu-list-sm a {
  font-size: var(--text-sm);
  padding: var(--space-xs) 0;
}

.mega-menu-list a {
  display: block;
  padding: var(--space-xs) 0;
  color: var(--gray-600);
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}

html.dark .mega-menu-list a {
  color: var(--gray-400);
}

.mega-menu-list a:hover {
  color: var(--primary);
}

.mega-menu-more {
  color: var(--primary) !important;
  font-weight: 600;
}

.mega-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--gray-100);
}

html.dark .mega-menu-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.mega-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
  font-weight: 600;
  transition: color var(--duration-fast);
}

.mega-menu-cta:hover {
  color: var(--primary-dark);
}

.mega-menu-note {
  color: var(--gray-500);
  font-size: var(--text-sm);
}

/* Menu Transitions */
[x-cloak] { display: none !important; }

.menu-enter {
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}

.menu-leave {
  transition: opacity 150ms ease-in, transform 150ms ease-in;
}

/* --------------------------------------------------------------------------
   Header CTA & Utilities
   -------------------------------------------------------------------------- */
.header-divider {
  width: 1px;
  height: 24px;
  background: var(--gray-200);
}

html.dark .header-divider {
  background: var(--gray-600);
}

.header-phone-text {
  display: none;
}

@media (min-width: 1280px) {
  .header-phone-text { display: inline; }
}

.header-mobile {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

@media (min-width: 1024px) {
  .header-mobile { display: none; }
}

/* --------------------------------------------------------------------------
   Mobile Menu (Full Screen)
   -------------------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  overflow-y: auto;
  z-index: var(--z-overlay);
}

html.dark .mobile-menu {
  background: var(--secondary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-lg) 0;
}

.mobile-nav-group {
  border-bottom: 1px solid var(--gray-100);
}

html.dark .mobile-nav-group {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle {
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-nav-submenu {
  padding-left: var(--space-md);
  padding-bottom: var(--space-md);
  overflow: hidden;
}

/* JS fallback - submenus hidden by default */
.mobile-nav-submenu[style*="display: none"] + .mobile-nav-toggle .nav-arrow,
.mobile-nav-toggle:not(.is-open) + .mobile-nav-submenu {
  /* Handled by JS */
}

.mobile-nav-toggle.is-open .nav-arrow {
  transform: rotate(180deg);
}

.mobile-nav-more {
  color: var(--primary) !important;
  font-weight: 600;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--gray-100);
  margin-top: var(--space-md);
}

html.dark .mobile-cta {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.mobile-badge {
  text-align: center;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--gray-100);
}

html.dark .mobile-badge {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.mobile-badge a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-500);
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}

.mobile-badge a:hover {
  color: var(--primary);
}

.mobile-badge strong {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.text-primary {
  color: var(--primary);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow:
    0 4px 15px -3px rgba(249,115,22,0.4),
    0 0 0 1px rgba(249,115,22,0.1) inset;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px -5px rgba(249,115,22,0.5),
    0 0 0 1px rgba(255,255,255,0.2) inset;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px -3px rgba(30,58,95,0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px -5px rgba(30,58,95,0.5),
    0 0 0 1px rgba(255,255,255,0.1) inset;
}

.btn-accent {
  background: rgba(255,255,255,0.95);
  color: var(--secondary);
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 15px -3px rgba(0,0,0,0.1),
    0 0 0 1px rgba(255,255,255,0.5) inset;
  border-color: var(--white);
}

.btn-accent:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px -5px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,255,255,0.8) inset;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
  border-radius: var(--radius-xl);
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  transform: translateY(-3px);
}

html.dark .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

html.dark .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* --------------------------------------------------------------------------
   Hero Section - Premium 2026 Design with Light/Dark Mode
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249,115,22,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(59,130,246,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  color: var(--gray-900);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Dark mode hero */
html.dark .hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249,115,22,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(59,130,246,0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  color: var(--white);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }
}

/* Subtle animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: hero-orb-1 20s ease-in-out infinite;
  pointer-events: none;
}

html.dark .hero::before {
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: hero-orb-2 25s ease-in-out infinite;
  pointer-events: none;
}

html.dark .hero::after {
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
}

@keyframes hero-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -10px) scale(0.95); }
}

@keyframes hero-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-content {
  position: relative;
  display: grid;
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0;
  align-items: center;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    padding: var(--space-4xl) 0;
  }
}

.hero-text {
  max-width: 600px;
}

@media (min-width: 1024px) {
  .hero-text {
    max-width: none;
  }
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-lg);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

html.dark .hero-title {
  color: var(--white);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--text-5xl);
  }
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.dark .hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

html.dark .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (max-width: 480px) {
  .hero-cta {
    flex-wrap: wrap;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Premium Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: var(--space-lg);
}

html.dark .hero-badge {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--warning);
  fill: var(--warning);
}

/* Hero Trust Items */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--gray-600);
}

html.dark .hero-trust-item {
  color: rgba(255, 255, 255, 0.85);
}

.hero-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

/* Hero Floating Stats */
.hero-floating-stats {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
}

@media (min-width: 1024px) {
  .hero-floating-stats {
    display: flex;
  }
}

.hero-floating-stat {
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  text-align: center;
  min-width: 140px;
}

html.dark .hero-floating-stat {
  background: var(--gray-800);
}

.hero-floating-stat-number {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.hero-floating-stat-label {
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-weight: 500;
}

html.dark .hero-floating-stat-label {
  color: var(--gray-400);
}

/* Hero Image Container */
.hero-image {
  display: none;
  position: relative;
  /* Allow space for floating elements that extend beyond bounds */
  margin: 0 -20px;
  padding: 20px;
}

@media (min-width: 1024px) {
  .hero-image {
    display: block;
    min-height: 500px;
    margin: 0;
    padding: 0;
    /* Create extra space for illustration elements */
    margin-right: -40px;
    padding-right: 40px;
  }
}

/* --------------------------------------------------------------------------
   Prose (Rich Text Content)
   -------------------------------------------------------------------------- */
.prose {
  color: var(--gray-700);
  max-width: 65ch;
}

html.dark .prose {
  color: var(--gray-300);
}

.prose p {
  margin-bottom: var(--space-lg);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--duration-fast);
}

.prose a:hover {
  color: var(--primary-dark);
}

.prose strong {
  font-weight: 600;
  color: var(--gray-900);
}

html.dark .prose strong {
  color: var(--white);
}

.prose ul,
.prose ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

.prose li {
  margin-bottom: var(--space-sm);
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.prose blockquote {
  border-left: 4px solid var(--primary);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--gray-600);
}

html.dark .prose blockquote {
  color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   Entry Content (WYSIWYG / ACF)
   -------------------------------------------------------------------------- */
.entry-content {
  color: var(--gray-700);
  line-height: 1.8;
}

html.dark .entry-content {
  color: var(--gray-400);
}

.entry-content p {
  margin-bottom: var(--space-md);
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-content a:hover {
  color: var(--primary-dark);
}

.entry-content ul,
.entry-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.entry-content li {
  margin-bottom: var(--space-sm);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--gray-900);
}

html.dark .entry-content h2,
html.dark .entry-content h3,
html.dark .entry-content h4 {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   About Page Hero Illustration
   -------------------------------------------------------------------------- */
.hi-about .hi-shape {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: var(--space-sm);
}

.hero .section-label {
  color: var(--primary-light);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.75;
}

html.dark .section-subtitle {
  color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   Card Component - Premium 2026 Style
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.05);
  transition: all var(--duration-base) var(--ease-out);
}

html.dark .card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.card:hover {
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

a.card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.card:hover {
  border-color: var(--primary);
}

/* --------------------------------------------------------------------------
   Service Cards
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  transition: all var(--duration-base) var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--duration-base);
}

html.dark .service-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  border-color: transparent;
  box-shadow:
    0 20px 40px -15px rgba(0,0,0,0.1),
    0 0 0 1px var(--primary);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
}

html.dark .service-card:hover {
  background: rgba(255,255,255,0.05);
  box-shadow:
    0 20px 40px -15px rgba(0,0,0,0.3),
    0 0 0 1px var(--primary);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-lg);
  box-shadow: 0 10px 30px -10px rgba(249,115,22,0.5);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.service-icon-wrapper {
  margin-bottom: var(--space-lg);
}

.service-icon-wrapper .service-icon {
  font-size: 2rem;
  margin-bottom: 0;
}

.service-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.service-description {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--primary-50);
  color: var(--primary-dark);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

html.dark .service-price {
  background: rgba(249, 115, 22, 0.2);
  color: var(--primary-light);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--duration-fast);
}

.service-link:hover {
  gap: var(--space-md);
}

/* --------------------------------------------------------------------------
   CTA Section - Light/Dark Mode
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 120%, rgba(249,115,22,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: var(--gray-900);
  text-align: center;
  overflow: hidden;
}

html.dark .cta-section {
  background:
    radial-gradient(ellipse 80% 50% at 50% 120%, rgba(249,115,22,0.2) 0%, transparent 50%),
    linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 60%);
  pointer-events: none;
}

html.dark .cta-section::before {
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  z-index: 1;
}

.cta-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

html.dark .cta-title {
  color: var(--white);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: var(--text-4xl);
  }
}

.cta-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 580px;
  margin-inline: auto;
}

html.dark .cta-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.cta-phone {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

html.dark .cta-phone {
  color: rgba(255, 255, 255, 0.7);
}

.cta-phone a {
  color: var(--primary);
  font-weight: 600;
  transition: color var(--duration-fast);
}

html.dark .cta-phone a {
  color: var(--primary-light);
}

.cta-phone a:hover {
  color: var(--primary-dark);
}

html.dark .cta-phone a:hover {
  color: var(--white);
}

.cta-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

html.dark .cta-label {
  color: var(--primary-light);
}

/* --------------------------------------------------------------------------
   Footer - Light Mode (Default)
   -------------------------------------------------------------------------- */
.footer {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  color: var(--gray-700);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-lg);
  border-top: 1px solid var(--gray-200);
}

/* Footer - Dark Mode */
html.dark .footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, #0a1628 100%);
  color: var(--gray-300);
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* Logo visibility based on theme */
.footer-logo-light { display: block; }
.footer-logo-dark { display: none; }
html.dark .footer-logo-light { display: none; }
html.dark .footer-logo-dark { display: block; }

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
  }
}

/* Mobile footer improvements */
@media (max-width: 639px) {
  .footer {
    padding-top: var(--space-2xl);
    text-align: center;
  }

  .footer-grid {
    gap: var(--space-xl);
  }

  .footer-brand {
    max-width: none;
    margin-bottom: var(--space-md);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-description {
  font-size: var(--text-sm);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  color: var(--gray-600);
}

html.dark .footer-description {
  color: var(--gray-400);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-200);
  color: var(--gray-600);
  border-radius: var(--radius-lg);
  transition: background var(--duration-fast), transform var(--duration-fast), color var(--duration-fast);
}

html.dark .footer-social a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray-300);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
}

html.dark .footer-heading {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--gray-600);
  transition: color var(--duration-fast);
}

html.dark .footer-links a {
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: var(--gray-600);
}

html.dark .footer-contact-item {
  color: var(--gray-400);
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
}

.footer-contact-item a {
  color: var(--gray-700);
  transition: color var(--duration-fast);
}

html.dark .footer-contact-item a {
  color: var(--gray-300);
}

.footer-contact-item a:hover {
  color: var(--primary);
}

/* Footer Theme Toggle */
.footer-theme-toggle {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
}

html.dark .footer-theme-toggle {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.footer-theme-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

html.dark .footer-theme-label {
  color: var(--gray-300);
}

.footer-theme-buttons {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.footer-theme-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration-fast);
}

html.dark .footer-theme-btn {
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-theme-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(249, 115, 22, 0.05);
}

.footer-theme-btn.active {
  color: var(--primary);
  background: rgba(249, 115, 22, 0.1);
  border-color: var(--primary);
}

.footer-theme-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .footer-theme-toggle {
    text-align: left;
  }

  .footer-theme-buttons {
    justify-content: flex-start;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--gray-200);
  font-size: var(--text-sm);
}

html.dark .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

.footer-copyright {
  color: var(--gray-500);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal a {
  color: var(--gray-500);
  transition: color var(--duration-fast);
}

.footer-legal a:hover {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background: var(--gray-50);
}

html.dark .top-bar {
  background: var(--secondary-dark);
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
  background: var(--gray-50);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-200);
}

html.dark .breadcrumbs {
  background: var(--secondary-dark);
  border-bottom-color: var(--gray-200);
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
}

.breadcrumbs-item:not(:last-child)::after {
  content: '/';
  margin-left: var(--space-sm);
  color: var(--gray-400);
}

.breadcrumbs-link {
  color: var(--gray-500);
  transition: color var(--duration-fast);
}

.breadcrumbs-link:hover {
  color: var(--primary);
}

.breadcrumbs-current {
  color: var(--gray-800);
  font-weight: 500;
}

html.dark .breadcrumbs-current {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Star Rating
   -------------------------------------------------------------------------- */
.star-rating {
  display: flex;
  gap: 2px;
}

.star-rating .star {
  color: var(--warning);
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

html.dark .faq-item {
  background: var(--secondary-dark);
}

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-lg);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  cursor: pointer;
}

html.dark .faq-question {
  color: var(--white);
}

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform var(--duration-fast), color var(--duration-fast);
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--gray-600);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
}

html.dark .form-label {
  color: var(--gray-600);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  color: var(--gray-900);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

html.dark .form-input,
html.dark .form-textarea,
html.dark .form-select {
  background: var(--secondary-dark);
  color: var(--white);
  border-color: var(--gray-200);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--gray-500); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

.hidden { display: none; }

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
}

/* Overflow hidden for mobile menu */
body.overflow-hidden {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Mega Menu
   -------------------------------------------------------------------------- */
.mega-menu-panel {
  z-index: var(--z-dropdown);
}

.mega-menu-heading {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--primary);
}

html.dark .mega-menu-heading {
  color: var(--white);
}

.mega-menu-heading svg {
  color: var(--primary);
}

.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mega-menu-list li a {
  display: block;
  padding: var(--space-xs) 0;
  font-size: var(--text-sm);
  color: var(--gray-600);
  transition: color var(--duration-fast), padding-left var(--duration-fast);
}

html.dark .mega-menu-list li a {
  color: var(--gray-500);
}

.mega-menu-list li a:hover {
  color: var(--primary);
  padding-left: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Hero Badge & Stats (Extended Styles)
   -------------------------------------------------------------------------- */
/* Note: Main .hero-badge styles are in Hero section above.
   These are additional/override styles for specific hero variants */

.hero-badge-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.hero-badge-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
}

html.dark .hero-badge-text {
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge-divider {
  width: 1px;
  height: 16px;
  background: var(--gray-300);
}

html.dark .hero-badge-divider {
  background: rgba(255, 255, 255, 0.3);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-stat-icon {
  width: 20px;
  height: 20px;
  color: #4ade80;
  flex-shrink: 0;
}

.hero-stat-text {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

html.dark .hero-stat-text {
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
  position: relative;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
  color: var(--gray-700);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

html.dark .trust-bar {
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  color: var(--white);
  border-color: rgba(255,255,255,0.1);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg) var(--space-2xl);
  text-align: center;
}

@media (min-width: 1024px) {
  .trust-bar-inner {
    justify-content: space-between;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--duration-fast);
}

html.dark .trust-item {
  color: rgba(255,255,255,0.9);
}

.trust-item:hover {
  color: var(--gray-900);
}

html.dark .trust-item:hover {
  color: var(--white);
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Service Icon Wrapper (for emojis)
   -------------------------------------------------------------------------- */
.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
  border: 1px solid var(--gray-200);
}

html.dark .service-icon-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-icon-wrapper .service-icon {
  font-size: 2rem;
  line-height: 1;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* --------------------------------------------------------------------------
   Feature Cards (Why Choose Us)
   -------------------------------------------------------------------------- */
.section-alt {
  background:
    linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

html.dark .section-alt {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
}

html.dark .section-alt::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.features-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  position: relative;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  transition: all var(--duration-base) var(--ease-out);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(249,115,22,0.02) 100%);
  opacity: 0;
  transition: opacity var(--duration-base);
}

.feature-card:hover::after {
  opacity: 1;
}

html.dark .feature-card {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  border-color: rgba(249,115,22,0.3);
  box-shadow:
    0 25px 50px -15px rgba(0,0,0,0.08),
    0 0 0 1px rgba(249,115,22,0.1);
  transform: translateY(-8px);
}

html.dark .feature-card:hover {
  background: rgba(255,255,255,0.04);
  box-shadow:
    0 25px 50px -15px rgba(0,0,0,0.3),
    0 0 0 1px rgba(249,115,22,0.2);
}

.feature-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  margin-bottom: var(--space-lg);
  box-shadow:
    0 15px 35px -10px rgba(249,115,22,0.4),
    0 0 0 8px rgba(249,115,22,0.1);
  z-index: 1;
}

html.dark .feature-icon-wrapper {
  box-shadow:
    0 15px 35px -10px rgba(249,115,22,0.3),
    0 0 0 8px rgba(249,115,22,0.15);
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.feature-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.feature-description {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Stats Section (Luxury Typography - No + Signs)
   -------------------------------------------------------------------------- */
.stats-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  padding: var(--space-lg);
}

.stat-item {
  padding: var(--space-md);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

.stat-prefix {
  font-size: var(--text-lg);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-star {
  width: 32px;
  height: 32px;
  color: #fbbf24;
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Industries Grid
   -------------------------------------------------------------------------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(8, 1fr); }
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: var(--space-lg);
  }
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
}

html.dark .industry-card {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
}

.industry-card:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-50) 100%);
  box-shadow:
    0 20px 40px -15px rgba(249,115,22,0.15),
    0 0 0 1px var(--primary);
  transform: translateY(-6px) scale(1.02);
}

html.dark .industry-card:hover {
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(249,115,22,0.05) 100%);
  box-shadow:
    0 20px 40px -15px rgba(0,0,0,0.3),
    0 0 0 1px var(--primary);
}

.industry-icon {
  font-size: 2.5rem;
  line-height: 1;
  transition: transform var(--duration-base);
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
}

.industry-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
}

html.dark .industry-name {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Testimonials Grid
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

html.dark .testimonial-card {
  background: var(--secondary);
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-star {
  width: 20px;
  height: 20px;
  color: #fbbf24;
}

.testimonial-quote {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

html.dark .testimonial-quote {
  color: var(--gray-500);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

html.dark .testimonial-avatar {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%);
}

.testimonial-name {
  font-weight: 600;
  color: var(--gray-900);
}

html.dark .testimonial-name {
  color: var(--white);
}

.testimonial-company {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

/* --------------------------------------------------------------------------
   Locations Showcase
   -------------------------------------------------------------------------- */
.locations-showcase {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .locations-showcase { grid-template-columns: repeat(3, 1fr); }
}

.location-region {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

html.dark .location-region {
  background: var(--secondary-dark);
  border-color: rgba(255, 255, 255, 0.1);
}

.location-region-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
}

html.dark .location-region-title {
  color: var(--white);
}

.location-region-title svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.location-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: var(--text-sm);
  border-radius: var(--radius);
  transition: all var(--duration-fast);
}

html.dark .location-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray-500);
}

.location-tag:hover {
  background: var(--primary);
  color: var(--white);
}

.location-tag-more {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.location-tag-more:hover {
  background: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   Parent Badge Section
   -------------------------------------------------------------------------- */
.parent-badge-section {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.parent-badge-label {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}

.parent-badge-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
  transition: color var(--duration-fast);
}

.parent-badge-link:hover {
  color: var(--primary-dark);
}

.parent-badge-description {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-top: var(--space-sm);
  max-width: 400px;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Responsive Grid Utilities (for inline styles in templates)
   -------------------------------------------------------------------------- */
/* Two-column layouts collapse on mobile */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1.5fr"] {
    grid-template-columns: 1fr !important;
    gap: var(--space-xl) !important;
  }
}

/* --------------------------------------------------------------------------
   Icon Utilities
   -------------------------------------------------------------------------- */
.icon-sm {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-md {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon-lg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Footer Contact Icons
   -------------------------------------------------------------------------- */
.footer-contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.footer-parent {
  display: block;
  margin-top: var(--space-xs);
}

@media (min-width: 640px) {
  .footer-parent {
    display: inline;
    margin-top: 0;
    margin-left: var(--space-sm);
  }
}

.footer-parent a {
  color: var(--primary);
  font-weight: 500;
  transition: color var(--duration-fast);
}

.footer-parent a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Header Scroll Transitions (Smooth hide/show)
   -------------------------------------------------------------------------- */
.header {
  transform: translateY(0);
  /* Single transition definition - smooth and GPU accelerated */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s ease-out,
              background-color 0.2s ease-out;
}

.header.hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

/* Scrolled state - only add shadow, no transform changes */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --------------------------------------------------------------------------
   Service Card Additional Styles (Archive Pages)
   -------------------------------------------------------------------------- */
.service-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

html.dark .service-title {
  color: var(--white);
}

.service-description {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

html.dark .service-description {
  color: var(--gray-400);
}

.service-price {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-50);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

html.dark .service-price {
  background: rgba(249, 115, 22, 0.1);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--duration-fast);
}

.service-link svg {
  transition: transform var(--duration-fast);
}

.service-card:hover .service-link {
  gap: var(--space-sm);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Hero Visual Container
   -------------------------------------------------------------------------- */
.hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .header,
  .footer,
  .cta-section,
  .nav-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}

/* --------------------------------------------------------------------------
   Component Imports
   -------------------------------------------------------------------------- */
@import url('components/hero-visual.css');
@import url('components/team-founders.css');
