/* Responsive CSS */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .section-title {
    font-size: 36px;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-section {
    min-height: 650px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 32px;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .hero-section {
    min-height: 600px;
  }
  
  .navbar-collapse {
    background-color: var(--light-1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-toggler {
    border: none;
    padding: 0;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .service-card,
  .price-card,
  .about-feature,
  .feature-item,
  .coreinfo-item {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 30px;
  }
  
  .contact-form {
    margin-bottom: 50px;
  }
  
  footer .col-md-4 {
    margin-bottom: 30px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 18px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: 500px;
    text-align: center;
  }
  
  .hero-section::before {
    width: 100%;
    clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0% 100%);
    height: 50%;
    top: auto;
    bottom: 0;
  }
  
  .hero-img {
    margin-top: 40px;
  }
  
  .service-card,
  .price-card,
  .about-feature,
  .feature-item,
  .coreinfo-item,
  .team-member,
  .gallery-item,
  .blog-item {
    margin-bottom: 30px;
  }
  
  .page-header {
    padding: 150px 0 80px;
  }
  
  .page-title {
    font-size: 36px;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  footer {
    text-align: center;
  }
  
  footer .text-end {
    text-align: center !important;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .btn-primary {
    padding: 12px 30px;
  }
  
  .form-control {
    height: 50px;
  }
  
  .page-header {
    padding: 130px 0 60px;
  }
  
  .page-title {
    font-size: 30px;
  }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container .swiper-wrapper {
    transition-timing-function: linear !important;
  }
  
  .service-card:hover,
  .price-card:hover,
  .about-feature:hover,
  .feature-item:hover,
  .coreinfo-item:hover,
  .btn-primary:hover,
  .blog-item:hover {
    transform: none !important;
  }
  
  .gallery-item:hover .gallery-img {
    transform: none !important;
  }
} 