/* Mobile First Responsive Design */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* No animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  #hero {
    min-height: 70vh;
    padding: 40px 0;
  }
  
  .service-card {
    margin-bottom: 20px;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  section {
    padding: 50px 0 !important;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 1.875rem;
  }
  
  #hero {
    min-height: 80vh;
  }
  
  section {
    padding: 60px 0 !important;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  #hero {
    min-height: 90vh;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  section {
    padding: 70px 0 !important;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  section {
    padding: 80px 0 !important;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  .col-lg-4 {
    margin-bottom: 30px;
  }
  
  .col-lg-6 {
    margin-bottom: 30px;
  }
}

/* Print styles */
@media print {
  * {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
  }
  
  .navbar,
  #footer {
    display: none;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .team-photo,
  .gallery-item img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  #hero {
    min-height: 100vh;
  }
}

/* Dark mode support (optional) */

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .blog-card:hover {
    transform: none;
  }
}

/* Focus improvements for keyboard navigation */
@media (any-hover: none) {
  .service-card:hover,
  .blog-card:hover {
    transform: none;
  }
} 

body {
    overflow-x: hidden;
}