/* 
 * Standalone Modern Production Stylesheet
 * Magpie-goose Inmate Services LLC - Lake Charles, LA
 * Lightweight, accessible, zero dependencies, responsive.
 */

:root {
  --primary: #1e3a8a;
  --primary-hover: #172554;
  --primary-light: #eff6ff;
  --accent: #d97706;
  --accent-hover: #b45309;
  --slate-dark: #0f172a;
  --slate-medium: #334155;
  --slate-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --success: #16a34a;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

*, *::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(--slate-dark);
  background-color: var(--white);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.max-w-4xl {
  max-width: 56rem;
}

/* Typography & Helpers */
h1, h2, h3, h4 {
  color: var(--slate-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-green { color: var(--success); }
.font-bold { font-weight: 700; }
.w-full { width: 100%; }
.mb-3 { margin-bottom: 0.75rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-secondary {
  background-color: var(--slate-dark);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: #1e293b;
}

.btn-outline {
  border-color: var(--border-color);
  background-color: var(--white);
  color: var(--slate-dark);
}
.btn-outline:hover {
  background-color: var(--bg-light);
  border-color: var(--slate-medium);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background-color: #f1f5f9;
}

.btn-outline-white {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.05rem;
}

/* Icons */
.icon-xs { width: 1rem; height: 1rem; }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }

/* Top Info Bar */
.top-bar {
  background-color: var(--slate-dark);
  color: #cbd5e1;
  font-size: 0.825rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1e293b;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.badge-tag {
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
}
.info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.phone-link-top {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #60a5fa;
  font-weight: 700;
}
.phone-link-top:hover {
  color: #93c5fd;
}

/* Site Header & Responsive Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1rem;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-symbol {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}
.logo-symbol svg {
  width: 1.5rem;
  height: 1.5rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Desktop Nav Links */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--slate-medium);
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.nav-link:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  padding: 6px;
  cursor: pointer;
}
.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--slate-dark);
  transition: all 0.3s;
}

/* Mobile Menu Drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 1.5rem 1.25rem;
}
.mobile-drawer.open {
  display: block;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.mobile-link {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--slate-dark);
}
.mobile-hours {
  margin-top: 1rem;
  text-align: center;
  color: var(--slate-light);
}

/* Hero Section */
.hero-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-color);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dbeafe;
  color: #1e40af;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #2563eb;
  border-radius: 50%;
  display: inline-block;
}
.hero-heading {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: #0f172a;
}
.hero-lead {
  font-size: 1.125rem;
  color: var(--slate-medium);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-dark);
}

/* Quick Intake Hero Card */
.quick-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
}
.card-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--success);
}
.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
}
.hours-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-light);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.925rem;
  color: var(--slate-medium);
}
.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.micro-note {
  font-size: 0.75rem;
  color: var(--slate-light);
  margin-top: 0.5rem;
}

/* Sections */
.section-padding {
  padding: 4.5rem 0;
}
.bg-light {
  background-color: var(--bg-light);
}
.bg-slate {
  background-color: var(--slate-dark);
}
.text-white {
  color: var(--white);
}

.section-heading {
  margin-bottom: 3rem;
}
.sub-title {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.main-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.section-desc {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--slate-medium);
  font-size: 1.05rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}
.service-icon-box {
  margin-bottom: 1rem;
}
.service-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.25rem 0.65rem;
  border-radius: 0.25rem;
}
.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.95rem;
  color: var(--slate-medium);
  margin-bottom: 1.25rem;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-medium);
}
.service-action {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}
.service-link:hover {
  color: var(--primary-hover);
}

/* Why Choose Us Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: left;
}
.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
}
.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.95rem;
  color: var(--slate-medium);
}

/* Service Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.25rem;
}
.area-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.area-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: #dbeafe;
  color: #1e40af;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
}
.area-type {
  font-size: 0.75rem;
  color: var(--slate-light);
}
.area-name {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.area-notes {
  font-size: 0.875rem;
  color: var(--slate-medium);
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.75rem;
  position: relative;
}
.step-badge {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.925rem;
  color: var(--slate-medium);
}

/* Trust Section */
.trust-box {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 0.75rem;
  padding: 2.5rem;
}
.shield-badge {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.shield-badge svg {
  width: 2rem;
  height: 2rem;
}
.trust-lead {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 48rem;
}
.trust-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.point-item {
  background: rgba(15, 23, 42, 0.6);
  padding: 1rem;
  border-radius: 0.375rem;
  border-left: 3px solid var(--accent);
  color: #e2e8f0;
  font-size: 0.95rem;
}
.disclaimer-text {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.25rem;
  text-align: left;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-dark);
  cursor: pointer;
}
.faq-question:hover {
  background: var(--bg-light);
}
.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--slate-medium);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  color: var(--slate-medium);
  line-height: 1.6;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-title {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}
.contact-desc {
  font-size: 1rem;
  color: var(--slate-medium);
  margin-bottom: 2rem;
}
.contact-card-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
}
.info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-light);
}
.info-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-dark);
}

/* Social Buttons */
.social-block {
  margin-top: 1.5rem;
}
.social-heading {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-medium);
  margin-bottom: 0.75rem;
}
.social-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.social-btn {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-medium);
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.social-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}
.text-icon {
  font-size: 0.75rem;
  font-weight: 800;
}

/* Form Styles */
.form-wrapper {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 2rem;
}
.form-title {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--slate-medium);
  margin-bottom: 1.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-dark);
}
.required {
  color: #dc2626;
}
.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
}
.form-privacy-note {
  font-size: 0.8rem;
  color: var(--slate-light);
  text-align: center;
}
.form-status-msg {
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  text-align: center;
}
.form-status-success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}
.form-status-error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: var(--white);
  padding: 4.5rem 0;
}
.final-cta-title {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.final-cta-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.final-cta-hours {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Footer */
.site-footer {
  background-color: #0b1120;
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid #1e293b;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.footer-logo svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #60a5fa;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.footer-address p {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.hover-underline:hover {
  text-decoration: underline;
  color: var(--white);
}
.footer-title {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-social-list a {
  font-size: 0.875rem;
  color: #94a3b8;
}
.footer-social-list a:hover {
  color: #60a5fa;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.825rem;
  text-align: center;
}
.footer-subcopy {
  margin-top: 0.25rem;
  color: #64748b;
}

/* Sticky Mobile CTA Bar */
.sticky-mobile-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: var(--white);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  border-top: 1px solid var(--border-color);
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}
.sticky-call {
  background-color: var(--primary);
  color: var(--white);
}
.sticky-quote {
  background-color: var(--slate-dark);
  color: var(--white);
}

/* Responsive Media Queries */
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 2.75rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .trust-points {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .desktop-only {
    display: inline-flex !important;
  }
  .desktop-nav {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
  .sticky-mobile-cta {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  body {
    padding-bottom: 3.85rem;
  }
  .desktop-only {
    display: none !important;
  }
}
