/* Responsive Design - Mobile First */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  /* Disable all animations on mobile */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  h1 {
    font-size: 1.25rem;
  }
  
  h2 {
    font-size: 1.125rem;
  }
  
  #hero {
    min-height: 70vh;
    text-align: center;
  }
  
  #hero::before,
  #hero::after {
    display: none;
  }
  
  .hero-content {
    padding: 20px 0;
    padding-top: 100px;
}
  
  .about-feature {
    margin-bottom: 20px;
  }
  
  .service-card {
    margin-bottom: 20px;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1.125rem !important;
  }
  
  h1 {
    font-size: 1.375rem;
  }
  
  #hero {
    min-height: 80vh;
  }
  
  .section-padding {
    padding: 60px 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  #hero {
    min-height: 90vh;
  }
  
  .section-padding {
    padding: 70px 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  #hero {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 80px 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Ultra wide screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Print styles */
@media print {
  #header,
  #footer {
    display: none !important;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
} 

body {
    overflow-x: hidden;
}