/* =================================================================
   Woodard Associates Design System
   Refined New England Estate | Est. 1987 | Upper Valley, NH
   ================================================================= */

/* -----------------------------------------------------------------
   1. DESIGN TOKENS
   ----------------------------------------------------------------- */
:root {
  --primary-color: #1B4D3E;
  --primary-light: #2A6B55;
  --primary-dark: #0F2E24;
  --secondary-color: #1A2F2A;
  --accent-color: #B8860B;
  --accent-light: #D4A843;
  --accent-subtle: #F5EDD6;
  --text-primary: #2C2C2C;
  --text-secondary: #5A5A5A;
  --text-tertiary: #8A8A8A;
  --bg-primary: #FAFAF7;
  --bg-secondary: #F4F2ED;
  --bg-card: #FFFFFF;
  --bg-dark: #1A2F2A;
  --border-color: #E5E2DB;
  --border-light: #F0EDE6;
  --shadow-sm: 0 1px 3px rgba(28,25,20,0.06), 0 1px 2px rgba(28,25,20,0.04);
  --shadow-md: 0 4px 12px rgba(28,25,20,0.08), 0 2px 4px rgba(28,25,20,0.04);
  --shadow-lg: 0 12px 32px rgba(28,25,20,0.1), 0 4px 8px rgba(28,25,20,0.05);
  --font-heading: 'Sorts Mill Goudy', Georgia, serif;
  --font-body: 'Source Sans 3', 'Open Sans', sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.4vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-4xl: clamp(2.5rem, 2rem + 3vw, 4rem);
  --text-hero: clamp(3.5rem, 3rem + 5vw, 6rem);
  --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;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-full: 9999px;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --color-success: #16a34a;
  --color-success-bg: #dcfce7;
  --color-warning: #ca8a04;
  --color-warning-bg: #fef9c3;
  --color-error: #dc2626;
  --color-error-bg: #fee2e2;
  --color-info: #0284c7;
  --color-info-bg: #e0f2fe;
}

/* -----------------------------------------------------------------
   2. RESET & GLOBALS
   ----------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  padding-top: 80px;
  max-width: 100%;
  overflow-x: hidden;
}

/* -----------------------------------------------------------------
   3. ACCESSIBILITY
   ----------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 2000;
  border-radius: 0 0 4px 0;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}
a:focus, button:focus, .btn:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}
*:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* -----------------------------------------------------------------
   4. TYPOGRAPHY
   ----------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

a { color: var(--primary-color); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-dark); text-decoration: underline; }
.text-primary { color: var(--primary-color) !important; }
.text-success { color: var(--color-success) !important; }

.overline {
  display: block; font-family: var(--font-body); font-size: 0.8rem;
  font-weight: var(--fw-semibold); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary-color); margin-bottom: 0.5rem;
}

/* -----------------------------------------------------------------
   5. NAVIGATION
   ----------------------------------------------------------------- */
.navbar {
  background: var(--bg-dark);
  box-shadow: 0 2px 8px rgba(28,25,20,0.15);
  padding: 1.25rem 0;
  transition: padding 0.2s ease, box-shadow 0.2s ease;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 2px 12px rgba(28,25,20,0.2);
}

.navbar-brand {
  font-family: var(--font-heading);
  color: white !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity 0.2s ease;
}
.navbar-brand:hover { transform: none; text-decoration: none; opacity: 0.9; }

.brand-logo {
  height: 68px; width: 68px;
  object-fit: contain;
  transition: height 0.2s ease, width 0.2s ease;
}
.navbar-brand:hover .brand-logo { transform: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; transform: translateY(3px); }
.brand-name, .brand-tagline { font-size: 1.5rem; font-weight: 400; letter-spacing: 0.02em; }
.brand-icon { opacity: 0.95; }
.navbar-brand:hover .brand-icon { transform: none; opacity: 1; }

.navbar.scrolled .brand-logo { height: 48px; width: 48px; }
.navbar.scrolled .brand-name,
.navbar.scrolled .brand-tagline { font-size: 1.25rem; }

