/* Generated by Bolt for Harbor Health */

:root {
  --primary: #0077be;
  --primary-dark: #005a92;
  --secondary: #00a878;
  --accent: #ff6b35;
  --background: #ffffff;
  --background-alt: #f8f9fa;
  --text: #2c3e50;
  --text-light: #6c757d;
  --emphasis: #1a1a1a;
  --cta: #ff6b35;
  --border: #dee2e6;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --success: #28a745;
  --error: #dc3545;

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--emphasis);
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

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

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

ul {
  list-style: none;
}

header#site-header {
  background: var(--background);
  box-shadow: 0 2px 4px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

header#site-header.scrolled {
  box-shadow: 0 4px 12px var(--shadow-hover);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 1rem;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;
}

.logo a:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translate(6px, -6px);
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  text-decoration: none;
}

.header-phone a {
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  color: white;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

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

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

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

.btn-primary:hover {
  background: #e55a2b;
  border-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-accent {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.btn-accent:hover {
  background: #008f68;
  border-color: #008f68;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 168, 120, 0.3);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

#homepage-article {
  padding: 3rem 1rem;
}

.content-article {
  max-width: 900px;
  margin: 0 auto;
}

.article-block {
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.article-block:nth-child(1) { animation-delay: 0.1s; }
.article-block:nth-child(2) { animation-delay: 0.2s; }
.article-block:nth-child(3) { animation-delay: 0.3s; }

.intro-block {
  text-align: center;
  padding: 2rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--background-alt);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.cta-highlight {
  background: linear-gradient(135deg, rgba(0, 119, 190, 0.05) 0%, rgba(0, 168, 120, 0.05) 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.important-callout {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 1.5rem;
}

.important-callout h3 {
  color: #856404;
  margin-bottom: 0.75rem;
}

.quick-actions-panel {
  background: var(--background-alt);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.quick-action-btn:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px var(--shadow-hover);
  text-decoration: none;
}

.action-icon {
  font-size: 2rem;
}

.action-text {
  font-weight: 600;
  color: var(--emphasis);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.testimonials-section {
  margin: 4rem 0;
  padding: 3rem 1rem;
  background: var(--background-alt);
  border-radius: 12px;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  animation: fadeIn 0.5s ease-in;
}

.testimonial.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial blockquote {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  border-left: 4px solid var(--primary);
}

.testimonial p {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1rem;
}

.testimonial cite {
  display: block;
  text-align: right;
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 5px;
}

.site-footer {
  background: var(--emphasis);
  color: white;
  padding: 3rem 1rem 1rem;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: white;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

.privacy-note {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.chat-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow-hover);
  transition: all 0.3s ease;
  z-index: 999;
}

.chat-fab:hover {
  transform: scale(1.1);
  background: var(--primary-dark);
}

.chat-modal {
  display: none;
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 90%;
  max-width: 400px;
  max-height: 600px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px var(--shadow-hover);
  z-index: 1000;
  flex-direction: column;
}

.chat-modal.active {
  display: flex;
}

.chat-header {
  background: var(--primary);
  color: white;
  padding: 1rem;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 1;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-message {
  padding: 0.75rem;
  border-radius: 8px;
  max-width: 85%;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.chat-message.bot {
  background: var(--background-alt);
  align-self: flex-start;
}

.chat-message.user {
  background: var(--primary);
  color: white;
  align-self: flex-end;
}

.chat-quick-replies {
  padding: 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
}

.quick-reply {
  padding: 0.5rem 1rem;
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-reply:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.chat-input-area {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.chat-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
}

.chat-send {
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.chat-send:hover {
  background: var(--primary-dark);
}

.page-hero {
  background: linear-gradient(135deg, rgba(0, 119, 190, 0.1) 0%, rgba(0, 168, 120, 0.1) 100%);
  padding: 3rem 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  font-weight: 400;
}

.page-content {
  padding: 2rem 0;
}

.content-page {
  max-width: 900px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 3rem;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-light);
}

.mission-statement {
  background: var(--background-alt);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-marker {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  padding-top: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  padding: 1.5rem;
  background: var(--background-alt);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.member-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-section {
  text-align: center;
  background: var(--background-alt);
  padding: 3rem 2rem;
  border-radius: 12px;
}

.standard-form {
  max-width: 700px;
  margin: 2rem auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--emphasis);
}

.required {
  color: var(--error);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--error);
}

.error-message {
  display: none;
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.error-message.active {
  display: block;
}

.form-help {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-label input,
.checkbox-label input {
  width: auto;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.confirmation-panel {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--background-alt);
  border-radius: 12px;
  text-align: center;
  animation: fadeIn 0.5s ease-in;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem;
}

.confirmation-message {
  color: var(--text-light);
  margin: 1.5rem 0;
  line-height: 1.6;
}

.faq-accordion {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--emphasis);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.how-it-works {
  margin: 2rem 0;
}

.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.steps-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  counter-increment: step-counter;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.neighborhood-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.neighborhood-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px var(--shadow-hover);
}

.neighborhood-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.coverage-note {
  text-align: center;
  margin-top: 2rem;
}

.service-detail {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.supplies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.supply-category {
  background: var(--background-alt);
  padding: 1.5rem;
  border-radius: 12px;
}

.supply-category h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.supply-category ul {
  list-style: none;
}

.supply-category li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.supply-category li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-method {
  text-align: center;
  padding: 2rem;
  background: var(--background-alt);
  border-radius: 12px;
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-detail {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-description {
  color: var(--text-light);
}

.copy-tooltip {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: var(--success);
  color: white;
  border-radius: 4px;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copy-tooltip.active {
  opacity: 1;
}

.hours-section {
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}

.hours-table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.hours-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-light);
}

.hours-note {
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.note-box {
  background: #e7f5ff;
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 1.5rem;
}

.location-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.location-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.info-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.email-info {
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
}

.email-display {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 4rem;
  }

  .main-nav.active {
    left: 0;
    box-shadow: 4px 0 12px var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .header-phone {
    display: none;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .timeline::before {
    left: 40px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 5rem;
  }

  .timeline-marker {
    position: absolute;
    left: 0;
  }

  .chat-fab {
    bottom: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
  }

  .chat-modal {
    right: 1rem;
    bottom: 4.5rem;
    max-width: calc(100% - 2rem);
  }

  .services-grid,
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  header#site-header,
  .chat-fab,
  .chat-modal,
  .hero-actions,
  .carousel-controls,
  .footer-section:not(:first-child) {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    background: white;
    color: black;
    border-bottom: 2px solid black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
