/* Responsive Styles */

/* Extra Large Devices */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Large Devices */
@media (max-width: 1199.98px) {
  section {
    padding: 5rem 0;
  }
  
  .hero-section {
    min-height: 90vh;
  }
}

/* Medium Devices */
@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .navbar {
    padding: 15px 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-section::before {
    width: 40%;
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  
  .price-card {
    padding: 40px 20px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
}

/* Small Devices */
@media (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .hero-section {
    text-align: center;
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-section::before {
    display: none;
  }
  
  .about-feature, 
  .service-card, 
  .feature-card, 
  .price-card, 
  .team-card, 
  .blog-card {
    margin-bottom: 30px;
  }
  
  .swiper-button-next, 
  .swiper-button-prev {
    display: none;
  }
  
  .review-card {
    margin: 15px 0;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .contact-info {
    padding: 30px 20px;
  }
  
  /* Disable animations on mobile */
  .animate-fade-in {
    animation: none;
  }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
  section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .btn-primary, 
  .btn-secondary {
    padding: 10px 20px;
  }
  
  .price-card .price {
    font-size: 2.5rem;
  }
  
  .gallery-item {
    margin-bottom: 20px;
  }
  
  #space {
    min-height: 400px;
    margin: 60px 0;
  }
  
  .footer-bottom {
    text-align: center;
  }
}

/* Fix for mobile menu toggler */
.navbar-toggler:focus {
  box-shadow: none;
}

/* Fix for Swiper slider on mobile */
@media (max-width: 767.98px) {
  .swiper-container {
    overflow: visible;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* Special fix for footer on small screens */
@media (max-width: 575.98px) {
  footer {
    padding: 50px 0 20px;
  }
} 