/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .about-feature {
    margin: 15px 0;
  }
  
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .coreinfo-item {
    margin-bottom: 20px;
  }
  
  .price-item {
    padding: 30px 20px;
  }
  
  .price-name {
    font-size: 1.5rem;
  }
  
  .price-tag {
    font-size: 2rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 30px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-section {
    height: auto;
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .coreinfo-item {
    margin-bottom: 20px;
  }
  
  .price-item {
    padding: 30px 20px;
  }
  
  .price-name {
    font-size: 1.5rem;
  }
  
  .price-tag {
    font-size: 2rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 25px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  footer {
    padding: 60px 0 30px;
  }
  
  footer h4 {
    margin-top: 30px;
  }
  
  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .hero-section {
    height: auto;
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .coreinfo-item {
    margin-bottom: 15px;
  }
  
  .service-name,
  .feature-item h4,
  .price-name,
  .coreinfo-item h4 {
    font-size: 1.3rem;
  }
  
  .price-item {
    padding: 25px 15px;
  }
  
  .price-tag {
    font-size: 1.8rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 20px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  footer {
    padding: 50px 0 20px;
  }
  
  footer h4 {
    margin-top: 25px;
    font-size: 1.3rem;
  }
  
  .footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
  }
  
  #site-copyright {
    font-size: 0.8rem;
  }
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
} 