/* RVA Sites CSS System - Vanilla CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

:root {
  --navy-blue: #0C447C;
  --navy-blue-hsl: 210, 82%, 26%;
  --hero-blue: #378ADD;
  --hero-blue-hsl: 210, 71%, 54%;
  --sky-blue: #85B7EB;
  --sky-blue-hsl: 211, 73%, 72%;
  --frost-blue: #E6F1FB;
  --frost-blue-hsl: 208, 71%, 94%;
  --ink: #1A1A1A;
  --slate: #555555;
  --mist: #F5F5F5;
  --white: #FFFFFF;
  
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(12, 68, 124, 0.05);
  --shadow-md: 0 4px 12px rgba(12, 68, 124, 0.08);
  --shadow-lg: 0 8px 24px rgba(12, 68, 124, 0.12);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--mist);
  -webkit-font-smoothing: antialiased;
}

/* Base Styles */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-blue);
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-top: 1.5em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); margin-top: 1.2em; }
h4 { font-size: 1.15rem; margin-top: 1em; }

p {
  color: var(--slate);
  margin-bottom: 1.25em;
  font-weight: 400;
}

a {
  color: var(--hero-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--navy-blue);
}

ul, ol {
  margin-bottom: 1.25em;
  padding-left: 1.25rem;
  color: var(--slate);
}

li {
  margin-bottom: 0.5em;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-slate { color: var(--slate); }

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Header & Navigation */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition);
}

.site-header.scrolled .header-container {
  height: 65px;
}

.logo-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 150px;
}

.logo-img {
  position: absolute;
  top: 5px;
  left: 0;
  height: 100px; /* Default compact height on mobile */
  width: auto;
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 4px 10px rgba(12, 68, 124, 0.15));
  z-index: 10;
}

@media (min-width: 900px) {
  .logo-img {
    height: 165px; /* Large overlapping height on desktop */
  }
}

