/* Tablet Styles */
@media (max-width: 991.98px) {
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Section padding */
  section {
    padding: 3rem 0;
  }
  
  /* Hero section */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-shape-1,
  .hero-shape-2 {
    display: none;
  }
  
  /* Cards spacing */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card {
    margin-bottom: 2rem;
  }
  
  /* Contact form */
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
  
  /* Team avatars */
  .team-avatar {
    width: 100px;
    height: 100px;
  }
  
  /* Process steps */
  .process-step {
    margin-bottom: 2rem;
  }
  
  /* Timeline adjustments */
  .timeline-item::before {
    display: none;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* NO ANIMATIONS ON MOBILE - Critical requirement */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Conservative mobile typography */
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  /* Section spacing */
  section {
    padding: 2.5rem 0;
  }
  
  /* Hero section mobile */
  #hero {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-content {
    text-align: center;
    padding-top: 200px;
}
  
  /* Buttons */
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .btn:last-child {
    margin-bottom: 0;
  }
  
  /* Cards full width on mobile */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  /* Service cards mobile layout */
  .service-card {
    text-align: center;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Price cards mobile */
  .price-value {
    font-size: 2rem;
  }
  
  /* Team section mobile */
  .team-avatar {
    width: 80px;
    height: 80px;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .contact-info {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  /* Process mobile */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Gallery mobile */
  .gallery-image {
    height: 250px;
  }
  
  /* Footer mobile */
  #footer {
    text-align: center;
    padding: 3rem 0 2rem;
  }
  
  .footer-links {
    margin-bottom: 2rem;
  }
  
  /* FAQ mobile */
  .faq-card {
    padding: 1.5rem;
  }
  
  /* Blog mobile */
  .blog-image {
    height: 180px;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  /* Info cards mobile */
  .info-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .info-icon i {
    font-size: 1.5rem;
  }
  
  /* Feature icons mobile */
  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .feature-icon i {
    font-size: 1.25rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  /* Extra small screens */
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Typography for very small screens */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  h3 {
    font-size: 1.15rem;
  }
  
  /* Section spacing */
  section {
    padding: 2rem 0;
  }
  
  /* Hero mobile */
  #hero {
    min-height: 60vh;
  }
  
  /* Cards padding */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .faq-card {
    padding: 1.5rem;
  }
  
  /* Contact form */
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  /* Blog content */
  .blog-content {
    padding: 1.25rem;
  }
  
  /* Footer */
  #footer {
    padding: 2.5rem 0 1.5rem;
  }
}

/* Landscape Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  #hero {
    min-height: 100vh;
  }
  
  section {
    padding: 2rem 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure images and icons remain crisp */
  .feature-icon,
  .info-icon,
  .process-number {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Print Styles */
@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  .navbar,
  #footer,
  .btn {
    display: none !important;
  }
  
  section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
}

/* Focus States for Accessibility */
@media (prefers-reduced-motion: no-preference) {
  /* Only add focus animations if user hasn't requested reduced motion */
  .btn:focus,
  .form-control:focus,
  .nav-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
  }
}

/* Dark Mode Support (if needed) */

body {
    overflow-x: hidden;
}