/* ===================================
   FACEPAINTING BY TREYA - M4 VISUAL REDESIGN
   Mobile-First, WCAG 2.1 AA, Teal Branding
   =================================== */

/* CSS Custom Properties - CLIENT SPECIFIED COLORS */
:root {
  /* Primary Teal/Turquoise Brand Colors */
  --primary: #14b8a6;          /* Teal 500 - Main brand */
  --primary-light: #5eead4;    /* Teal 300 - Hover states */
  --primary-dark: #0f766e;     /* Teal 700 - Focus/active */
  --primary-ultra-light: rgba(20, 184, 166, 0.1); /* 10% opacity */
  
  /* Warm Coral/Amber CTAs */
  --accent: #f59e0b;           /* Amber 500 - Call-to-action */
  --accent-light: #fbbf24;     /* Amber 400 - Hover */
  --accent-dark: #d97706;      /* Amber 600 - Active */
  
  /* Neutral Grays & Black Text - WCAG AA Compliant */
  --text-primary: #111827;     /* Gray 900 - 7.21:1 contrast */
  --text-secondary: #374151;   /* Gray 700 - 5.74:1 contrast */
  --text-muted: #6b7280;       /* Gray 500 - 4.61:1 contrast */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Semantic Colors */
  --success: #10b981;          /* Emerald 500 */
  --warning: #f59e0b;          /* Amber 500 */
  --error: #ef4444;            /* Red 500 */
  
  /* Typography - Inter Font Stack */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  
  /* Mobile-First Typography Scale */
  --text-xs: 0.75rem;          /* 12px */
  --text-sm: 0.875rem;         /* 14px */
  --text-base: 1rem;           /* 16px - WCAG minimum */
  --text-lg: 1.125rem;         /* 18px */
  --text-xl: 1.25rem;          /* 20px */
  --text-2xl: 1.5rem;          /* 24px */
  --text-3xl: 1.875rem;        /* 30px */
  --text-4xl: 2.25rem;         /* 36px */
  --text-5xl: 3rem;            /* 48px - desktop only */
  
  /* Line Heights */
  --leading-tight: 1.25;       /* Headings */
  --leading-normal: 1.5;       /* Body text */
  --leading-relaxed: 1.625;    /* Large blocks */
  
  /* 8px Grid Spacing System */
  --space-1: 0.25rem;          /* 4px */
  --space-2: 0.5rem;           /* 8px - Base unit */
  --space-3: 0.75rem;          /* 12px */
  --space-4: 1rem;             /* 16px */
  --space-5: 1.25rem;          /* 20px */
  --space-6: 1.5rem;           /* 24px */
  --space-8: 2rem;             /* 32px */
  --space-10: 2.5rem;          /* 40px */
  --space-12: 3rem;            /* 48px */
  --space-16: 4rem;            /* 64px */
  
  /* Border Radius */
  --radius-sm: 0.375rem;       /* 6px */
  --radius-md: 0.5rem;         /* 8px */
  --radius-lg: 0.75rem;        /* 12px */
  --radius-xl: 1rem;           /* 16px */
  
  /* 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);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   ACCESSIBILITY & FOCUS STYLES
   =================================== */

/* Skip Navigation Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: var(--space-2);
  background: var(--primary);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 1000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-2);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Focus Indicators - WCAG 2.1 AA Compliant */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus,
.btn:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

/* ===================================
   LAYOUT & CONTAINERS
   =================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  padding: var(--space-12) 0;
}

.section--light {
  background-color: var(--gray-50);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-normal);
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

/* ===================================
   BUTTON SYSTEM - 44px Touch Targets
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 24px;
  min-height: 44px;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--primary:active {
  background: var(--accent-dark);
  transform: translateY(0);
}

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

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

.btn--large {
  padding: 16px 32px;
  font-size: var(--text-lg);
  min-height: 52px;
}

.btn--full {
  width: 100%;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.header__logo {
  height: 50px;
  width: auto;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 101;
}

.nav__toggle-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

.nav__menu {
  position: fixed;
  top: 72px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 72px);
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: var(--space-8) var(--space-4);
  transition: right var(--transition-normal);
  z-index: 99;
}

.nav__menu.active {
  right: 0;
}

.nav__link {
  display: flex;
  align-items: center;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
  min-height: 44px;
}

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

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.85) 0%, rgba(15, 118, 110, 0.95) 100%);
  z-index: -1;
}

.hero__content {
  max-width: 600px;
  padding: var(--space-8);
  color: var(--white);
  background: rgba(20, 184, 166, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.hero__logo-img {
  max-width: 280px;
  height: auto;
  margin-bottom: var(--space-6);
}

.hero__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--leading-relaxed);
}

.hero__stats {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
  min-width: 80px;
  flex: 1;
}

.hero__stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   CARD COMPONENTS
   =================================== */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  text-align: center;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card--featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
}

.card--left-aligned {
  text-align: left;
}

.card--left-aligned .service-card__icon,
.card--left-aligned .service-card__title {
  text-align: center;
}


/* ===================================
   SERVICES GRID
   =================================== */

.services-content .card {
  text-align: center !important;
}

.services-content .card .contact-item {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: var(--space-2) !important;
}

.services-content .card .contact-item__content {
  text-align: center !important;
}

