/* Responsive CSS - Mobile First Approach */
/* Bootstrap 5 Breakpoints Compatible */

/* Mobile Animations Disabled */
@media (max-width: 767.98px) {
  .sal-animate {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 100vh;
    text-align: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .hero-decoration {
    display: none;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card:hover {
    transform: translateY(-3px);
  }
  
  .price-card.featured {
    transform: scale(1.03);
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .price-card.featured {
    transform: scale(1.05);
  }
  
  .hero-decoration {
    display: block;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  section {
    padding: 6rem 0;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
}

/* XXL Devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  section {
    padding: 7rem 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-decoration {
    display: none !important;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .contact-form {
    border: 2px solid #000;
  }
  
  .btn-primary {
    border: 2px solid #000;
  }
}

/* Dark Mode Support */

.hero-section h1 {
    padding-top: 100px;
}