/* Mobile First Responsive Design */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .service-card,
  .price-card,
  .team-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
  
  /* Disable animations on mobile for better performance */
  .service-card:hover,
  .blog-card:hover,
  .gallery-image:hover {
    transform: none;
  }
  
  .gallery-image {
    height: 200px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .gallery-image {
    height: 220px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .gallery-image {
    height: 240px;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .gallery-image {
    height: 250px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .blog-card,
  .gallery-image {
    transition: none;
  }
  
  .service-card:hover,
  .blog-card:hover,
  .gallery-image:hover {
    transform: none;
  }
  
  .price-card.featured {
    transform: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  #footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
    overflow-x: hidden;
}
  
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .faq-card,
  .blog-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
} 