/* ===== RESPONSIVE STYLES ===== */

/* Mobile Optimization */
@media (max-width: 767.98px) {
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-slide {
    transition: none !important;
  }
  
  .swiper-wrapper {
    animation: none !important;
  }
  
  /* Typography adjustments */
  :root {
    --h1-size: 1.5rem;
    --h2-size: 1.25rem;
    --h3-size: 1.125rem;
    --navbar-brand-size: 1.125rem;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  /* Service Cards */
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .service-card img {
    width: 60px;
    height: 60px;
  }
  
  /* Team Members */
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 200px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* FAQ */
  .faq-question, .faq-answer {
    padding: 1rem;
  }
  
  /* Section Padding */
  .section-padding {
    padding: 2.5rem 0;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1199.98px) {
  /* Disable Swiper autoplay and effects on tablet */
  .swiper-slide {
    transition: none !important;
  }
  
  .swiper-wrapper {
    animation: none !important;
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card img {
    width: 70px;
    height: 70px;
  }
  
  .team-member img {
    width: 140px;
    height: 140px;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .service-card img {
    width: 90px;
    height: 90px;
  }
  
  .team-member img {
    width: 160px;
    height: 160px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-section,
  .footer {
    display: none !important;
  }
  
  body {
  overflow-x: hidden;
    background: white !important;
    color: black !important;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
} 