/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  :root {
    --font-size-base: 0.875rem;
    --font-size-lg: 1rem;
    --font-size-xl: 1.125rem;
    --font-size-2xl: 1.25rem;
    --font-size-3xl: 1.5rem;
    --font-size-4xl: 1.75rem;
    
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
  }
  
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }
  
  .shape-1, .shape-2 {
    display: none;
  }
  
  .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-title, .section-subtitle, .section-description {
    text-align: center;
  }
  
  .about-feature, .service-item, .feature-item, .price-item, .team-member, .blog-item, .coreinfo-item {
    margin-bottom: var(--spacing-md);
  }
  
  .review-text:before, .review-text:after {
    display: none;
  }
  
  .review-text {
    padding: 0;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer ul {
    margin-bottom: var(--spacing-lg);
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  :root {
    --font-size-3xl: 1.75rem;
    --font-size-4xl: 2rem;
    
    --spacing-xl: 2.5rem;
    --spacing-2xl: 4rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 130px 0 70px;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }
  
  .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-title, .section-subtitle, .section-description {
    text-align: center;
  }
  
  .footer {
    text-align: center;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 140px 0 80px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .shape-1 {
    width: 200px;
    height: 200px;
  }
  
  .shape-2 {
    width: 150px;
    height: 150px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-image img {
    max-width: 100%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Prefers reduced motion */
@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: 999999s;
  }
} 