/* Responsive CSS for Eco-Friendly Laundry Service */

/* Mobile First Approach */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  /* Hero section mobile */
  #hero {
    min-height: 70vh;
    text-align: center;
  }
  
  #hero::before {
    display: none;
  }
  
  /* Service cards stack */
  .service-card {
    margin-bottom: 2rem;
  }
  
  .service-image {
    height: 150px;
    font-size: 2rem;
  }
  
  /* Team cards mobile */
  .team-photo {
    width: 100px;
    height: 100px;
    font-size: 1.5rem;
  }
  
  /* Process steps mobile */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Gallery mobile */
  .gallery-item {
    height: 200px;
    font-size: 1.5rem;
  }
  
  /* Price cards mobile */
  .price-card.featured {
    transform: none;
    border-width: 2px;
  }
  
  /* Form adjustments */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Section padding mobile */
  .section-padding,
  #hero,
  #about,
  #services,
  #features,
  #priceplan,
  #team,
  #reviews,
  #casestudy,
  #process,
  #faq,
  #contacts,
  #gallery {
    padding: 60px 0;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Disable animations on small devices */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .service-image {
    height: 180px;
  }
  
  .gallery-item {
    height: 220px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-card:hover {
    transform: none;
  }
  
  .feature-card:hover {
    transform: none;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* Full animations enabled on desktop */
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  /* Enhanced spacing for large screens */
  .section-padding {
    padding: 100px 0;
  }
}

/* Print styles */
@media print {
  * {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
  }
  
  #header,
  #footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    overflow-x: hidden;
}
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-green: #2E7D32;
    --primary-blue: #1565C0;
    --primary-teal: #00695C;
    --primary-orange: #E65100;
    --primary-purple: #6A1B9A;
  }
  
  .btn-primary {
    border-width: 2px;
  }
  
  .service-card,
  .feature-card,
  .review-card,
  .contact-form {
    border: 2px solid #333;
  }
} 