/* Responsive Styles */

/* Large Devices (Desktops) */
@media (max-width: 1199.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .shape-blob-1 {
    width: 300px;
    height: 300px;
  }
  
  .shape-blob-2 {
    width: 250px;
    height: 250px;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
  section {
    padding: 3.5rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .team-member {
    margin-bottom: 1.5rem;
  }
  
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .shape-blob-1 {
    width: 250px;
    height: 250px;
  }
  
  .shape-blob-2 {
    width: 200px;
    height: 200px;
  }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767.98px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  section.hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content img {
    margin-top: 2rem;
  }
  
  .about-feature {
    margin-bottom: 1rem;
  }
  
  .service-item {
    margin-bottom: 1.5rem;
  }
  
  .feature-item {
    margin-bottom: 1.5rem;
  }
  
  .core-info-item {
    margin-bottom: 1rem;
  }
  
  .contact-form {
    margin-top: 2rem;
  }
  
  footer {
    text-align: center;
  }
  
  footer .col-md-4:not(:last-child) {
    margin-bottom: 2rem;
  }
  
  /* Disable animations on mobile for better performance and respect prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .shape-blob {
      animation: none;
    }
    
    .about-feature:hover,
    .service-item:hover,
    .price-card:hover,
    .blog-item:hover,
    .core-info-item:hover {
      transform: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .team-member:hover img,
    .gallery-item:hover img {
      transform: none;
    }
    
    .feature-item:hover .feature-icon {
      transform: none;
    }
  }
  
  .shape-blob-1, .shape-blob-2 {
    display: none;
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
}

/* Height-based Media Queries */
@media (max-height: 700px) {
  section.hero {
    min-height: auto;
    padding: 5rem 0;
  }
} 