/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .section-title h2 {
    font-size: 2.25rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .team-img {
    width: 150px;
    height: 150px;
  }
  .eco-card-img {
    height: 160px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  .hero-slide {
    height: 70vh;
    min-height: 500px;
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero-content h3 {
    font-size: 1.25rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .section-title h2 {
    font-size: 1.75rem;
  }
  .section-title h3 {
    font-size: 1.1rem;
  }
  .team-img {
    width: 140px;
    height: 140px;
  }
  .eco-card-img {
    height: 180px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 2.5rem 0;
  }
  .hero-slide {
    height: 60vh;
    min-height: 450px;
  }
  .hero-content {
    padding: 1rem;
  }
  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .hero-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .section-title {
    margin-bottom: 2rem;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .section-title h2:after {
    width: 60px;
    height: 2px;
  }
  .section-title h3 {
    font-size: 1rem;
  }
  .team-member {
    margin-bottom: 2rem;
  }
  .team-img {
    width: 120px;
    height: 120px;
  }
  .eco-card-img {
    height: 160px;
  }
  .navbar-brand {
    font-size: 1.25rem;
  }
  .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
  .footer {
    padding: 2rem 0 1rem;
  }
  .footer-title {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  .review-item {
    padding: 1.5rem;
  }
  .contact-form {
    padding: 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;
  }
  .swiper-container {
    --swiper-autoplay-delay: 0ms;
  }
} 