/* ========================================
   Flood Cleanup Pros - Premium UI/UX Design
   Design System: Elevated Trust & Authority
   Version: 2.0 - Professional Premium Aesthetic
   ======================================== */

/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
  /* Primary Palette - Deep Trust & Authority */
  --color-primary: #0a1628;
  --color-primary-light: #1a2d4a;
  --color-secondary: #2563eb;
  --color-secondary-light: #3b82f6;
  --color-accent: #f59e0b;
  --color-accent-light: #fbbf24;

  /* Neutral Palette */
  --color-background: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #0a0f1a;
  --color-text-muted: #475569;
  --color-border: #e2e8f0;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #0ea5e9;

  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 22, 40, 1) 0%, rgba(10, 22, 40, 0.95) 40%, rgba(10, 22, 40, 0.90) 100%);

  /* Spacing Scale */
  --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;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Shadows - Premium Depth */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* ========================================
   CSS Reset & Base Styles
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
  text-align: left;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
  line-height: 1.7;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 768px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-2xl {
  margin-bottom: var(--space-2xl);
}

/* ========================================
   SVG Icon System
   ======================================== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-xs {
  width: 16px;
  height: 16px;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 40px;
  height: 40px;
}

.icon-2xl {
  width: 48px;
  height: 48px;
}

/* Icon with gradient background wrapper */
.icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Icon Colors */
.icon-primary {
  color: var(--color-primary);
}

.icon-secondary {
  color: var(--color-secondary);
}

.icon-accent {
  color: var(--color-accent);
}

.icon-white {
  color: white;
}

.icon-success {
  color: var(--color-success);
}

/* Check icon for hero trust items */
.hero-trust-item::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* SVG replacements for emoji pseudo-elements */
.hero-badge::before {
  content: '';
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'%3E%3C/polygon%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.header-phone::before {
  content: '';
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ========================================
   Premium Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 99, 235, 0.4);
  color: white;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(245, 158, 11, 0.4);
  color: white;
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

/* Pulse animation for emergency CTA */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
  }
}

.btn-emergency {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  animation: pulse-glow 2s infinite;
}

.btn-emergency:hover {
  animation: none;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
  color: white;
}

/* ========================================
   Premium Cards
   ======================================== */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-secondary);
}

.card:hover::before {
  transform: scaleX(1);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--gradient-secondary);
  transition: height var(--transition-base);
  opacity: 0.1;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-secondary);
}

.service-card:hover::after {
  height: 100%;
}

.service-card .icon-wrapper {
  width: 64px;
  height: 64px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.75rem;
  color: white;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  position: relative;
  z-index: 2;
}

.service-card p {
  flex-grow: 1;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.service-card .card-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.location-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
  text-align: center;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.location-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

/* ========================================
   Header & Navigation
   ======================================== */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo:hover {
  color: var(--color-secondary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Navigation */
nav ul {
  list-style: none;
  margin: 0;
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}

nav>ul>li {
  position: relative;
}

nav a {
  color: var(--color-text);
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: block;
}

nav a:hover {
  color: var(--color-secondary);
  background: rgba(37, 99, 235, 0.05);
}

/* Dropdown Menu */
.has-dropdown>a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.has-dropdown>a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition-fast);
}

.has-dropdown:hover>a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-sm));
  left: 0;
  background: white;
  min-width: 280px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
  z-index: var(--z-dropdown);
  display: flex;
  flex-direction: column;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.dropdown-menu a:hover {
  background: rgba(37, 99, 235, 0.05);
}

/* Header Phone Button */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gradient-secondary);
  color: white !important;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.header-phone:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
  color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-secondary);
}

/* ========================================
   Hero Section - Premium
   ======================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-primary);
  z-index: 0;
}

/* Hero background image classes */
.hero-bg-1::before {
  background-image: url('../Images/10493.jpg');
}

.hero-bg-2::before {
  background-image: url('../Images/28023.jpg');
}

.hero-bg-3::before {
  background-image: url('../Images/346.jpg');
}

.hero-bg-4::before {
  background-image: url('../Images/41799.jpg');
}

.hero-bg-5::before {
  background-image: url('../Images/8834.jpg');
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Hero direct children styling for pages without .hero-content wrapper */
.hero>h1,
.hero>h2,
.hero>h3,
.hero>p,
.hero>a {
  position: relative;
  z-index: 2;
}

.hero>h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero>p {
  color: #f8fafc;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.8s ease;
}



.hero h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #f8fafc;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero specific secondary button override */
.hero .btn-secondary {
  color: white;
  border-color: white;
}

.hero .btn-secondary:hover {
  background: white;
  color: var(--color-primary);
  border-color: white;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: #f1f5f9;
  font-size: var(--text-sm);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}



/* Animated background shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Sections - Premium Layout
   ======================================== */
section {
  padding: var(--space-4xl) var(--space-lg);
}

.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-secondary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.section-header h2 {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Alternate Section Backgrounds */
.section-alt {
  background: var(--color-surface);
}

.section-gradient {
  background: linear-gradient(180deg, var(--color-background) 0%, rgba(37, 99, 235, 0.03) 100%);
}

/* ========================================
   Grid Layouts
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
}

/* ========================================
   Trust Signals - Premium
   ======================================== */
.trust-signals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-item .number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.trust-item p {
  color: var(--color-text);
  font-weight: 600;
  margin: 0;
}

.trust-item .number .unit {
  font-size: var(--text-xl);
  font-weight: 600;
  vertical-align: baseline;
  margin-left: 2px;
}

.trust-item .number .star {
  color: #fbbf24;
  -webkit-text-fill-color: #fbbf24;
}

/* ========================================
   Areas Grid - Centered Service Areas
   ======================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  text-decoration: none;
  text-align: center;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.area-card:hover .area-icon {
  background: var(--gradient-secondary);
}

.area-card:hover .area-icon svg {
  stroke: white;
}

.area-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.area-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-secondary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: all var(--transition-base);
}

.area-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   Feature Items
   ======================================== */
.feature-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-md);
}

