/* 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 {
    font-size: 3rem;
  }
  
  .shape-1 {
    width: 250px;
    height: 250px;
  }
  
  .shape-2 {
    width: 200px;
    height: 200px;
  }
  
  .team-image {
    width: 180px;
    height: 180px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 80px 0;
  }
  
  .section-heading h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .shape-1 {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -30px;
  }
  
  .shape-2 {
    width: 180px;
    height: 180px;
    left: -30px;
  }
  
  .about-feature,
  .service-item,
  .price-item,
  .coreinfo-item {
    margin-bottom: 30px;
  }
  
  .team-image {
    width: 160px;
    height: 160px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 60px 0;
  }
  
  .section-heading {
    margin-bottom: 30px;
  }
  
  .section-heading h2 {
    font-size: 2rem;
  }
  
  .hero {
    height: auto;
    padding: 120px 0 60px;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 40px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .shape-1, .shape-2 {
    display: none;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  .review-author {
    flex-direction: column;
    text-align: center;
  }
  
  .review-author img {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  footer {
    text-align: center;
  }
  
  footer .col-sm-6 {
    margin-bottom: 30px;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links li {
    margin: 0 10px 10px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  section {
    padding: 50px 0;
  }
  
  .section-heading {
    margin-bottom: 30px;
  }
  
  .section-heading h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    height: auto;
    padding: 100px 0 50px;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .shape-1, .shape-2 {
    display: none;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 30px;
  }
  
  .service-price,
  .price-item .price {
    font-size: 1.8rem;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .review-author {
    flex-direction: column;
    text-align: center;
  }
  
  .review-author img {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .gallery-item {
    margin-bottom: 15px;
  }
  
  footer {
    text-align: center;
    padding: 40px 0 20px;
  }
  
  footer .col-6 {
    margin-bottom: 30px;
  }
  
  footer h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links li {
    margin: 0 10px 10px;
  }
  
  #site-copyright {
    font-size: 0.8rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  /* Disable animations on mobile */
  .about-feature:hover,
  .service-item:hover,
  .price-item:hover,
  .coreinfo-item:hover,
  .blog-item:hover {
    transform: none;
  }
  
  .blog-item:hover .blog-image img,
  .gallery-item:hover img {
    transform: none;
  }
  
  .gallery-overlay {
    opacity: 1;
    background-color: rgba(58, 63, 120, 0.4);
  }
} 