/* Mobile-First Responsive Design */

/* Mobile Base (up to 576px) */
@media (max-width: 575.98px) {
  /* No animations on mobile per requirements */
  .sal-animate {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  /* Typography adjustments for mobile */
  :root {
    --font-size-h1: 1.875rem;
    --font-size-h2: 1.5rem;
    --font-size-h3: 1.25rem;
    --section-padding: 2rem 0;
  }
  
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  /* Hero section mobile adjustments */
  .hero-section {
    min-height: 70vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-section::before {
    display: none;
  }
  
  /* Section spacing */
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-desc {
    margin-bottom: 2rem;
  }
  
  /* Cards mobile layout */
  .service-card,
  .team-card,
  .review-card,
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .price-featured {
    transform: none;
    margin-top: 1rem;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 1.5rem;
  }
}

/* Small tablets (576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .service-card,
  .team-card,
  .review-card {
    margin-bottom: 1.5rem;
  }
}

/* Medium tablets (768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .price-featured {
    transform: scale(1.02);
  }
}

/* Large tablets and small desktops (992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .price-featured {
    transform: scale(1.03);
  }
}

/* Large desktops (1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: var(--section-padding);
  }
  
  .container {
    max-width: 1200px;
  }
}

/* Extra large screens (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .section-desc {
    max-width: 700px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-section::before {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    background: white !important;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .faq-card,
  .contact-form {
    border: 2px solid #000000;
  }
  
  .btn-primary {
    border: 2px solid #000000;
  }
}

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