/* ========================================
   IRVINE.CSS - Tech Hub Moving Services
   Teal/Cyan color scheme for innovation focus
   ======================================== */

/* ========================================
   CSS VARIABLES - IRVINE COLORS
   ======================================== */
:root {
  /* Primary Teal Colors (Tech Hub Theme) */
  --teal-primary: #0a7373;
  --teal-dark: #085858;
  --teal-light: #0891b2;
  --cyan-accent: #06b6d4;
  
  /* Orange Accent (Brand Standard) */
  --earth-orange: #ff8a50;
  --orange-dark: #ff6f2c;
  --orange-light: #ffa574;
  
  /* Gradients */
  --gradient-teal: linear-gradient(135deg, #0a7373 0%, #085858 100%);
  --gradient-teal-cyan: linear-gradient(135deg, #0a7373 0%, #06b6d4 100%);
  --gradient-hero: linear-gradient(135deg, #0a7373 0%, #06b6d4 50%, #ff8a50 100%);
  --gradient-orange: linear-gradient(135deg, #ff8a50 0%, #ff6f2c 100%);
  
  /* Neutral Colors */
  --color-white: #ffffff;
  --color-black: #1a1918;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Georgia', serif;
  
  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--teal-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

a {
  color: var(--teal-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--teal-dark);
}

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

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto;
}

.accent-text {
  color: var(--teal-primary);
  position: relative;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-orange);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff6f2c 0%, #ff5a1f 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  background: var(--gradient-teal);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #085858 0%, #064545 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: white;
}

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ========================================
   HERO SECTION (LAKE FOREST STYLE)
   ======================================== */
.hero-lf {
  padding: 4rem 0 3rem;
  background: linear-gradient(to bottom, var(--gray-50), white);
}

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: var(--gray-400);
}

.breadcrumb-list a {
  color: var(--teal-primary);
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--teal-light), var(--cyan-accent));
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.trust-seal {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.seal-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.seal-text strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.875rem;
}

.seal-text span {
  display: block;
  color: var(--gray-600);
  font-size: 0.75rem;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  padding: 2rem 0;
  background: var(--gradient-teal);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ========================================
   NEIGHBORHOODS SECTION
   ======================================== */
.neighborhoods-section {
  padding: 4rem 0;
  background: white;
}

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

.neighborhood-group {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.group-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-list {
  list-style: none;
}

.location-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

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

.location-list li strong {
  color: var(--gray-900);
  font-weight: 600;
  display: block;
}

.location-list li span {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

/* ========================================
   SERVICES SHOWCASE
   ======================================== */
.services-showcase {
  padding: 4rem 0;
  background: var(--gray-50);
}

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

.service-item {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
}

.service-item:hover {
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon-wrapper {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-teal);
  color: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-700);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-primary);
  font-weight: 700;
}

/* ========================================
   TIPS SECTION
   ======================================== */
.tips-section {
  padding: 4rem 0;
  background: white;
}

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

.tip-card {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.tip-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-primary);
  margin-bottom: 1.5rem;
}

.tip-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.tip-content h4:first-child {
  margin-top: 0;
}

.tip-content ul {
  list-style: none;
  margin-bottom: 1rem;
}

.tip-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-700);
}

.tip-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--earth-orange);
  font-weight: 700;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

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

.review-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

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

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
}

.review-date {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.review-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author strong {
  display: block;
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.review-author span {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
}

.summary-stat .stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-primary);
  margin-bottom: 0.5rem;
}

.summary-stat .stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.review-platforms {
  text-align: center;
}

.platforms-intro {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.platforms-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.platforms-links a {
  color: var(--teal-primary);
  font-weight: 500;
}

.platforms-links a:hover {
  text-decoration: underline;
}

/* ========================================
   ABOUT SERVICE AREA (Why Choose Us)
   ======================================== */
.about-service-area {
  padding: 4rem 0;
  background: white;
}

.info-card {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
}

.info-card:hover {
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.card-body p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--teal-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.faq-icon::after {
  content: '+';
}

.faq-item[open] .faq-icon::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.quote-section {
  padding: 4rem 0;
  background: white;
}

.quote-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.quote-form {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-fast);
}

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

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  color: var(--gray-700);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.checkbox-label.consent {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 1rem;
}

.form-note a {
  color: var(--teal-primary);
  font-weight: 600;
}

.quote-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card,
.guarantee-card {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.contact-info-card h3,
.guarantee-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item svg {
  color: var(--teal-primary);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item a {
  display: block;
  color: var(--teal-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

.guarantee-card ul {
  list-style: none;
}

.guarantee-card li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.guarantee-card li:last-child {
  border-bottom: none;
}

.guarantee-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-primary);
  font-weight: 700;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding: 4rem 0;
  background: var(--gradient-teal);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin-top: 2rem;
}

.cta-features li {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   FOOTER
   ======================================== */
.page-footer {
  padding: 2rem 0;
  background: var(--gray-900);
  color: white;
  text-align: center;
}

.footer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.footer-text a {
  color: white;
  font-weight: 600;
}

.footer-text a:hover {
  color: var(--cyan-accent);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  
  
  .quote-layout {
    grid-template-columns: 1fr;
  }
  
  .neighborhoods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .review-summary {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
 
}
@media (max-width: 760px){
  .hero-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-lf {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* .trust-seal {
    position: static;
    margin-top: 1rem;
  } */
  
  .review-summary {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .floating-buttons,
  .hero-badge,
  .btn,
  .cta-buttons {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
  }
  
  .section-title {
    font-size: 18pt;
  }
}

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

@media (prefers-color-scheme: dark) {
  /* Optional: Add dark mode styles here if needed */
}

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--teal-primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }
}