/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content #hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .team-img-container {
    height: 250px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content #hero-subtitle-1 {
    font-size: 1rem;
  }
  
  .hero-content #hero-desc-1 {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .services-name, .features-name, .price-name, .team-name, .coreinfo-title {
    font-size: 1.1rem;
  }
  
  .team-img-container {
    height: 220px;
  }
  
  .services-card, .price-card, .coreinfo-card {
    margin-bottom: 1.5rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content #hero-subtitle-1 {
    font-size: 0.9rem;
  }
  
  .hero-content #hero-desc-1 {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .hero-buttons {
    margin-top: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.35rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .services-card, .price-card, .team-card, .coreinfo-card {
    margin-bottom: 1.5rem;
  }
  
  .reviews-card {
    margin: 0 0.5rem;
  }
  
  .contact-info {
    margin-top: 1.5rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-content h1 {
    font-size: 1.35rem;
  }
  
  .hero-content #hero-subtitle-1 {
    font-size: 0.85rem;
  }
  
  .hero-content #hero-desc-1 {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-buttons {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .section-subtitle {
    font-size: 0.85rem;
  }
  
  .services-card, .price-card, .team-card, .coreinfo-card {
    margin-bottom: 1.5rem;
  }
  
  .price-header {
    padding: 1rem;
  }
  
  .price-body {
    padding: 1rem;
  }
  
  .reviews-card {
    margin: 0;
    padding: 1.25rem;
  }
  
  .reviews-card:before {
    font-size: 3rem;
  }
  
  .contact-info {
    margin-top: 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 1.5rem;
  }
}

/* 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;
  }
  
  .services-card:hover,
  .price-card:hover,
  .team-card:hover,
  .features-card:hover,
  .coreinfo-card:hover {
    transform: none !important;
  }
  
  .team-card:hover .team-img {
    transform: none !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 999999999s; /* Effectively disable autoplay */
  }
}

/* Print styles */
@media print {
  header, footer, .contact-section {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  body {
    background-color: white;
    color: black;
  }
} 