/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .section-sm {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .feature-card, 
  .service-card, 
  .price-card, 
  .team-card, 
  .info-card, 
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .section-sm {
    padding: 1.5rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
  
  .shape {
    display: none;
  }
  
  .about-feature-card {
    margin-bottom: 1rem;
  }
  
  .service-card, 
  .price-card, 
  .team-card, 
  .info-card, 
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  /* Make Swiper slider responsive on smaller screens */
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  html {
    font-size: 13px;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-sm {
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .shape {
    display: none;
  }
  
  /* Make Swiper slider responsive on smaller screens */
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  
  /* Adjust spacing for stacked elements */
  .feature-card, 
  .service-card, 
  .price-card, 
  .team-card, 
  .info-card, 
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card.popular {
    transform: none;
  }
  
  .price-card.popular:hover {
    transform: translateY(-10px);
  }
  
  .footer-widget {
    margin-bottom: 1.5rem;
  }
  
  /* Reduce padding in cards for mobile */
  .feature-card,
  .service-content,
  .price-card,
  .info-card {
    padding: 1.5rem;
  }
  
  /* Make hero section shorter on mobile */
  .hero-section,
  .hero-slide {
    height: 80vh;
    min-height: 500px;
  }
  
  /* Adjust review cards spacing */
  .review-card {
    margin: 1rem 0.5rem;
    padding: 1.5rem;
  }
  
  /* Hide animations for better performance */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }
} 