/* Responsive Design - Mobile First Approach */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.11rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.79rem;
  }
  
  h3 {
    font-size: 1.54rem;
  }
  
  .hero {
    min-height: 90vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .service-card,
  .team-member,
  .review-card {
    margin-bottom: 2rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  .price-card.featured {
    margin-bottom: 2rem;
  }
  
  .process-step {
    padding: 1.5rem 0.5rem;
  }
  
  .timeline-item {
    padding: 1rem;
  }
  
  .blog-card {
    margin-bottom: 2rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero {
    min-height: 95vh;
  }
  
  .hero-title {
    font-size: 2.31rem;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .service-card,
  .team-member {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero {
    text-align: left;
  }
  
  .hero-title {
    font-size: 2.54rem;
  }
  
  .section {
    padding: 75px 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .review-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero {
    min-height: 100vh;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .service-card,
  .team-member,
  .review-card {
    margin-bottom: 0;
  }
  
  .price-card.featured {
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero {
    min-height: 100vh;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .container {
    max-width: 1200px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .price-card.featured {
  }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image img,
  .service-card img,
  .team-member img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  .hero,
  .section {
    break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}

/* Global animation disable - applies to all elements always */
*, *::before, *::after {
  animation-duration: 0s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

/* Dark Mode Support */

.hero-content {
    padding-top: 175px;
}