/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .navbar-brand {
    font-size: 22px;
  }
  
  #hero {
    height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  #hero::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    width: 100%;
    opacity: 0.2;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .about-feature {
    margin-bottom: 30px;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .feature-item {
    margin-bottom: 30px;
  }
  
  .price-card {
    margin-bottom: 30px;
  }
  
  .team-card {
    margin-bottom: 30px;
  }
  
  .review-card {
    padding: 30px 20px;
  }
  
  .coreinfo-item {
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .contact-info {
    padding: 30px 20px;
  }
  
  .blog-card {
    margin-bottom: 30px;
  }
  
  .accordion-button {
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .accordion-body {
    padding: 15px 20px;
  }
  
  footer {
    padding: 60px 0 20px;
  }
  
  footer h4 {
    margin-top: 30px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 36px;
  }
  
  #hero {
    height: auto;
    padding: 120px 0 70px;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 50px;
  }
  
  #hero::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    width: 100%;
    opacity: 0.2;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .about-feature {
    margin-bottom: 30px;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .feature-item {
    margin-bottom: 30px;
  }
  
  .price-card {
    margin-bottom: 30px;
  }
  
  .team-card {
    margin-bottom: 30px;
  }
  
  .contact-form {
    margin-bottom: 30px;
  }
  
  .blog-card {
    margin-bottom: 30px;
  }
  
  footer h4 {
    margin-top: 30px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-feature {
    margin-bottom: 30px;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .feature-item {
    margin-bottom: 30px;
  }
  
  .price-card {
    margin-bottom: 30px;
  }
  
  .team-card {
    margin-bottom: 30px;
  }
  
  .blog-card {
    margin-bottom: 30px;
  }
  
  .contact-form {
    margin-bottom: 30px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .price-header {
    padding: 25px 20px;
  }
  
  .price-content {
    padding: 25px 20px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* Animations and transitions for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-theme-color: var(--primary-color);
  }
  
  .swiper-pagination-bullet-active {
    background: var(--primary-color);
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: var(--primary-color);
  }
} 