/* Mobile-First Responsive Design */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section .container {
    max-width: 1140px;
  }
  
  .service-card {
    height: 100%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    padding-top: 150px;
}
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 60vh;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    padding-top: 150px;
}
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* NO ANIMATIONS ON MOBILE - Required by specification */
  .service-card {
    transition: none;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .gallery-image {
    transition: none;
  }
  
  .gallery-image:hover {
    transform: none;
  }
  
  /* Mobile Layout Adjustments */
  .hero-section {
    min-height: 50vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 1.5rem;
    padding-top: 150px;
}
  
  .hero-section p {
    font-size: 0.875rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  .team-card {
    margin-bottom: 1.5rem;
    padding: 1rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .review-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .faq-card {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .gallery-image {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Mobile-specific spacing */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Mobile form adjustments */
  .form-control {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
  
  .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* Utility classes for responsive behavior */
.mobile-center {
  text-align: center;
}

@media (min-width: 768px) {
  .mobile-center {
    text-align: left;
  }
}

/* High contrast adjustments for accessibility */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .review-card,
  .faq-card,
  .contact-form {
    border-width: 3px;
  }
  
  .btn-primary {
    border-width: 2px;
  }
} 

body {
    overflow-x: hidden;
}