/* LocalSoilLab Main Stylesheet */

:root {
  /* Concept 1 Locked Palette */
  --primary-brown: #3E2723;
  --primary-brown-hover: #2E1D1A;
  --forest-green: #2E7D32;
  --forest-green-hover: #226025;
  --forest-green-light: #E8F5E9;
  --sprout-lime: #7CB342;
  --sprout-lime-light: #F1F8E9;
  --bg-warm: #FAF8F5;
  --card-bg: #FFFFFF;
  --text-dark: #1F2937;
  --text-muted: #4B5563;
  --text-light: #6B7280;
  --border-color: #E2E8F0;
  --border-highlight: #C8E6C9;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 5px rgba(62, 39, 35, 0.04);
  --shadow-md: 0 6px 18px rgba(62, 39, 35, 0.08);
  --shadow-lg: 0 12px 30px rgba(62, 39, 35, 0.12);
  --shadow-glow: 0 0 20px rgba(46, 125, 50, 0.2);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-warm);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-brown);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1.025rem;
}

a {
  color: var(--forest-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s var(--ease-smooth), text-decoration 0.25s var(--ease-smooth);
}

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

/* Layout Elements */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* 21st.dev Glassmorphism Header */
.site-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-brown);
  text-decoration: none !important;
  transition: transform 0.3s var(--ease-smooth);
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--forest-green), var(--sprout-lime));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.35);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth);
}

.brand-logo:hover .logo-icon {
  transform: rotate(6deg) scale(1.08);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.45);
}

.brand-logo span.dot-com {
  color: var(--forest-green);
  font-weight: 600;
  font-size: 1rem;
}

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s var(--ease-smooth);
}

/* 21st.dev Animated Underline Hover Effect */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--forest-green), var(--sprout-lime));
  border-radius: 2px;
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--forest-green);
  text-decoration: none;
}

.nav-links a:hover::after {
  width: 100%;
}

/* 21st.dev Premium Spotlight Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none !important;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest-green), #1B5E20);
  color: white;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #338a36, var(--forest-green));
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px rgba(46, 125, 50, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background-color: var(--sprout-lime-light);
  color: var(--forest-green);
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--forest-green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
  border-color: var(--forest-green);
}

/* 21st.dev Pulsing Verification Badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--forest-green-light);
  color: var(--forest-green);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  border: 1px solid var(--border-highlight);
  animation: badgeGlow 3s infinite alternate ease-in-out;
}

@keyframes badgeGlow {
  0% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.1); }
  100% { box-shadow: 0 0 12px 2px rgba(46, 125, 50, 0.25); }
}

.verified-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* 21st.dev Hover Elevation Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}

.card:hover {
  transform: translateY(-5px) scale(1.008);
  box-shadow: 0 16px 32px -8px rgba(62, 39, 35, 0.1), 0 8px 16px -4px rgba(46, 125, 50, 0.08);
  border-color: rgba(46, 125, 50, 0.4);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.service-tag {
  background-color: var(--bg-warm);
  color: var(--primary-brown);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.card:hover .service-tag {
  background-color: var(--forest-green-light);
  color: var(--forest-green);
  border-color: var(--border-highlight);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 1.25rem 0;
  list-style: none;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span.sep {
  color: var(--border-color);
}

/* Data Table */
.data-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--card-bg);
  text-align: left;
}

.data-table th {
  background: linear-gradient(135deg, var(--primary-brown), #2E1D1A);
  color: white;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
}

.data-table td {
  padding: 0.85rem 1.1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: background-color 0.2s ease;
}

.data-table tr:hover td {
  background-color: rgba(46, 125, 50, 0.03);
}

.data-table tr:nth-child(even) {
  background-color: var(--bg-warm);
}

/* FAQ Accordion */
.faq-section {
  margin: 2.5rem 0;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), transform 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(46, 125, 50, 0.3);
  transform: translateX(2px);
}

.faq-item.active {
  border-color: var(--forest-green);
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.12);
}

.faq-question {
  padding: 1.1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.faq-question:hover {
  background-color: rgba(46, 125, 50, 0.04);
  color: var(--forest-green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
  color: var(--forest-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.35s var(--ease-spring), background-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  background: var(--forest-green);
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
  transition: max-height 0.4s var(--ease-smooth), opacity 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  opacity: 1;
  padding: 0.25rem 1.25rem 1.25rem 1.25rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--primary-brown), #1E1210);
  color: #D7CCC8;
  padding: 3.5rem 0 2rem 0;
  margin-top: 4rem;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-green), var(--sprout-lime), var(--forest-green));
}

.site-footer a {
  color: #A5D6A7;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
  color: #FFFFFF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #B0BEC5;
}

