/* Responsive Design - Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-decorative {
    width: 250px;
    height: 250px;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .team-photo {
    height: 350px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-decorative {
    width: 300px;
    height: 300px;
  }
  
  .section-padding {
    padding: 100px 0;
  }
  
  .team-photo {
    height: 400px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-decorative {
    width: 350px;
    height: 350px;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Mobile specific styles */
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-card {
    margin-bottom: 2rem;
  }
  
  .review-card {
    margin-bottom: 2rem;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-image {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  .faq-card {
    padding: 1.5rem;
  }
}

/* Tablet landscape adjustments */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero-section {
    min-height: 70vh;
  }
  
  .section-padding {
    padding: 70px 0;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero-decorative,
  .btn,
  footer {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    background: white !important;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .faq-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
} 

.hero-content {
    padding-top: 100px;
}
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
