/* Responsive Styles */

/* Extra Large Screens (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section h1 {
    font-size: 4rem;
  }
}

/* Large Screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section h1 {
    font-size: 3.5rem;
  }
  
  section {
    padding: 4rem 0;
  }
}

/* Medium Screens (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  section {
    padding: 3.5rem 0;
  }
  
  .about-feature,
  .core-info-item,
  .service-card,
  .price-card,
  .team-member {
    margin-bottom: 1.5rem;
  }
  
  .team-img {
    width: 150px;
    height: 150px;
  }
  
  .shape {
    display: none;
  }
}

/* Small Screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .about-feature,
  .core-info-item,
  .service-card,
  .price-card,
  .team-member {
    margin-bottom: 1.5rem;
  }
  
  .team-img {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .shape {
    display: none;
  }
}

/* Extra Small Screens (575px and down) */
@media (max-width: 575px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .about-feature,
  .core-info-item,
  .service-card,
  .price-card,
  .team-member {
    margin-bottom: 1.5rem;
  }
  
  .team-img {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .shape {
    display: none;
  }
  
  .review-item {
    margin: 0.5rem;
    padding: 1.5rem;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    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,
  .feature-item:hover,
  .core-info-item:hover {
    transform: none;
  }
  
  .gallery-item:hover .gallery-img {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
} 