/* ==========================================================================
   FORT WAYNE PLUMBING EXPERT - MASTER STYLESHEET
   Clean, Modern, Performance-First, WCAG Compliant
   ========================================================================== */

:root {
  --color-primary: #0b2545;
  --color-primary-light: #134074;
  --color-primary-dark: #061527;
  --color-accent: #0284c7;
  --color-accent-hover: #0369a1;
  --color-accent-subtle: #e0f2fe;
  --color-emergency: #b91c1c;
  --color-emergency-hover: #991b1b;
  --color-emergency-subtle: #fee2e2;
  --color-surface: #ffffff;
  --color-background: #f8fafc;
  --color-surface-alt: #f1f5f9;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-text-subtle: #64748b;
  --color-border: #cbd5e1;
  --color-border-subtle: #e2e8f0;
  
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  
  --max-width: 1200px;
  --header-height: 76px;
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.nav-open, body.modal-open {
  overflow: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* Utility bar */
.utility-bar {
  background-color: var(--color-primary-dark);
  color: #e2e8f0;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.utility-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.utility-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.utility-phone a {
  color: #38bdf8;
  font-weight: 700;
  text-decoration: none;
}
.utility-phone a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-subtle);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo img {
  height: 44px;
  width: auto;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.35rem);
  flex-wrap: nowrap;
}
.nav-link {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.25rem;
  text-decoration: none;
  position: relative;
  transition: color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
  text-decoration: none;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.25rem;
  right: 0.25rem;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.btn-header-call {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-header-call:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.38);
  transform: translateY(-1px);
  text-decoration: none;
}
.header-btn-icon {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}
.btn-header-call:hover .header-btn-icon {
  transform: rotate(15deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  min-height: 44px;
}
.btn-primary {
  background-color: var(--color-accent);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-dark {
  background-color: var(--color-primary);
  color: #ffffff;
}
.btn-dark:hover {
  background-color: var(--color-primary-light);
  color: #ffffff;
  text-decoration: none;
}
.btn-emergency {
  background-color: var(--color-emergency);
  color: #ffffff;
}
.btn-emergency:hover {
  background-color: var(--color-emergency-hover);
  color: #ffffff;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover {
  background: var(--color-surface-alt);
  border-color: var(--color-text-muted);
  text-decoration: none;
}
.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  min-height: 36px;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
}
.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background-color: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Mobile Nav Drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
  z-index: 9998;
}
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: var(--color-surface);
  z-index: 9999;
  padding: 1.5rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-xl);
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border-subtle);
  padding-bottom: 1rem;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav-links a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.mobile-nav-links a:hover {
  background: var(--color-surface-alt);
  color: var(--color-accent);
}
.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-subtle);
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  padding: 0.6rem 0.85rem;
  padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
  z-index: 990;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}
.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}
.mobile-sticky-bar .btn {
  width: 100%;
  font-size: 0.9rem;
  padding: 0.65rem 0.5rem;
  min-height: 46px;
  white-space: nowrap;
}

/* Layout Containers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
.section {
  padding: 3.5rem 0;
}
.section-alt {
  background-color: var(--color-surface-alt);
}
.section-dark {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.section-dark h1, .section-dark h2, .section-dark h3 {
  color: #ffffff;
}
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1.5rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin-top: 1.2rem; }
p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--color-accent-subtle);
  color: var(--color-accent-hover);
  margin-bottom: 0.75rem;
}

/* Hero Section */
.hero {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #0b2545 0%, #134074 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.hero h1 {
  color: #ffffff;
  margin-bottom: 1.2rem;
}
.hero p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Trust Bar / Trust Modules */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.trust-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--color-accent-subtle);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.trust-title {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.trust-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Cards & Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}
.card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}
.card-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-subtle);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--color-text-subtle);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumbs li::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--color-border);
}
.breadcrumbs li:last-child::after {
  content: "";
}
.breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Content Page Layout with Sidebar */
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2.5rem;
  align-items: start;
}
.main-content {
  min-width: 0;
}
.content-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-cta-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #ffffff;
  border: none;
}
.sidebar-cta-box h3, .sidebar-cta-box p {
  color: #ffffff;
}
.sidebar-cta-box .phone-big {
  font-size: 1.35rem;
  font-weight: 800;
  color: #38bdf8;
  display: block;
  margin: 1rem 0;
  text-decoration: none;
}

/* Native Accordion FAQ (Section 62) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
details.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s ease;
}
details.faq-item[open] {
  border-color: var(--color-accent);
}
details.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}
details.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
details.faq-item .faq-body {
  padding: 0 1.25rem 1.25rem 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 1rem;
}

/* Forms */
.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.form-group.full-width {
  grid-column: 1 / -1;
  min-width: 0;
  max-width: 100%;
}
.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form-label .required {
  color: var(--color-emergency);
}
.form-control {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 44px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
select.form-control {
  width: 100%;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}
.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
  outline: none;
}
textarea.form-control {
  min-height: 110px;
  resize: vertical;
}
.form-note {
  font-size: 0.8rem;
  color: var(--color-text-subtle);
  margin-top: 0.5rem;
}
.form-success-banner {
  display: none;
  background: #dcfce7;
  color: #14532d;
  border: 1px solid #86efac;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Mandatory Form Error Modal (Section 16 & Section 118) */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(3px);
  z-index: 100000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--color-emergency);
  position: relative;
  text-align: center;
  animation: modalIn 0.2s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.modal-icon {
  width: 56px;
  height: 56px;
  background: var(--color-emergency-subtle);
  color: var(--color-emergency);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.modal-title {
  font-size: 1.35rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
.modal-body-text {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-actions .btn {
  width: 100%;
}

/* Footer */
.site-footer {
  background-color: var(--color-primary);
  color: #cbd5e1;
  padding-top: 3.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0.75rem;
  color: #94a3b8;
}
.footer-heading {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-nap {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5e1;
}
.footer-nap a {
  color: #38bdf8;
  font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}
.footer-legal-links a {
  color: #94a3b8;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .content-sidebar {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 70px; /* Space for sticky bar */
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 2.5rem 0;
  }
}

@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;
  }
}
