/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  :root {
    --base-font-size: 14px;
    --section-padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-slider .swiper-slide {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-member-img {
    height: 250px;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer [class^="col-"] {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  :root {
    --base-font-size: 15px;
    --section-padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .team-member-img {
    height: 270px;
  }
  
  .footer [class^="col-"] {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .footer [class^="col-"] {
    margin-bottom: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-content {
    max-width: 550px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  :root {
    --base-font-size: 17px;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .section-title {
    font-size: 2.75rem;
  }
}

/* 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;
  }
  
  .hero-slider .swiper-wrapper,
  .reviews-slider .swiper-wrapper {
    transition-duration: 0.01ms !important;
  }
  
  .hero-slider .swiper-wrapper,
  .reviews-slider .swiper-wrapper {
    transform: translate3d(0, 0, 0) !important;
  }
  
  [data-aos] {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
  }
}

/* Prefers dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #f0f0f0;
    --text-medium: #d1d1d1;
    --text-light: #a1a1a1;
  }
} 