/* Responsive Styles - Bootstrap 5 Based */
/* NO CUSTOM GRID SYSTEMS OR BOOTSTRAP OVERRIDES */

/* Mobile First Approach */
@media (max-width: 576px) {
  .hero-section {
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  h1 {
    font-size: var(--font-size-2xl);
  }
  
  h2 {
    font-size: var(--font-size-xl);
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card,
  .review-card,
  .blog-card,
  .case-study-card {
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  /* NO ANIMATIONS ON MOBILE */
  .service-card:hover,
  .blog-card:hover {
    transform: none;
  }
}

/* Tablet Styles */
@media (min-width: 577px) and (max-width: 992px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
}

/* Desktop Styles */
@media (min-width: 993px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
    padding: 5rem 0;
  }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .section {
    page-break-inside: avoid;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .service-card,
  .review-card,
  .faq-card,
  .contact-form {
    border: 2px solid var(--dark-slate);
  }
  
  .btn-primary {
    border: 2px solid var(--dark-purple);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .blog-card,
  .case-study-card {
    transition: none;
  }
  
  .service-card:hover,
  .blog-card:hover {
    transform: none;
  }
}

/* Dark Mode Support */

/* Focus Management */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-purple);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* Keyboard Navigation */
.btn:focus,
.form-control:focus,
.navbar-nav .nav-link:focus {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Spacing Utilities for Mobile */
@media (max-width: 576px) {
  .mb-mobile-3 {
    margin-bottom: 1rem;
  }
  
  .p-mobile-2 {
    padding: 0.5rem;
  }
  
  .text-mobile-center {
    text-align: center;
  }
}

.hero-section h1 {
    padding-top: 150px;
}