.services-content .card .contact-item__content h4,
.services-content .card .contact-item__content p {
  text-align: center !important;
  margin: 0 !important;
}

.services-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

.service-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--primary-ultra-light);
  border-radius: 50%;
  margin: 0 auto var(--space-4) auto;
  position: relative;
}

.service-card__icon i {
  font-size: var(--text-2xl);
  color: var(--primary);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.service-card__description {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ===================================
   GALLERY GRID - MOBILE-FIRST
   =================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===================================
   FORM ELEMENTS - WCAG COMPLIANT
   =================================== */

.form {
  max-width: 600px;
  width: 100%;
}

.form__row {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form__group {
  margin-bottom: var(--space-4);
}

.form__label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 12px 16px;
  min-height: 44px;
  font-size: 16px; /* Prevents zoom on iOS */
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--primary);
  outline: none;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===================================
   CONTACT LAYOUT
   =================================== */

.contact-content {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
  justify-items: center;
}

.services-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.contact-info {
  display: grid;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.card .contact-item {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-ultra-light);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.contact-item__icon i {
  color: var(--primary);
  font-size: var(--text-lg);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-item__content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.contact-item__content p {
  color: var(--text-secondary);
  margin: 0;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-12) 0 var(--space-6);
}

.footer__content {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
  text-align: center;
}

.footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.8);
}

.footer__links h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  color: var(--white);
}

.footer__links ul {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-2);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ===================================
   ABOUT PAGE SPECIFIC STYLES
   =================================== */

/* About Treya Section Layout */
.about-treya-container {
  display: flex;
  justify-content: center;
}

.about-treya-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
}

.treya-photo {
  margin-bottom: 2rem;
}

.about-treya-text {
  max-width: 800px;
}

.about-treya-paragraph {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 2rem;
}

.about-treya-quote {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
}

/* Service Area List Styles */
.service-area-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-area-list li {
  margin-bottom: 0.5rem;
}

.service-area-list .fas {
  color: var(--primary);
  margin-right: 0.5rem;
}

.service-area-note {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* Mission Section Styles */
.mission-container {
  text-align: center;
}

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

.mission-paragraph {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 2rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

/* ===================================
   SERVICES PAGE SPECIFIC STYLES
   =================================== */

/* Services Navigation */
.services-nav {
  text-align: center;
  margin-bottom: 2rem;
}

.services-nav .btn {
  margin: 0.25rem;
}

/* Service Card Content Grid */
.service-card-content {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

/* Service Card Actions */
.service-card-actions {
  text-align: center;
}

.service-card-actions .btn + .btn {
  margin-left: 0.5rem;
}

/* Service Card Price Text */
.service-card-price {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Booking Process Step Numbers */
.booking-step-number {
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* CTA Section Styling */
.cta-container {
  text-align: center;
}

.cta-subtitle {
  margin-bottom: 2rem;
}

.cta-actions {
  margin-top: 1.5rem;
}

.cta-actions .btn + .btn {
  margin-left: 0.5rem;
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Tablet - 768px and up */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }
  
  .section__title {
    font-size: var(--text-4xl);
  }
  
  .hero__title {
    font-size: var(--text-5xl);
  }
  
  .hero__logo-img {
    max-width: 350px;
  }
  
  .hero__stats {
    gap: var(--space-6);
    justify-content: center;
  }
  
  .hero__stat {
    min-width: 100px;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
  
  .contact-content {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    justify-items: start;
  }
  
  .services-content {
    align-items: center;
  }
  
  .form__row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__content {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  
  .nav__toggle {
    display: none;
  }
  
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
  }
  
  .nav__link {
    padding: 0 var(--space-4);
    border: none;
  }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
  .section {
    padding: var(--space-16) 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
  
  .services-grid {
    gap: var(--space-8);
  }
}

/* Large Desktop - 1280px and up */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero__bg-image,
  .gallery-item__image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* ===================================
   FAQ PAGE SPECIFIC STYLES
   =================================== */

/* FAQ Accordion Styles */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-4);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: var(--space-4);
  text-align: left;
  cursor: pointer;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question:focus {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.faq-question[aria-expanded='true'] {
  background: var(--primary-ultra-light);
  border-bottom: 1px solid var(--gray-200);
}

.faq-icon {
  font-size: var(--text-xl);
  color: var(--primary);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  padding: 0 var(--space-4) var(--space-4);
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: var(--space-3) 0;
  padding-left: var(--space-4);
}

.faq-answer li {
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

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

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.faq-nav a {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  background: var(--gray-100);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.faq-nav a:hover {
  background: var(--primary);
  color: var(--white);
}

/* FAQ CTA Section Styles */
.faq-cta {
  text-align: center;
}

.faq-cta .section__subtitle {
  margin-bottom: 2rem;
}

.faq-cta .btn--secondary {
  margin-left: 0.5rem;
}

.faq-cta .btn-container {
  margin-top: 1.5rem;
}

/* Print Styles */
@media print {
  .nav,
  .hero__stats,
  .btn,
  .footer {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    page-break-after: always;
  }
  
  .section {
    padding: var(--space-4) 0;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  html {
    scroll-behavior: auto !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn--primary {
    border: 2px solid var(--text-primary);
  }
  
  .service-card,
  .contact-item {
    border: 1px solid var(--text-primary);
  }
}