.navbar-toggler {
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.1);
  color: white;
}
.navbar-toggler:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: var(--fw-medium);
  font-size: 0.9rem;
  text-transform: none;
  padding: 0.65rem 1rem !important;
  margin: 0 0.15rem;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: var(--radius-sm);
  border-bottom: 2px solid transparent;
}
.nav-link:hover { color: white !important; background: rgba(255,255,255,0.06); text-decoration: none; }
.nav-link.active { color: white !important; border-bottom: 2px solid var(--accent-color); border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.nav-link:focus { outline: 3px solid #ffffff; outline-offset: 2px; }

.nav-cta {
  background: var(--accent-color) !important;
  color: white !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.6rem 1.25rem !important;
  font-weight: var(--fw-bold) !important;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 0.5rem;
  transition: background 0.2s ease;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--accent-light) !important; transform: none; }

.nav-phone {
  display: flex; align-items: center; gap: 0.5rem;
  color: white;
  font-weight: var(--fw-semibold);
  font-size: 0.85rem;
  margin-left: 1.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-phone:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: white; text-decoration: none; }
.nav-phone i { font-size: 0.8rem; }

/* Dropdown menus */
.navbar .dropdown-menu {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.5rem; min-width: 240px; margin-top: 0.5rem;
  box-shadow: 0 10px 40px rgba(28,25,20,0.3);
}
.navbar .dropdown-item {
  color: white; padding: 0.75rem 1rem;
  border-radius: var(--radius-sm); transition: background 0.2s ease; font-size: 0.95rem;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus { background: rgba(255,255,255,0.1); color: white; }
.navbar .dropdown-item i { opacity: 0.7; width: 1.25rem; }
.navbar .dropdown-divider { border-color: rgba(255,255,255,0.15); margin: 0.5rem 0; }
.navbar .dropdown-toggle::after { margin-left: 0.5rem; vertical-align: middle; }

/* Desktop hover dropdown */
@media (min-width: 1201px) {
  .navbar .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
  .navbar .dropdown > .dropdown-menu { transition: none; }
}

/* Mobile Navigation */
@media (max-width: 1200px) {
  .nav-phone { display: none; }
  .navbar-collapse {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--bg-dark);
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
  }
  .navbar-collapse.show { right: 0; box-shadow: -10px 0 30px rgba(28,25,20,0.3); }
  .navbar-collapse.collapsing { right: -320px; transition: right 0.3s ease; height: 100vh; }
  .nav-link {
    padding: 1rem 1.25rem !important; margin: 0.25rem 0;
    border-radius: var(--radius-md); font-size: 1.1rem; border-bottom: none;
  }
  .nav-link.active {
    background: rgba(255,255,255,0.1); border-bottom: none;
    border-left: 3px solid var(--accent-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }
  .nav-cta { margin-left: 0; margin-top: 1rem; text-align: center; display: block; }
  .navbar .dropdown-menu {
    position: static; background: rgba(255,255,255,0.05);
    border: none; box-shadow: none; margin-top: 0.5rem; padding: 0.5rem;
  }
  .navbar-collapse.show .nav-item { animation: slideInNav 0.3s ease forwards; opacity: 0; }
  .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.05s; }
  .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.1s; }
  .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.15s; }
  .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.2s; }
  .navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.25s; }
  .navbar-collapse.show .nav-item:nth-child(6) { animation-delay: 0.3s; }
}

@keyframes slideInNav {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 576px) {
  .brand-logo { height: 56px; width: 56px; }
  .brand-name, .brand-tagline { font-size: 1.25rem; }
}

/* -----------------------------------------------------------------
   6. BUTTONS
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; text-align: center; white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-weight: var(--fw-semibold); font-size: 0.95rem; line-height: 1.5;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none; text-transform: none; letter-spacing: 0.01em;
}

.btn-primary { background: var(--primary-color); color: white; border-color: var(--primary-color); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; text-decoration: none; }
.btn-primary:focus, .btn-primary:focus-visible {
  outline: 3px solid #ffffff; outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--primary-color);
}

.btn-outline-primary { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
.btn-outline-primary:hover { background: var(--primary-color); border-color: var(--primary-color); color: white; text-decoration: none; }

.btn-accent { background: var(--accent-color); color: white; border-color: var(--accent-color); }
.btn-accent:hover { background: var(--accent-light); border-color: var(--accent-light); color: white; text-decoration: none; }

.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,0.8); color: white; }
.btn-outline-light:hover { background: white; color: var(--primary-color); border-color: white; text-decoration: none; }

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* -----------------------------------------------------------------
   7. HERO SECTIONS
   ----------------------------------------------------------------- */