/* 21st.dev Premium Animated Hero Section (Original Compact Layout) */
.hero-section {
  background: linear-gradient(135deg, #2A1714 0%, var(--primary-brown) 40%, #153B18 100%);
  background-size: 200% 200%;
  animation: heroGradientMesh 15s ease infinite alternate;
  color: white;
  padding: 4.5rem 0 4rem 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* 21st.dev Tech Grid Background Pattern */
.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px, 48px 48px, 48px 48px;
  pointer-events: none;
  opacity: 0.6;
}

/* 21st.dev Glowing Ambient Radial Orbs */
.hero-glow-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-orb.orb-left {
  top: -40px;
  left: -60px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.35), transparent 70%);
  animation: orbPulseLeft 8s ease-in-out infinite alternate;
}

.hero-glow-orb.orb-right {
  bottom: -40px;
  right: -60px;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.35), transparent 70%);
  animation: orbPulseRight 9s ease-in-out infinite alternate;
}

@keyframes orbPulseLeft {
  0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.25) translate(20px, 30px); opacity: 0.95; }
}

@keyframes orbPulseRight {
  0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.2) translate(-20px, -20px); opacity: 0.95; }
}

@keyframes heroGradientMesh {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Aceternity Background Beams & Collision Animation */
.beam-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.beam-line {
  position: absolute;
  top: -150px;
  width: 2px;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(124, 179, 66, 0.8), rgba(255, 255, 255, 1));
  border-radius: 9999px;
  box-shadow: 0 0 12px rgba(124, 179, 66, 0.9);
  animation: beamFall 5s linear infinite;
}

.beam-1 { left: 12%; animation-duration: 4.5s; animation-delay: 0.5s; }
.beam-2 { left: 35%; animation-duration: 6s; animation-delay: 2s; }
.beam-3 { left: 58%; animation-duration: 3.8s; animation-delay: 1.2s; }
.beam-4 { left: 78%; animation-duration: 5.2s; animation-delay: 3s; }
.beam-5 { left: 92%; animation-duration: 4.2s; animation-delay: 1.8s; }

@keyframes beamFall {
  0% { transform: translateY(-100px); opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(550px); opacity: 0; }
}

/* Collision Collision Base Line */
.beam-collision-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 179, 66, 0.6), rgba(255, 255, 255, 0.8), rgba(124, 179, 66, 0.6), transparent);
  box-shadow: 0 0 20px rgba(124, 179, 66, 0.8);
  z-index: 2;
}

/* 21st.dev 2-Column Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
  text-align: left;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-grid .search-box {
    margin: 0 auto;
  }
}

/* 21st.dev Floating Glass Soil Testing Lab Card */
.hero-lab-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(124, 179, 66, 0.2) inset;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-smooth);
}

.hero-lab-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(124, 179, 66, 0.35) inset;
}

.hero-lab-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(62, 39, 35, 0.4));
}

.hero-lab-image-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
}

/* 21st.dev Floating Glass Badges */
.floating-glass-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 5;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-glass-badge.badge-top {
  top: -15px;
  left: -15px;
}

.floating-glass-badge.badge-bottom {
  bottom: -15px;
  right: -15px;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--forest-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(46, 125, 50, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

.hero-section h1 {
  color: white;
  font-size: 2.85rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-section p.hero-subtitle {
  color: #E0E0E0;
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* 21st.dev Glowing Spotlight Search Bar */
.search-box {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2);
  max-width: 650px;
  transition: box-shadow 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}

.search-box:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(124, 179, 66, 0.5);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-size: 1.05rem;
  font-family: var(--font-body);
  background: transparent;
  color: var(--text-dark);
}

/* Accessibility & Focus States */
:focus-visible {
  outline: 3px solid var(--forest-green);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible {
  outline: 3px solid var(--primary-brown);
  outline-offset: 2px;
}

/* Professional Blogger Guide Grid Breakpoint */
@media (max-width: 900px) {
  .guide-page-grid {
    grid-template-columns: 1fr !important;
  }
  aside {
    position: static !important;
  }
}

/* Touch Target Sizes for Mobile */
button, .btn, .nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  .hero-section { padding: 3rem 0 2.5rem 0; }
  .hero-section h1 { font-size: 1.95rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .search-box { flex-direction: column; }
  .header-inner { height: auto; padding: 1rem 0; flex-direction: column; gap: 0.75rem; text-align: center; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 0.75rem 1rem; }
}

/* AdSense Responsive Ad Unit Container & E-E-A-T Author Styles */
.ad-container {
  width: 100%;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: var(--radius-md);
  text-align: center;
  overflow: hidden;
}

.ad-label {
  font-size: 0.725rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin: 1.5rem 0 2rem 0;
  transition: transform 0.3s ease;
}

.author-box:hover {
  transform: translateY(-2px);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.citation-box {
  background: #F0FDF4;
  border-left: 4px solid var(--forest-green);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  font-size: 0.925rem;
}

/* Print Optimization */
@media print {
  header, footer, nav, aside, .btn, button, #cookie-consent-banner, .hero-section, #state-filter-input, #search-widget {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
    line-height: 1.5;
  }
  main.container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .card {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    break-inside: avoid;
    margin-bottom: 1rem !important;
  }
}
