/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .service-card, 
  .price-card, 
  .team-card {
    margin-bottom: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  footer {
    text-align: center;
  }
  
  footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .team-image {
    width: 150px;
    height: 150px;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .hero-shape {
    width: 200px;
    height: 200px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .service-card, 
  .price-card {
    margin-bottom: 2rem;
  }
  
  .team-image {
    width: 175px;
    height: 175px;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-image {
    margin-top: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .price-card {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-content {
    padding-right: 2rem;
  }
}

/* Animations disabled for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .service-card:hover,
  .price-card:hover,
  .blog-card:hover,
  .about-feature:hover {
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  }
  
  .service-card:hover .service-image img,
  .blog-card:hover .blog-image img,
  .gallery-item:hover img {
    transform: none !important;
  }
}

/* Print styles */
@media print {
  header, 
  footer, 
  .hero-shape, 
  .btn {
    display: none !important;
  }
  
  body {
overflow-x: hidden;
    background-color: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
} 