.hero {
  position: relative; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(26,47,42,0.3) 0%, rgba(26,47,42,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; color: white;
  padding: 2rem; max-width: 800px;
}
.hero-content h1 {
  color: white; margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(28,25,20,0.4);
  animation: fadeInUp 1s ease-out;
}
.hero-content p {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(28,25,20,0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-enhanced {
  position: relative; min-height: 60vh;
  overflow: hidden; display: flex; align-items: flex-end;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-enhanced .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,47,42,0.25) 0%, rgba(26,47,42,0.75) 100%);
}
.hero-enhanced h1 { color: white; font-size: var(--text-hero); text-shadow: 0 2px 8px rgba(0,0,0,0.3); margin-bottom: 1.5rem; }
.hero-enhanced p { color: rgba(255,255,255,0.92); font-size: var(--text-xl); line-height: 1.7; margin-bottom: 2rem; max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -----------------------------------------------------------------
   8. SECTIONS & LAYOUT
   ----------------------------------------------------------------- */
section { padding: 5rem 0; }
.section-padded { padding: clamp(4rem, 8vw, 7rem) 0; }
.bg-warm { background-color: var(--bg-secondary); }
.section-dark { background: var(--bg-dark); color: white; }
.section-dark h2 { color: white; }
.section-dark p { color: rgba(255,255,255,0.85); }
.section-dark a { color: var(--accent-light); }

.section-heading { margin-bottom: 2.5rem; }
.lead-text { font-size: var(--text-lg); color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.text-link { color: var(--primary-color); font-weight: var(--fw-semibold); text-decoration: none; transition: color 0.2s ease; }
.text-link:hover { color: var(--primary-dark); text-decoration: none; }

.section-header { text-align: left; margin-bottom: 3rem; }
.section-header h2 { color: var(--text-primary); margin-bottom: 1rem; }
.section-header p { color: var(--text-secondary); font-size: var(--text-lg); max-width: 700px; }

.section-header-enhanced { text-align: left; margin-bottom: 3rem; }
.section-header-enhanced .overline {
  display: inline-block; font-size: var(--text-sm);
  font-weight: var(--fw-semibold); letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--primary-color); margin-bottom: 0.75rem;
}
.section-header-enhanced h2 { font-weight: 400; color: var(--text-primary); line-height: 1.1; margin-bottom: 1.5rem; }
.section-header-enhanced .subtitle {
  font-size: var(--text-lg); font-weight: var(--fw-regular);
  color: var(--text-secondary); max-width: 600px; line-height: 1.7;
}

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.split-image {
  background-size: cover; background-position: center; background-repeat: no-repeat;
  min-height: 400px;
}
.split-content {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
}
.split-content h2 { margin-bottom: 1.5rem; }
.split-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
@media (max-width: 992px) {
  .split-section { grid-template-columns: 1fr; min-height: auto; }
  .split-image { min-height: 300px; }
}

.cta-block { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-block h2 { color: white; margin-bottom: 1rem; }
.cta-phone { font-size: var(--text-2xl); margin-bottom: 1.5rem; }
.cta-phone a { color: var(--accent-light); text-decoration: none; font-family: var(--font-heading); }
.cta-phone a:hover { color: var(--accent-color); text-decoration: none; }

.prose { max-width: 680px; }
.prose-wide { max-width: 900px; }

.forest-bg {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}
.section-fade-top::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to bottom, var(--bg-primary), transparent); pointer-events: none; z-index: 1;
}
.section-fade-bottom::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, var(--bg-primary), transparent); pointer-events: none; z-index: 1;
}
.vignette { position: relative; }
.vignette::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 60%, rgba(28,25,20,0.04) 100%);
  pointer-events: none; z-index: 1;
}

/* -----------------------------------------------------------------
   9. CARDS
   ----------------------------------------------------------------- */
