/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .services-item, 
  .priceplan-item {
    padding: 1.8rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .services-grid,
  .priceplan-grid,
  .team-grid {
    gap: 1rem;
  }
  
  .priceplan-price {
    font-size: 2rem;
  }
  
  .about-feature,
  .services-item,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .team-img {
    width: 150px;
    height: 150px;
  }
  
  .contact-form {
    margin-top: 2rem;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .team-member {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .reviews-item {
    padding: 1.5rem;
  }
  
  .reviews-text::before, 
  .reviews-text::after {
    font-size: 2rem;
  }
  
  .reviews-text::before {
    top: -1rem;
    left: -0.3rem;
  }
  
  .reviews-text::after {
    bottom: -1.8rem;
    right: 0.3rem;
  }
  
  .testimonial-slider .swiper-pagination {
    bottom: 0;
  }
  
  footer {
    padding-top: 3rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 2.5rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-feature,
  .services-item,
  .priceplan-item {
    padding: 1.5rem;
  }
  
  .services-price {
    font-size: 1.3rem;
  }
  
  .services-features li {
    font-size: 0.9rem;
  }
  
  .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .accordion-body {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* For reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
}

/* Adjustments for mobile devices for animations and sliders */
@media (max-width: 768px) {
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
  
  .shape-blob,
  .shape-circle {
    display: none;
  }
}

/* Hide decorative elements on very small screens */
@media (max-width: 360px) {
  .decorative-elements {
    display: none;
  }
} 