/* GLOBAL ANIMATION DISABLE - ADDED TO DISABLE ALL ANIMATIONS */
*, *::before, *::after {
  animation: none !important;
  animation-duration: 0ms !important;
  animation-iteration-count: 1 !important;
  transition: none !important;
  transition-duration: 0ms !important;
  transform: none !important;
  scroll-behavior: auto !important;
}

/* Disable all hover effects */
*:hover {
  transform: none !important;
}

/* Responsive Design - Mobile First Approach */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.38rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.84rem;
  }
  
  h3 {
    font-size: 1.35rem;
  }
  
  .hero {
    text-align: center;
    padding: 2rem 0;
    min-height: auto;
  }
  
  .hero-content {
    margin-bottom: 2rem;
    padding-top: 2rem;
}
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card,
  .about-feature,
  .feature-item,
  .price-card,
  .team-member {
    margin-bottom: 1.60rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .price-value {
    font-size: 2.60rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.27rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero {
    text-align: center;
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto 2rem;
  }
  
  .about-feature,
  .feature-item {
    max-width: 350px;
    margin: 0 auto 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content {
    margin-bottom: 2rem;
    padding-top: 2rem;
}
  
  .navbar-nav .nav-link {
    margin: 0 0.25rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-image img {
    max-width: 100%;
    height: auto;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .about-feature:hover {
    transform: translateY(-5px);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero {
    padding: 0 2rem;
  }
  
  .section {
    padding: 6rem 0;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero::before {
    opacity: 0.05;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
}

/* Accessibility improvements */
@media (prefers-contrast: high) {
  :root {
    --primary-green: #3a5c14;
    --primary-blue: #133977;
    --primary-orange: #a94806;
    --primary-purple: #4c2580;
    --primary-teal: #1e624d;
  }
  
  .btn-primary {
    border: 2px solid var(--dark-green);
  }
  
  .service-card,
  .about-feature,
  .feature-item {
    border: 1px solid var(--gray);
  }
} 