/* Responsive styles */

/* Extra large devices (large desktops) */
@media (max-width: 1400px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

/* Large devices (desktops) */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h3 {
    font-size: 1.3rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
}

/* Medium devices (tablets) */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content h3 {
    font-size: 1.2rem;
  }
  
  .about-img {
    margin-bottom: 2rem;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
}

/* Small devices (landscape phones) */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .team-img img {
    height: 250px;
  }
  
  .review-item {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

/* Extra small devices (phones) */
@media (max-width: 576px) {
  html {
    font-size: 13px;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .hero {
    min-height: 450px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-content h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    margin-bottom: 1.5rem;
  }
  
  .feature-item, .service-item, .price-card, .team-member, .info-item, .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-form, .contact-info {
    padding: 1.5rem;
  }
  
  .shape-decorator {
    display: none;
  }
}

/* Animation adjustments for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .swiper-slide, .fade-up, .feature-item:hover, .service-item:hover, 
  .price-card:hover, .team-member:hover, .info-item:hover, .blog-item:hover {
    transform: none !important;
  }
  
  .service-item:hover .service-img img,
  .team-member:hover .team-img img,
  .blog-item:hover .blog-img img {
    transform: none !important;
  }
} 