.card {
  border: 1px solid var(--border-color); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease;
  background: var(--bg-card); height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.card-title { color: var(--text-primary); font-size: 1.5rem; margin-bottom: 1rem; }
.card-text { color: var(--text-secondary); line-height: 1.7; }

.card-elevated {
  background: var(--bg-card); border-radius: var(--radius-md);
  border: 1px solid var(--border-color); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease; position: relative; overflow: hidden;
}
.card-elevated:hover { box-shadow: var(--shadow-lg); }

/* Service Card */
.service-card {
  background: var(--bg-card); border-radius: var(--radius-md);
  padding: 2.5rem; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease; height: 100%;
  border: 1px solid var(--border-color); text-align: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); }
.service-card-image {
  height: 260px; overflow: hidden; margin: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.service-card-body { padding: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card h3 { color: var(--text-primary); font-size: 1.5rem; margin-bottom: 1.25rem; }
.service-card ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.service-card ul li {
  padding: 0.5rem 0; color: var(--text-secondary); font-size: 1rem;
  display: flex; align-items: flex-start; line-height: 1.6;
}
.service-card ul li i { color: var(--primary-color); margin-right: 0.75rem; margin-top: 0.25rem; font-size: 1rem; }

.service-icon-container {
  width: 72px; height: 72px;
  background: var(--bg-secondary); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; transition: background 0.2s ease;
}
.service-card:hover .service-icon-container { background: var(--accent-subtle); }
.service-icon-container i { font-size: 2rem; color: var(--primary-color); }

.icon-container-enhanced {
  width: 72px; height: 72px;
  background: var(--bg-secondary); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: background 0.2s ease;
}
.icon-container-enhanced i { font-size: 2rem; color: var(--primary-color); }
.card-elevated:hover .icon-container-enhanced,
.service-card:hover .icon-container-enhanced { background: var(--accent-subtle); }

.stat-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
@media (max-width: 768px) { .stat-cards { grid-template-columns: 1fr; gap: 1rem; } }

.stat-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 2rem;
  text-align: center; border: 1px solid var(--border-color); transition: box-shadow 0.2s ease;
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-number { display: block; font-family: var(--font-heading); font-size: var(--text-2xl); color: var(--primary-color); margin-bottom: 0.5rem; }
.stat-label { display: block; font-size: var(--text-sm); color: var(--text-secondary); }

.audience-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 2rem;
  border: 1px solid var(--border-color); transition: box-shadow 0.2s ease;
}
.audience-card:hover { box-shadow: var(--shadow-md); }

/* -----------------------------------------------------------------
   10. FOOTER
   ----------------------------------------------------------------- */
.footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem; margin-top: 5rem;
}
.footer a { transition: color 0.2s ease; }
.footer a:hover { color: white !important; text-decoration: none; }

.footer-heading {
  color: white; font-size: 1.2rem; margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; display: inline-block; }
.footer-links a:hover { color: white; }

.footer-info { list-style: none; padding: 0; }
.footer-info li { margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-info li i { color: rgba(255,255,255,0.7); min-width: 20px; margin-top: 0.25rem; }
.footer-info a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-info a:hover { color: white; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 0.75rem 0; }
.footer-contact-item i { color: rgba(255,255,255,0.6); min-width: 18px; margin-top: 0.2rem; }
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-item a:hover { color: white; }
.footer-contact-item span { color: rgba(255,255,255,0.65); }

.footer-brand-logo { height: 60px; width: 60px; object-fit: contain; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: var(--text-sm); font-style: italic; margin-top: 0.25rem; }
.footer-heading-bordered {
  color: white; font-size: 1rem; margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem;
}
.footer-service-area {
  text-align: center; padding: 1.5rem 0; margin-top: 1rem;
  color: rgba(255,255,255,0.55); font-size: var(--text-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.5rem 0; }
.footer-copyright { color: rgba(255,255,255,0.5); font-size: var(--text-sm); }
.footer-legal a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: var(--text-sm); }
.footer-legal a:hover { color: white; }

.footer hr { border-color: rgba(255,255,255,0.15); margin: 2rem 0; }
.footer-bottom { color: rgba(255,255,255,0.5); font-size: var(--text-sm); }
.footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-bottom a:hover { color: white; }

.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7); transition: background 0.2s ease, color 0.2s ease;
}
.social-links a:hover { background: rgba(255,255,255,0.15); color: white; text-decoration: none; }

