/* Responsive Styles */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    min-height: 85vh;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .service-card .card-img-top {
    height: 150px;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .price-plan-price {
    font-size: 2rem;
  }
  
  .review-item {
    padding: 1.5rem;
  }
  
  .core-info-item {
    padding: 1.5rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero {
    min-height: 90vh;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-card .card-body {
    padding: 1.5rem;
  }
  
  .price-plan-body {
    padding: 1.5rem;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .gallery-item img {
    height: 250px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .gallery-item img {
    height: 300px;
  }
}

/* Navigation responsiveness */
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  
  .navbar-collapse {
    background-color: var(--bg-dark);
    padding: 1rem;
    border-radius: 0 0 8px 8px;
  }
  
  .navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-dark .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Slider responsiveness */
@media (prefers-reduced-motion: reduce) or (max-width: 767.98px) {
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0px;
  }
  
  .swiper-container {
    padding-bottom: 30px;
  }
  
  .swiper-slide {
    height: auto;
  }
}

/* Other responsive adjustments */
@media (max-width: 767.98px) {
  .about-feature, 
  .features-item, 
  .core-info-item,
  .price-plan {
    margin-bottom: 30px;
  }
  
  footer {
    text-align: center;
  }
  
  footer .text-md-left,
  footer .text-md-right {
    text-align: center !important;
  }
  
  footer .mb-md-0 {
    margin-bottom: 2rem !important;
  }
} 