/* 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) {
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.25rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .service-item,
  .about-feature,
  .info-item,
  .team-member,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .footer {
    padding: 4rem 0 1rem;
  }
  
  .footer-col {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-content {
    text-align: center;
    padding: 1rem;
  }
  
  .hero-title-1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .service-item,
  .about-feature,
  .info-item,
  .team-member,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
  
  .price-card.featured {
    transform: scale(1);
  }
  
  .price-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .footer {
    padding: 3rem 0 1rem;
    text-align: center;
  }
  
  .footer-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-col {
    margin-bottom: 2rem;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-links li a {
    display: inline-block;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  section {
    padding: 2.5rem 0;
  }
  
  .hero-content {
    text-align: center;
    padding: 1rem;
  }
  
  .hero-title-1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1rem;
  }
  
  .hero-desc-1 {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .service-item,
  .about-feature,
  .info-item,
  .price-card,
  .team-member,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .price-card.featured {
    transform: scale(1);
  }
  
  .price-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .footer {
    padding: 2.5rem 0 1rem;
    text-align: center;
  }
  
  .footer-logo {
    font-size: 1.5rem;
  }
  
  .footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-col {
    margin-bottom: 2rem;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-links li a {
    display: inline-block;
  }
  
  .copyright p {
    font-size: 0.8rem;
  }
  
  /* Disable animations on mobile for better performance */
  @media (prefers-reduced-motion: reduce), (max-width: 768px) {
    .fadeInUp {
      animation: none;
    }
    
    .shape-1, .shape-2 {
      animation: none;
    }
    
    .service-item:hover,
    .about-feature:hover,
    .info-item:hover,
    .price-card:hover,
    .team-member:hover,
    .blog-item:hover {
      transform: none;
    }
    
    .gallery-item:hover img {
      transform: none;
    }
  }
} 