/* -----------------------------------------------------------------
   11. FORMS
   ----------------------------------------------------------------- */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-weight: var(--fw-semibold);
  margin-bottom: 0.5rem; color: var(--text-primary); font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.875rem 1.25rem;
  border: 2px solid var(--border-color); border-radius: var(--radius-md);
  font-size: 1rem; font-family: var(--font-body);
  transition: border-color 0.2s ease;
  background: var(--bg-primary); color: var(--text-primary);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: 2px solid var(--primary-color); outline-offset: 2px;
  box-shadow: none;
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-error { color: var(--color-error); font-size: 0.875rem; margin-top: 0.5rem; display: block; }
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select { border-color: var(--color-error); }

.form-control, .form-select {
  border-radius: var(--radius-md); padding: 0.75rem 1rem;
  border: 2px solid var(--border-color); font-size: 16px; transition: border-color 0.2s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-color); box-shadow: 0 0 0 0.2rem rgba(27,77,62,0.12);
}
.form-label { font-weight: var(--fw-semibold); color: var(--text-primary); margin-bottom: 0.5rem; }
.form-text { font-size: 14px; color: var(--text-tertiary); }

/* -----------------------------------------------------------------
   12. ALERTS
   ----------------------------------------------------------------- */
.alert {
  padding: 1rem 1.25rem; border-radius: var(--radius-md);
  margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem;
}
.alert i { font-size: 1.25rem; margin-top: 0.125rem; }
.alert-success { background: var(--color-success-bg); border: 1px solid #b4dfc4; color: #155724; }
.alert-error { background: var(--color-error-bg); border: 1px solid #f5c6cb; color: #721c24; }
.alert-info { background: var(--color-info-bg); color: #004085; border: 1px solid #b8daff; }
.alert-warning { background: var(--color-warning-bg); color: #856404; border: 1px solid #ffe69c; }
.alert-content { flex: 1; }
.alert-content h4 { margin: 0 0 0.5rem 0; font-size: 1.1rem; font-weight: var(--fw-semibold); }
.alert-content p { margin: 0; }

/* -----------------------------------------------------------------
   13. CONTACT PAGE
   ----------------------------------------------------------------- */
.page-header { background: var(--bg-dark); color: white; padding: 4rem 0 3rem; margin-bottom: 0; }
.page-header h1 { color: white; margin: 0; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
@media (max-width: 992px) { .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; } }

.contact-info-section {
  background: var(--bg-card); padding: 2.5rem;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md); height: fit-content;
}
.contact-info-section h2 { margin-bottom: 1.5rem; color: var(--text-primary); }
.contact-info-section p.lead { font-size: 1.1rem; margin-bottom: 2rem; color: var(--text-secondary); }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.25rem; background: var(--bg-secondary);
  border-radius: var(--radius-md); transition: box-shadow 0.2s ease;
}
.contact-item:hover { box-shadow: var(--shadow-sm); }

.contact-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; min-width: 48px;
  background: var(--primary-color); color: white;
  border-radius: var(--radius-md); font-size: 1.25rem;
}
.contact-item-content h3 {
  font-size: 1rem; font-weight: var(--fw-semibold);
  margin-bottom: 0.35rem; color: var(--text-primary); font-family: var(--font-body);
}
.contact-item-content p { margin: 0; color: var(--text-secondary); font-size: 0.95rem; }
.contact-item-content a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s ease; }
.contact-item-content a:hover { color: var(--primary-color); text-decoration: none; }

.office-hours { background: var(--bg-secondary); padding: 1.25rem; border-radius: var(--radius-md); margin-top: 1.5rem; }
.office-hours h4 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.office-hours p { margin: 0; color: var(--text-secondary); }

.map-container {
  margin-top: 2rem; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); height: 300px; background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-placeholder { text-align: center; padding: 2rem; color: var(--text-tertiary); }

.contact-form-section {
  background: var(--bg-card); padding: 2.5rem;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
}
.contact-form-section h3 { margin-bottom: 1.5rem; color: var(--text-primary); }

/* -----------------------------------------------------------------
   14. DOCUMENT REQUEST
   ----------------------------------------------------------------- */
.document-request-card { box-shadow: var(--shadow-lg); border-radius: var(--radius-md); overflow: hidden; }
.document-request-card .card-body { padding: 3rem; }

