/* Mobile First Responsive Design */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 90vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .service-card,
  .team-card,
  .review-card {
    margin-bottom: 20px;
  }
  
  .contact-form,
  .contact-info {
    padding: 2rem;
    margin-bottom: 20px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .process-step {
    padding: 1rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* No animations on mobile */
  .service-card:hover,
  .btn-primary-custom:hover,
  .gallery-item img:hover {
    transform: none;
  }
  
  .service-card,
  .btn-primary-custom,
  .gallery-item img {
    transition: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .contact-form,
  .contact-info {
    padding: 2.5rem;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .service-card {
    height: 100%;
    min-height: 300px;
  }
  
  .gallery-item img {
    height: 240px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .service-card {
    min-height: 320px;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-decorative {
    width: 300px;
    height: 300px;
  }
  
  .hero-decorative::before {
    width: 200px;
    height: 200px;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    padding: 20px 0;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-card,
  .team-card,
  .review-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .contact-form {
    display: none;
  }
  
  .section-padding {
    padding: 20px 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    overflow-x: hidden;
}
} 

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