/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .shape-blob {
    display: none;
  }
  
  .team-image {
    width: 120px;
    height: 120px;
  }
  
  .card-img-top {
    height: 180px;
  }
  
  .gallery-image {
    height: 200px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .team-image {
    width: 130px;
    height: 130px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .service-card,
  .blog-card,
  .price-plan {
    margin-bottom: 30px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-content {
    padding: 3rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content {
    padding: 4rem 0;
  }
}

/* Slider responsive settings */
@media (max-width: 767.98px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .swiper-pagination {
    bottom: 0;
  }
}

/* Navigation responsive styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    color: var(--primary-5) !important;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--medium-gray);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Footer responsive styles */
@media (max-width: 767.98px) {
  footer {
    text-align: center;
  }
  
  footer .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* About features responsive */
@media (max-width: 767.98px) {
  .about-feature {
    margin-bottom: 2rem;
  }
}

/* Price plans responsive */
@media (max-width: 991.98px) {
  .price-plan {
    margin-bottom: 2rem;
  }
  
  .price-plan.featured {
    transform: scale(1);
  }
}

/* Service items responsive */
@media (max-width: 991.98px) {
  .service-card {
    margin-bottom: 2rem;
  }
}

/* Team members responsive */
@media (max-width: 767.98px) {
  .team-member {
    margin-bottom: 3rem;
  }
}

/* Core info responsive */
@media (max-width: 767.98px) {
  .core-info-item {
    margin-bottom: 2rem;
    text-align: center;
  }
}

/* Gallery responsive */
@media (max-width: 575.98px) {
  .gallery-item {
    margin-bottom: 15px;
  }
}

/* Blog responsive */
@media (max-width: 991.98px) {
  .blog-card {
    margin-bottom: 2rem;
  }
}

/* Features responsive */
@media (max-width: 767.98px) {
  .feature-item {
    margin-bottom: 2rem;
    text-align: center;
  }
}

/* Contact form responsive */
@media (max-width: 767.98px) {
  .contact-form {
    margin-bottom: 2rem;
  }
} 