/* -----------------------------------------------------------------
   15. SPEED CONTACT BAR
   ----------------------------------------------------------------- */
.speed-contact-bar {
  position: fixed; bottom: 2rem; left: 2rem;
  background: var(--primary-color); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); z-index: 998; overflow: hidden; transition: all 0.3s ease;
}
.speed-contact-bar.collapsed { border-radius: 50%; width: 56px; height: 56px; }
.speed-contact-bar.collapsed .contact-bar-content { opacity: 0; visibility: hidden; width: 0; }
.speed-contact-bar.collapsed .toggle-btn { width: 100%; height: 100%; border-radius: 50%; padding: 0; }
.speed-contact-bar.collapsed .toggle-btn i { font-size: 1.5rem; }

.contact-bar-content {
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
  min-width: 280px; transition: all 0.3s ease;
}
.contact-bar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.contact-bar-title { color: white; font-size: 1.1rem; font-weight: var(--fw-semibold); margin: 0; font-family: var(--font-heading); }

.toggle-btn {
  background: rgba(255,255,255,0.15); border: none; color: white;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease; font-size: 1.25rem;
}
.toggle-btn:hover { background: rgba(255,255,255,0.25); }

.contact-item-bar {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.75rem 1rem; background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md); transition: background 0.2s ease;
  text-decoration: none; color: white;
}
.contact-item-bar:hover { background: rgba(255,255,255,0.15); }
.contact-item-bar i { font-size: 1.5rem; min-width: 24px; text-align: center; flex-shrink: 0; }
.contact-item-bar-text { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-item-bar-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.7; font-weight: var(--fw-semibold); }
.contact-item-bar-value { font-size: 1rem; font-weight: var(--fw-semibold); color: white; }
.contact-bar-footer { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.5); padding-top: 0.5rem; border-top: 1px solid rgba(255,255,255,0.1); }

/* -----------------------------------------------------------------
   16. PROPERTY MANAGEMENT
   ----------------------------------------------------------------- */
.buildium-portal-section { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 4rem 0; margin: 4rem 0; }

.portal-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 2.5rem;
  box-shadow: var(--shadow-md); text-align: center; transition: box-shadow 0.2s ease;
  height: 100%; border: 1px solid var(--border-color);
}
.portal-card:hover { box-shadow: var(--shadow-lg); }
.portal-card.primary { border: 2px solid var(--primary-color); }
.portal-card h3 { color: var(--text-primary); font-size: 1.5rem; margin-bottom: 1rem; }
.portal-card p.lead { color: var(--text-secondary); font-size: 1rem; margin-bottom: 1.5rem; }

.portal-benefits { list-style: none; padding: 0; margin: 1.5rem 0 2rem; text-align: left; }
.portal-benefits li { padding: 0.5rem 0; color: var(--text-secondary); font-size: 1rem; display: flex; align-items: center; }
.portal-benefits li i { color: var(--primary-color); margin-right: 0.75rem; font-size: 1rem; }

.portal-btn {
  background: var(--primary-color); color: white;
  padding: 1rem 2.5rem; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: var(--fw-semibold);
  text-decoration: none; display: inline-block; transition: background 0.2s ease;
}
.portal-btn:hover { background: var(--primary-dark); color: white; text-decoration: none; }
.portal-btn i { margin-right: 0.5rem; }

