/* Responsive Styles - Mobile First Approach */

/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .section-desc {
    font-size: 1rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .service-card .card-body,
  .contact-form {
    padding: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .process-step {
    padding: 1rem 0.5rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  /* No animations on mobile */
  .service-card:hover, 
  .feature-card:hover, 
  .price-card:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* Small Devices (Landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .service-card .card-body {
    padding: 1.75rem;
  }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: 5rem 0;
  }
}

/* Extra Large Devices (Large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .section-title {
    font-size: 2.75rem;
  }
  
  .section-subtitle {
    font-size: 1.375rem;
  }
}

/* Ultra Large Devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .hero-section::before {
    display: none;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .blog-card {
    box-shadow: none;
    border: 1px solid #f5f5f5;
  }
} 

.hero-content {
    padding-top: 250px;
}