/* === RESPONSIVE STYLES === */
/* Tablet and mobile responsive adjustments */

/* Large tablets */
@media (max-width: 991.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .decorative-blob {
    display: none;
  }
}

/* Tablets */
@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Mobile phones */
@media (max-width: 575.98px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 30px 0;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 1rem 0;
  }
  
  .service-card,
  .team-card,
  .price-card {
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .footer-section {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
  
  .process-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  .price-amount {
    font-size: 1.5rem;
  }
  
  .gallery-item img {
    height: 150px;
  }
} 

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