/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .about-features,
  .services-grid,
  .features-grid,
  .priceplan-grid,
  .team-grid,
  .coreinfo-grid,
  .blog-grid,
  .additional-elements {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    margin-top: var(--spacing-lg);
  }
  
  .footer-column {
    margin-bottom: var(--spacing-lg);
  }
}

/* Small Devices (tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .services-grid,
  .priceplan-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .about-features,
  .features-grid,
  .team-grid,
  .coreinfo-grid,
  .additional-elements {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info {
    margin-top: var(--spacing-lg);
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .services-grid,
  .priceplan-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .services-grid,
  .priceplan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Prefers Reduced Motion */
@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-slide {
    transition: none !important;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .hero-section,
  .reviews-section,
  .contact-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
} 