.site-header.scrolled .logo-img {
  height: 55px;
  top: 5px;
  filter: drop-shadow(0 2px 4px rgba(12, 68, 124, 0.05));
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-list li {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--slate);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--hero-blue);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-contact-link {
  color: var(--navy-blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
  font-size: 1rem;
  padding: 0.5rem 0;
  line-height: 1;
}

.header-contact-link:hover {
  color: var(--hero-blue);
}

/* Mobile Toggle button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--navy-blue);
  margin: 5px 0;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--hero-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--navy-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(12, 68, 124, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy-blue);
  border-color: var(--navy-blue);
}

.btn-secondary:hover {
  background-color: var(--frost-blue);
  color: var(--navy-blue);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 4.5rem 0 4.5rem 0;
  background: linear-gradient(180deg, #F0F6FC 0%, #FFFFFF 100%);
  border-bottom: 1px solid rgba(12, 68, 124, 0.05);
  overflow: hidden;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Hero Collage Layout */
.hero-collage {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.5rem;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: 400px;
  perspective: 1200px;
}

.collage-card {
  position: absolute;
  width: 480px;
  aspect-ratio: 16/10;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(12, 68, 124, 0.12);
  border: 4px solid var(--white);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--white);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-left {
  left: 2%;
  transform: rotate(-6deg) scale(0.85) translateY(30px);
  z-index: 1;
  opacity: 0.85;
}

.card-right {
  right: 2%;
  transform: rotate(6deg) scale(0.85) translateY(30px);
  z-index: 1;
  opacity: 0.85;
}

.card-center {
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(1);
  z-index: 2;
  box-shadow: 0 25px 50px rgba(12, 68, 124, 0.2);
  border-color: var(--white);
}

/* Hover Animations */
.collage-card:hover {
  z-index: 3 !important;
  opacity: 1 !important;
  box-shadow: 0 35px 70px rgba(12, 68, 124, 0.28) !important;
}

.card-left:hover {
  transform: rotate(-1deg) scale(0.92) translateX(15px) translateY(-15px);
}

.card-right:hover {
  transform: rotate(1deg) scale(0.92) translateX(-15px) translateY(-15px);
}

.card-center:hover {
  transform: translateX(-50%) translateY(-25px) scale(1.03);
}

/* Responsive adjustments for the collage */
@media (max-width: 991px) {
  .hero-collage {
    height: 300px;
    margin-top: 3.5rem;
  }
  .collage-card {
    width: 360px;
  }
  .card-left {
    left: 0;
  }
  .card-right {
    right: 0;
  }
}

@media (max-width: 600px) {
  .hero-collage {
    height: 220px;
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    overflow: visible;
  }
  
  .card-left,
  .card-right {
    display: none;
  }
  
  .collage-card.card-center {
    width: 290px;
    max-width: 85%;
    transform: translateX(-50%) rotate(-2deg) translateY(10px) scale(1);
    box-shadow: 0 15px 30px rgba(12, 68, 124, 0.18);
  }
  
  .collage-card.card-center:hover {
    transform: translateX(-50%) rotate(0deg) translateY(0px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(12, 68, 124, 0.25) !important;
  }
}

.hero h1 {
  line-height: 1.15;
}

.hero-sub {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  color: var(--slate);
  margin: 1rem auto 2rem auto;
  max-width: 650px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.slogan-badge {
  display: inline-block;
  background-color: var(--frost-blue);
  color: var(--navy-blue);
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(12, 68, 124, 0.1);
}

/* Main Layout Structure */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: var(--white);
}

.section-header {
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

/* Intro / Guide Callout */
.guide-box {
  background-color: var(--frost-blue);
  border: 1px solid rgba(12, 68, 124, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 2rem;
}

.guide-box p:last-child {
  margin-bottom: 0;
}

/* Step Card (How It Works) */
.step-card {
  background-color: var(--white);
  padding: 2.25rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(12, 68, 124, 0.03);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(55, 138, 221, 0.15);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sky-blue);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/* Feature Grid */
.feature-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--slate);
}

.feature-icon {
  color: var(--hero-blue);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.price-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(12, 68, 124, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--hero-blue);
}

.price-card.featured {
  border: 2px solid var(--hero-blue);
  box-shadow: var(--shadow-md);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--hero-blue);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-header h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media (min-width: 900px) {
  .price-header {
    min-height: 12.5rem;
  }
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin: 1rem 0;
  line-height: 1.1;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--slate);
}

.price-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.price-features {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(12, 68, 124, 0.05);
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate);
  margin-bottom: 0;
}

.price-features li svg {
  color: var(--hero-blue);
  flex-shrink: 0;
}

/* POS Addons & Post Sale */
.addon-card {
  background-color: var(--white);
  border: 1px solid rgba(12, 68, 124, 0.08);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  transition: var(--transition);
}

.addon-card:hover {
  border-color: var(--sky-blue);
  box-shadow: var(--shadow-md);
}

.addon-info {
  flex-grow: 1;
}