.owner-portal-link { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.owner-portal-link p { color: var(--text-tertiary); font-size: 0.95rem; margin-bottom: 0.75rem; }
.owner-portal-link a { color: var(--primary-color); text-decoration: underline; font-weight: var(--fw-medium); }
.owner-portal-link a:hover { color: var(--primary-dark); }

.app-download-section { margin-top: 2rem; padding: 2rem; background: var(--bg-secondary); border-radius: var(--radius-md); }
.app-download-section h4 { color: var(--text-primary); font-size: 1.15rem; margin-bottom: 1rem; }
.app-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.app-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; background: var(--text-primary); color: white;
  border-radius: var(--radius-sm); text-decoration: none; transition: background 0.2s ease; font-size: 0.95rem;
}
.app-btn:hover { background: #000; color: white; text-decoration: none; }
.app-btn i { font-size: 1.5rem; }

/* -----------------------------------------------------------------
   17. TIMELINE
   ----------------------------------------------------------------- */
.timeline-section { padding: 4rem 0; background: var(--bg-card); }
.timeline { position: relative; max-width: 1200px; margin: 3rem auto 0; }
.timeline-step { display: flex; align-items: flex-start; margin-bottom: 3rem; position: relative; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-step::before {
  content: ''; position: absolute; left: 40px; top: 90px;
  width: 2px; height: calc(100% + 3rem);
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--border-color) 100%); z-index: 0;
}
.timeline-step:last-child::before { display: none; }
.timeline-number {
  width: 80px; height: 80px; min-width: 80px;
  background: var(--primary-color); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: var(--fw-bold); color: white;
  margin-right: 2rem; box-shadow: var(--shadow-md); position: relative; z-index: 1;
}
.timeline-content {
  flex: 1; background: var(--bg-secondary); padding: 2rem;
  border-radius: var(--radius-md); border-left: 4px solid var(--primary-color);
}
.timeline-content h3 { color: var(--text-primary); font-size: 1.5rem; margin-bottom: 0.75rem; }
.timeline-content p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin: 0; }

/* -----------------------------------------------------------------
   18. TRUST & TESTIMONIALS
   ----------------------------------------------------------------- */
.trust-section { background: var(--bg-secondary); padding: 4rem 0; }

.trust-stat-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 2.5rem;
  text-align: center; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease;
  border: 1px solid var(--border-color);
}
.trust-stat-card:hover { box-shadow: var(--shadow-md); }
.trust-stat-card i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 1rem; }
.trust-stat-card h3 { font-size: 2.5rem; color: var(--text-primary); font-weight: var(--fw-bold); font-family: var(--font-body); margin-bottom: 0.5rem; }
.trust-stat-card p { color: var(--text-secondary); font-size: 1rem; margin: 0; }

.testimonial-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 2rem;
  box-shadow: var(--shadow-sm); height: 100%; border-left: 3px solid var(--accent-color);
}
.testimonial-content { font-style: italic; color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author i { font-size: 2rem; color: var(--accent-color); opacity: 0.4; }
.testimonial-author-info h4 { color: var(--text-primary); font-size: 1rem; margin-bottom: 0.25rem; }
.testimonial-author-info p { color: var(--text-tertiary); font-size: 0.9rem; margin: 0; }

/* -----------------------------------------------------------------
   19. SERVICE OVERVIEW CARDS
   ----------------------------------------------------------------- */
.service-overview-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 2rem;
  text-align: center; border: 1px solid var(--border-color);
  transition: box-shadow 0.2s ease; height: 100%;
}
.service-overview-card:hover { box-shadow: var(--shadow-md); }
.service-overview-card .service-icon-container {
  width: 64px; height: 64px; background: var(--bg-secondary);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; transition: background 0.2s ease;
}
.service-overview-card:hover .service-icon-container { background: var(--accent-subtle); }
.service-overview-card .service-icon-container i { font-size: 1.75rem; color: var(--primary-color); }
.service-overview-card h3 { color: var(--text-primary); font-size: 1.35rem; margin-bottom: 1rem; }
.service-overview-card p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; margin: 0; }

/* -----------------------------------------------------------------
   20. FEATURE CARDS
   ----------------------------------------------------------------- */
.feature-card {
  background: var(--bg-card); border-radius: var(--radius-md);
  padding: 2rem 1.75rem; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease; height: 100%;
  border: 1px solid var(--border-color); display: flex; flex-direction: column;
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-icon {
  width: 48px; height: 48px; background: var(--bg-secondary);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background 0.2s ease;
}
.feature-card:hover .feature-icon { background: var(--accent-subtle); }
.feature-icon i { font-size: 1.25rem; color: var(--primary-color); }
.feature-card h4 { color: var(--text-primary); font-size: 1.15rem; margin-bottom: 1rem; line-height: 1.3; }
.feature-list { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
.feature-list li {
  color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7;
  padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem;
}
.feature-list li:before {
  content: "\2713"; position: absolute; left: 0;
  color: var(--primary-color); font-weight: bold; font-size: 1rem;
}
.feature-list li:last-child { margin-bottom: 0; }

/* -----------------------------------------------------------------
   21. BACK TO TOP
   ----------------------------------------------------------------- */
#backToTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--primary-color); color: white; border: none;
  border-radius: var(--radius-sm); font-size: 1.25rem; cursor: pointer;
  box-shadow: var(--shadow-md); transition: background 0.2s ease, opacity 0.2s ease;
  opacity: 0; visibility: hidden; z-index: 999;
  display: flex; align-items: center; justify-content: center;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--primary-dark); }

