/* ============================================
   PALE MENTOR - NATURE ORGANIC DESIGN SYSTEM
   Modern Mobile Technology with Organic Touch
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #fdfcfb;
  overflow-x: hidden;
}

/* ============================================
   NATURE ORGANIC COLOR PALETTE
   ============================================ */
:root {
  --primary-dark: #2c3e50;
  --primary-blue: #3498db;
  --accent-red: #e74c3c;
  --earth-brown: #8b6f47;
  --sage-green: #87a878;
  --cream: #f5f3ef;
  --sand: #e8e3d6;
  --moss: #5a7a4d;
  --clay: #b8926a;
  --white: #ffffff;
  --light-gray: #ecf0f1;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
}

/* ============================================
   TYPOGRAPHY - NATURE ORGANIC
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

a:hover {
  color: var(--sage-green);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ============================================
   HEADER - ORGANIC NATURE DESIGN
   ============================================ */
header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border-bottom: 3px solid var(--sage-green);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sage-green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: var(--sage-green);
  background: rgba(135, 168, 120, 0.1);
}

.main-nav a:hover::after {
  width: 80%;
}

.cta-button {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss) 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(87, 122, 77, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(87, 122, 77, 0.4);
  color: white;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
  display: none;
  background: var(--sage-green);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1002;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--moss);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
  z-index: 1001;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-red);
  color: white;
  border: none;
  font-size: 24px;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #c0392b;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: white;
  border-left-color: var(--sage-green);
  transform: translateX(8px);
}

/* ============================================
   HERO SECTION - ORGANIC NATURE
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

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

.hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-primary {
  background: white;
  color: var(--sage-green);
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-primary:hover {
  background: var(--moss);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.cta-secondary {
  background: transparent;
  color: white;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: white;
  color: var(--sage-green);
  transform: translateY(-3px);
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  color: white;
  font-size: 14px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* ============================================
   SECTIONS - ORGANIC SPACING
   ============================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  text-align: center;
  color: var(--text-light);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-dark);
}

/* ============================================
   CARD GRIDS - FLEXBOX ONLY
   ============================================ */
.services-grid,
.features-grid,
.categories-grid,
.benefits-grid,
.guides-grid,
.testimonials-grid,
.process-steps,
.protection-grid,
.charging-grid,
.stats-grid,
.values-grid,
.guide-grid,
.contact-grid,
.categories-grid,
.brands-grid,
.problems-grid,
.guides-list,
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

/* ============================================
   SERVICE CARDS - ORGANIC DESIGN
   ============================================ */
.service-card,
.feature,
.category-card,
.testimonial-card,
.guide-card,
.value,
.category,
.guide-item,
.contact-card,
.stat-box,
.protection-type,
.charging-type,
.problem,
.benefit {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 380px;
  border: 2px solid var(--sand);
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-green), var(--moss));
  border-radius: 16px 16px 0 0;
}

.service-card:hover,
.guide-card:hover,
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(135, 168, 120, 0.2);
  border-color: var(--sage-green);
}

.service-card h3,
.guide-card h3,
.category-card h3 {
  color: var(--sage-green);
  margin-bottom: 16px;
  font-size: 22px;
}

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

.service-card li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-dark);
}

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

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--sage-green);
  margin-top: 16px;
  display: block;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  padding: 60px 20px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid var(--sage-green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.testimonial-card .author {
  color: var(--sage-green);
  font-weight: 600;
  font-style: italic;
  margin-top: 8px;
}

.rating {
  text-align: center;
  color: var(--sage-green);
  font-size: 18px;
  margin-top: 24px;
  font-weight: 600;
}

/* ============================================
   STATS & FEATURES
   ============================================ */
.stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 40px 20px;
  background: rgba(135, 168, 120, 0.1);
  border-radius: 16px;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat strong {
  display: block;
  font-size: 48px;
  color: var(--sage-green);
  font-weight: 700;
  margin-bottom: 8px;
}

.stat span {
  color: var(--text-dark);
  font-size: 16px;
}

/* ============================================
   CTA BANNER - ORGANIC NATURE
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--earth-brown) 0%, var(--clay) 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info {
  margin-top: 24px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

/* ============================================
   TIMELINE - ORGANIC FLOW
   ============================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--sage-green);
  position: relative;
  margin-bottom: 20px;
}

.timeline-item strong {
  font-size: 24px;
  color: var(--sage-green);
  min-width: 80px;
  font-weight: 700;
}

.timeline-item p {
  flex: 1;
  color: var(--text-dark);
  margin: 0;
}

/* ============================================
   FORMS - ORGANIC NATURE DESIGN
   ============================================ */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 2px solid var(--sand);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sand);
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: var(--cream);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(135, 168, 120, 0.1);
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-note {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ============================================
   FOOTER - ORGANIC EARTH TONES
   ============================================ */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a252f 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h4 {
  color: var(--sage-green);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-column a:hover {
  color: var(--sage-green);
  padding-left: 8px;
}

.footer-column p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--sage-green);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a252f 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
}

.cookie-text p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: var(--sage-green);
  color: white;
}

.cookie-accept:hover {
  background: var(--moss);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.cookie-settings {
  background: transparent;
  color: var(--sage-green);
  border: 2px solid var(--sage-green);
}

.cookie-settings:hover {
  background: var(--sage-green);
  color: white;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--light-gray);
  color: var(--primary-dark);
}

.cookie-category {
  margin: 24px 0;
  padding: 20px;
  background: var(--cream);
  border-radius: 12px;
  border-left: 4px solid var(--sage-green);
}

.cookie-category h3 {
  color: var(--sage-green);
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.cookie-category p {
  color: var(--text-dark);
  font-size: 14px;
  margin-top: 8px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.link-arrow {
  color: var(--sage-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.link-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}

.link-arrow:hover {
  gap: 12px;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.text-section {
  margin-bottom: 40px;
  padding: 32px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--sage-green);
}

.text-section h2 {
  color: var(--sage-green);
  text-align: left;
  margin-bottom: 16px;
}

.text-section p {
  line-height: 1.8;
}

/* Success/Thank You Page */
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--sage-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(135, 168, 120, 0.3);
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.lead {
  font-size: 20px;
  color: var(--text-light);
}

/* Brands List */
.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.brands-list span,
.brands-grid span {
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--sand);
  border-radius: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  transition: all 0.3s ease;
}

.brands-list span:hover,
.brands-grid span:hover {
  border-color: var(--sage-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 168, 120, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-content .cta-button {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .service-card,
  .guide-card,
  .category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    flex: 1;
  }
  
  .form-wrapper {
    padding: 24px;
  }
  
  .stats {
    flex-direction: column;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .location-grid {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .service-card,
  .guide-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (min-width: 1025px) {
  .service-card,
  .guide-card {
    flex: 1 1 calc(33.333% - 24px);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .hero-cta {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .service-card,
  .guide-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus {
  outline: 3px solid var(--sage-green);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--sage-green);
  outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--sage-green);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

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