.addon-info h4 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.addon-price {
  background-color: var(--frost-blue);
  color: var(--navy-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Portfolio Gallery (Our Work) */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-tab {
  background-color: var(--white);
  border: 1px solid rgba(12, 68, 124, 0.1);
  color: var(--slate);
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background-color: var(--navy-blue);
  color: var(--white);
  border-color: var(--navy-blue);
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.work-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(12, 68, 124, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-blue);
}

.work-img-wrapper {
  aspect-ratio: 16/10;
  width: 100%;
  background-color: var(--mist);
  overflow: hidden;
  border-bottom: 1px solid rgba(12, 68, 124, 0.05);
  position: relative;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.work-card:hover .work-img {
  transform: scale(1.03);
}

.work-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(12, 68, 124, 0.9);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.work-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.work-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}

.work-note {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Get Started Questionnaire Form */
.order-container {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(12, 68, 124, 0.05);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.order-progress {
  display: flex;
  background-color: var(--frost-blue);
  border-bottom: 1px solid rgba(12, 68, 124, 0.05);
}

.progress-step {
  flex: 1;
  text-align: center;
  padding: 1rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.progress-step.active {
  color: var(--navy-blue);
  border-bottom-color: var(--hero-blue);
  background-color: rgba(55, 138, 221, 0.05);
}

.progress-step.completed {
  color: var(--hero-blue);
}

.order-step-panel {
  padding: 2.5rem;
  display: none;
}

.order-step-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(12, 68, 124, 0.2);
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--ink);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--hero-blue);
  box-shadow: 0 0 0 3px rgba(55, 138, 221, 0.15);
}

/* Card Selections in Form */
.selection-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.selection-card {
  border: 1.5px solid rgba(12, 68, 124, 0.12);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.selection-card:hover {
  border-color: var(--sky-blue);
  background-color: rgba(133, 183, 235, 0.02);
}

.selection-card.selected {
  border-color: var(--hero-blue);
  background-color: var(--frost-blue);
  box-shadow: var(--shadow-sm);
}

.selection-card input[type="radio"],
.selection-card input[type="checkbox"] {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  accent-color: var(--hero-blue);
}

.selection-card h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  padding-right: 2rem;
}

.selection-card .price-line {
  font-weight: 700;
  color: var(--hero-blue);
  margin-bottom: 0.5rem;
}

.selection-card .desc {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 0;
}

/* Order Summary */
.order-summary-box {
  background-color: var(--frost-blue);
  border: 1px dashed rgba(12, 68, 124, 0.2);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.summary-title {
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(12, 68, 124, 0.1);
  padding-bottom: 0.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--slate);
}

.summary-row.total {
  font-weight: 700;
  color: var(--navy-blue);
  font-size: 1.1rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(12, 68, 124, 0.1);
  padding-top: 0.5rem;
  margin-bottom: 0;
}

.order-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

/* Policies & FAQ Details */
.policy-card {
  background-color: var(--white);
  padding: 1.75rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(12, 68, 124, 0.05);
}

.policy-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

/* Map Style Block */
.map-block {
  background-color: var(--white);
  border: 1px solid rgba(12, 68, 124, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--frost-blue);
  background-image: linear-gradient(rgba(240, 246, 252, 0.90), rgba(240, 246, 252, 0.90)), url('richmond-map.png');
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy-blue);
  padding: 1.5rem;
  border: 1px solid rgba(12, 68, 124, 0.1);
}

.map-placeholder svg {
  color: var(--hero-blue);
  margin-bottom: 0.75rem;
}

.map-placeholder span {
  font-weight: 700;
  font-size: 1.1rem;
}

.map-placeholder p {
  font-size: 0.9rem;
  max-width: 320px;
  margin: 0.25rem 0 0 0;
}

/* Footer */
.site-footer {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-col h3, 
.footer-col h4 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.footer-col p {
  color: var(--sky-blue);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.footer-slogan {
  display: block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-left: 3px solid var(--hero-blue);
  padding-left: 0.75rem;
  line-height: 1.2;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--sky-blue);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.95rem;
}

.footer-contact-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--sky-blue);
}

.footer-contact-list a {
  color: var(--sky-blue);
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--white);
}

.footer-bottom p {
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--frost-blue);
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Accessibility Focus Outline */
*:focus-visible {
  outline: 3px solid var(--hero-blue);
  outline-offset: 2px;
}

/* Mobile Responsive Navigation Drawers */
@media (max-width: 899px) {
  .header-container {
    position: relative;
  }
  
  .mobile-toggle {
    display: block;
    z-index: 102;
  }
  
  .site-header.nav-open .mobile-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .site-header.nav-open .mobile-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .site-header.nav-open .mobile-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 2rem 2rem 2rem;
    box-shadow: -4px 0 24px rgba(12, 68, 124, 0.15);
    transition: var(--transition);
    z-index: 101;
    gap: 2rem;
  }
  
  .site-header.nav-open .nav-menu {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 1.25rem;
  }
  
  .nav-link {
    font-size: 1.15rem;
    display: block;
    width: 100%;
  }
  
  .header-contact-link {
    font-size: 1.1rem;
    margin-top: 1rem;
  }
}

@media (min-width: 600px) {
  .nobr-desktop {
    white-space: nowrap;
  }
}
