/* 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: 1199px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section p {
    font-size: 1.3rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --fs-xl: 2.8rem;
    --fs-lg: 2.2rem;
    --fs-md: 1.3rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-section {
    padding-top: 70px;
  }
  
  .hero-img {
    margin-top: 2rem;
  }
  
  .about-img {
    margin-bottom: 2rem;
  }
  
  .about-content {
    padding: 1rem 0;
  }
  
  .service-item {
    margin-bottom: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  :root {
    --fs-xl: 2.5rem;
    --fs-lg: 2rem;
    --fs-md: 1.2rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-section {
    text-align: center;
    padding-top: 70px;
  }
  
  .hero-img {
    margin-top: 2rem;
  }
  
  .about-img {
    margin-bottom: 2rem;
  }
  
  .about-content {
    padding: 0;
  }
  
  .about-feature {
    margin-bottom: 1rem;
  }
  
  .service-item {
    margin-bottom: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-item {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .review-author {
    flex-direction: column;
    text-align: center;
  }
  
  .review-author-img {
    margin: 0 auto 1rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  :root {
    --fs-xl: 2.2rem;
    --fs-lg: 1.8rem;
    --fs-md: 1.1rem;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  .hero-section {
    text-align: center;
    padding-top: 70px;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
  
  .hero-img {
    margin-top: 1.5rem;
  }
  
  .about-img {
    margin-bottom: 2rem;
  }
  
  .about-content {
    padding: 0;
  }
  
  .about-feature {
    margin-bottom: 1rem;
  }
  
  .service-item,
  .price-item,
  .coreinfo-item,
  .team-member,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .review-author {
    flex-direction: column;
    text-align: center;
  }
  
  .review-author-img {
    margin: 0 auto 1rem;
  }
  
  .review-text {
    padding-left: 0;
  }
  
  .review-text::before {
    display: none;
  }
  
  footer {
    padding-top: 2.5rem;
  }
  
  .footer-links {
    margin-top: 2rem;
  }
  
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  /* For mobile, disable Swiper autoplay */
  .swiper-container-autoplay {
    --swiper-autoplay: false;
  }
} 