/* Responsive Styles - Mobile First Approach */

/* Mobile Styles (Default) */
@media (max-width: 575.98px) {
  /* No animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.25rem; }
  
  /* Hero section */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: 1rem;
  }
  
  /* Sections padding */
  section {
    padding: 2rem 0;
  }
  
  /* Service cards */
  .service-card {
    margin-bottom: 1rem;
    padding: 1.5rem 1rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Gallery images */
  #gallery img {
    height: 150px;
  }
  
  /* Process numbers */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  /* FAQ cards */
  .faq-question,
  .faq-answer {
    padding: 0.75rem;
  }
}

/* Small tablets */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  #gallery img {
    height: 180px;
  }
}

/* Medium tablets and small laptops */
@media (min-width: 768px) and (max-width: 991.98px) {
  .team-photo {
    width: 140px;
    height: 140px;
  }
  
  #gallery img {
    height: 200px;
  }
}

/* Large screens */
@media (min-width: 992px) {
  /* Hero section full height */
  #hero {
    min-height: 100vh;
  }
  
  /* Service cards equal height */
  .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Gallery hover effects (desktop only) */
  #gallery img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
}

/* Extra large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  section {
    padding: 5rem 0;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .card-eco {
    border-width: 2px;
  }
  
  .btn-eco-primary,
  .btn-eco-secondary {
    border-width: 2px;
  }
}

/* Print styles */
@media print {
  .navbar,
  #footer {
    display: none;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .service-card,
  .team-member,
  .faq-card {
    page-break-inside: avoid;
  }
} 

body {
    overflow-x: hidden;
}