/* 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 {
    height: 90vh;
  }
  
  .hero-shape {
    width: 250px;
    height: 250px;
  }
  
  .section-padding {
    padding: 80px 0;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    height: auto;
    padding: 150px 0 100px;
  }
  
  .hero-bg {
    width: 100%;
    height: 50%;
    opacity: 0.2;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-shape {
    width: 200px;
    height: 200px;
    left: auto;
    right: -10%;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .about-img {
    margin-bottom: 30px;
  }
  
  .service-card, .price-card, .team-card, .blog-card {
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero {
    height: auto;
    padding: 130px 0 80px;
    text-align: center;
  }
  
  .hero-bg {
    width: 100%;
    height: 50%;
    opacity: 0.2;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-shape {
    width: 150px;
    height: 150px;
    left: auto;
    right: -5%;
    bottom: 5%;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .about-img {
    margin-bottom: 30px;
  }
  
  .service-card, .feature-card, .price-card, .team-card, .review-card, .core-info-card, .blog-card {
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
  
  .page-header {
    height: 200px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  .hero {
    height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-bg {
    width: 100%;
    height: 50%;
    opacity: 0.2;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-shape {
    display: none;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title {
    margin-bottom: 1.5rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .about-img {
    margin-bottom: 30px;
  }
  
  .about-feature, .service-card, .feature-card, .price-card, .team-card, .review-card, .core-info-card, .blog-card {
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .contact-info {
    margin-top: 30px;
    padding: 25px;
  }
  
  .footer {
    padding: 50px 0 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  .footer-bottom {
    margin-top: 30px;
    text-align: center;
  }
  
  .page-header {
    height: 150px;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
  
  /* Prefers reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .hero-shape {
      animation: none;
    }
    
    .service-card:hover, .about-feature:hover, .feature-card:hover, .price-card:hover,
    .team-card:hover, .review-card:hover, .core-info-card:hover, .blog-card:hover {
      transform: none;
    }
    
    .service-card:hover .service-img img, .team-card:hover .team-img img, 
    .blog-card:hover .blog-img img, .gallery-item:hover img, .about-img:hover img {
      transform: none;
    }
  }
} 