.feature-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.feature-content p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
}

/* ========================================
   FAQ Accordion - Premium
   ======================================== */
.faq-container {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-secondary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-secondary);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--color-secondary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.7;
}

/* ========================================
   Testimonials - Premium
   ======================================== */
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: var(--text-lg);
}

.testimonial-info h4 {
  font-size: var(--text-base);
  margin: 0;
}

.testimonial-info p {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
  margin: 0;
}

/* ========================================
   CTA Banner - Premium
   ======================================== */
.cta-banner {
  position: relative;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 768px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

.cta-banner .btn-primary {
  background: white;
  color: var(--color-primary);
}

.cta-banner .btn-primary:hover {
  background: var(--color-background);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* ========================================
    Footer - Premium
    ======================================== */
footer {
  background: var(--color-primary);
  color: white;
  padding: var(--space-4xl) var(--space-lg) var(--space-xl);
}

footer p,
footer ul,
footer li,
footer h3,
footer h4,
footer div {
  color: inherit;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--text-lg);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

.footer-section h3 {
  color: #ffffff !important;
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  visibility: visible;
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section li {
  margin-bottom: var(--space-sm);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.footer-section a:hover {
  color: #ffffff;
  padding-left: var(--space-sm);
}

.footer-contact {
  margin-top: var(--space-md);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.footer-phone {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent) !important;
}

.footer-bottom {
  max-width: 1280px;
  margin: var(--space-3xl) auto 0;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Disclaimer & Copyright - Service Pages */
.disclaimer {
  max-width: 1280px;
  margin: var(--space-3xl) auto 0;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

.disclaimer p strong {
  color: #ffffff;
  font-weight: 600;
}

.copyright {
  max-width: 1280px;
  margin: var(--space-xl) auto 0;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin: 0;
}

.copyright a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.copyright a:hover {
  color: #ffffff;
}

/* ========================================
   Mobile Sticky CTA
   ======================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: var(--space-md);
  text-align: center;
  z-index: var(--z-fixed);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--color-border);
}

.mobile-sticky-cta .btn {
  width: 100%;
}

/* ========================================
   Scroll Reveal Animation
   ======================================== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.animate {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.animate.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.animate {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal-left.animate.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.animate {
  opacity: 0;
  transform: translateX(50px);
}

.reveal-right.animate.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.animate {
  opacity: 0;
  transform: scale(0.9);
}

.reveal-scale.animate.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animations */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

/* ========================================
   Skip Link & Accessibility
   ======================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* Focus indicators */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   Responsive Breakpoints
   ======================================== */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-section h3 {
    color: #ffffff !important;
    display: block;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-3xl: 3rem;
  }

  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  h3 {
    font-size: var(--text-2xl);
  }

  /* Mobile Menu */
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-md);
    box-shadow: var(--shadow-xl);
    border-top: 1px solid var(--color-border);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  nav ul.active {
    display: flex;
  }

  nav>ul>li {
    width: 100%;
  }

  nav a {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(37, 99, 235, 0.05);
    margin-top: var(--space-sm);
    display: none;
    padding-left: var(--space-lg);
  }

  .has-dropdown.active .dropdown-menu {
    display: block;
  }

  .has-dropdown>a::after {
    transition: transform var(--transition-fast);
  }

  .has-dropdown.active>a::after {
    transform: rotate(180deg);
  }

  .header-phone {
    display: none;
  }

  /* Mobile Sticky CTA */
  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-trust {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-section h3 {
    color: #ffffff !important;
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: var(--text-3xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-signals {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item .number {
    font-size: var(--text-3xl);
  }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {

  header,
  footer,
  .mobile-sticky-cta,
  .cta-banner,
  .hero-shapes,
  .hero-badge,
  .menu-toggle,
  .header-phone {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    padding: 0;
  }

  .hero {
    min-height: auto;
    padding: 2rem;
    background: white;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero h1,
  .hero p {
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  a[href^="tel:"]::after {
    content: " (" attr(href) ")";
  }

  .card,
  .service-card,
  .testimonial-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* ========================================
   Blog Styles
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-secondary);
}

.blog-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  display: block;
}

.blog-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--color-text);
}

.blog-card h3 a:hover {
  color: var(--color-secondary);
}

.blog-card p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.read-more:hover {
  gap: var(--space-sm);
}

/* Blog Post Page Styles */
.blog-post-header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.blog-body {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto;
}

.blog-body h2 {
  font-size: var(--text-3xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.blog-body h3 {
  font-size: var(--text-2xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.blog-body p {
  margin-bottom: var(--space-lg);
}

.blog-body ul,
.blog-body ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.blog-body li {
  margin-bottom: var(--space-sm);
}

.sidebar {
  background: var(--color-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.sidebar-widget {
  margin-bottom: var(--space-2xl);
}

.sidebar-widget h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  margin-bottom: var(--space-sm);
}