/* Mobile First Responsive Styles */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-shape {
    display: none;
  }
  
  #hero {
    min-height: 70vh;
    text-align: center;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .price-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Disable animations on mobile for performance */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .feature-card:hover,
  .service-card:hover,
  .team-card:hover,
  .case-card:hover,
  .gallery-item:hover {
    transform: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-shape {
    opacity: 0.5;
  }
  
  .hero-shape-1 {
    width: 120px;
    height: 120px;
  }
  
  .hero-shape-2 {
    width: 100px;
    height: 100px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
  
  .price-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  /* Full desktop experience with animations */
  .feature-card,
  .service-card,
  .team-card,
  .case-card {
    transition: transform 0.3s ease;
  }
}

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

/* Utility classes for responsive spacing */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .py-mobile-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .mb-mobile-3 {
    margin-bottom: 1.5rem !important;
  }
}

/* Responsive text alignment */
@media (max-width: 767.98px) {
  .text-md-start {
    text-align: center !important;
  }
  
  .text-md-end {
    text-align: center !important;
  }
} 

body {
    overflow-x: hidden;
}