/* -----------------------------------------------------------------
   22. ANIMATION UTILITIES
   ----------------------------------------------------------------- */
.animate-fade-in-up { animation: fadeInUp 500ms ease forwards; }
.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }
.animate-delay-500 { animation-delay: 500ms; }
.animate-hidden { opacity: 0; }

.link-animated { position: relative; text-decoration: none; }
.link-animated::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: currentColor; transition: width 0.2s ease;
}
.link-animated:hover::after { width: 100%; }

/* -----------------------------------------------------------------
   23. RESPONSIVE
   ----------------------------------------------------------------- */
@media (max-width: 992px) {
  .feature-card h4 { font-size: 1.1rem; }
  .feature-list li { font-size: 0.9rem; }
}

@media (max-width: 768px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }
  section { padding: 3rem 0; }
  .section-header h2 { font-size: var(--text-2xl); }
  .hero-content h1 { font-size: var(--text-3xl); }
  .hero-content p { font-size: var(--text-lg); }
  .document-request-card .card-body { padding: 2rem 1.5rem; }
  .service-card { padding: 2rem 1.5rem; margin-bottom: 2rem; }
  .service-icon-container { width: 64px; height: 64px; }
  .service-icon-container i { font-size: 1.75rem; }
  .portal-card { padding: 2rem 1.5rem; margin-bottom: 2rem; }
  .buildium-portal-section { padding: 3rem 0; margin: 3rem 0; }
  .timeline-step { flex-direction: column; }
  .timeline-step::before { left: 40px; top: 100px; }
  .timeline-number { margin-bottom: 1rem; margin-right: 0; }
  .timeline-content { width: 100%; }
  .app-buttons { flex-direction: column; }
  .app-btn { width: 100%; justify-content: center; }
  .service-overview-card { margin-bottom: 1.5rem; }
  .feature-card { padding: 1.75rem 1.5rem; }
  .why-choose-grid { grid-template-columns: 1fr !important; }
  .speed-contact-bar { bottom: 1rem; left: 1rem; }
  .contact-bar-content { min-width: 260px; padding: 1.25rem; }
  .contact-bar-title { font-size: 1rem; }
  .contact-item-bar { padding: 0.65rem 0.85rem; }
  .contact-item-bar i { font-size: 1.25rem; }
  .contact-item-bar-value { font-size: 0.95rem; }
}

@media (max-width: 576px) {
  body { padding-top: 70px; font-size: 16px; }
  h1 { font-size: var(--text-2xl); }
  h2 { font-size: var(--text-xl); }
  h3 { font-size: var(--text-lg); }
  .hero { min-height: 350px; }
  .hero-enhanced { min-height: 50vh; }
  .hero-content h1 { font-size: var(--text-2xl); }
  .hero-content p { font-size: 1rem; }
  section { padding: 2.5rem 0; }
  .btn { font-size: 0.85rem; padding: 0.75rem 1.5rem; }
  #backToTop { width: 40px; height: 40px; bottom: 1.5rem; right: 1.5rem; }
  .page-header h1 { font-size: var(--text-2xl); }
  .contact-info-section, .contact-form-section { padding: 1.5rem; }
  .contact-item { padding: 1rem; }
  .contact-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1.1rem; }
  .speed-contact-bar { bottom: 0.75rem; left: 0.75rem; }
  .contact-bar-content { min-width: 240px; padding: 1rem; }
  .contact-bar-title { font-size: 0.95rem; }
  .contact-item-bar { padding: 0.6rem 0.75rem; }
  .contact-item-bar-label { font-size: 0.7rem; }
  .contact-item-bar-value { font-size: 0.9rem; }
}

/* -----------------------------------------------------------------
   24. REDUCED MOTION - WCAG 2.3.3
   ----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto !important; }
  .card:hover, .service-card:hover, .feature-card:hover { transform: none !important; }
}
