/* Mobile First Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  /* Remove animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  #hero .container {
    padding: 2rem 1rem;
  }
  
  .service-card,
  .price-card,
  .review-card,
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  #hero {
    min-height: 90vh;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 140px;
    height: 140px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-card:hover,
  .price-card:hover {
    transform: translateY(-3px);
  }
  
  .gallery-item img {
    height: 240px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 1140px;
  }
  
  .service-card,
  .price-card,
  .review-card {
    height: auto;
  }
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}

/* Hero Section Responsive */
@media (max-width: 767.98px) {
  #hero .row {
    flex-direction: column-reverse;
  }
  
  #hero .col-md-6:first-child {
    margin-top: 2rem;
  }
}

/* Services Grid Responsive */
@media (max-width: 575.98px) {
  #services .row .col-md-4 {
    margin-bottom: 1rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  #services .row .col-md-4:nth-child(odd) {
    margin-bottom: 2rem;
  }
}

/* Price Plans Responsive */
@media (max-width: 767.98px) {
  .price-card {
    margin-bottom: 2rem;
  }
}

/* Team Section Responsive */
@media (max-width: 575.98px) {
  .team-member {
    margin-bottom: 2rem;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .team-member {
    margin-bottom: 1.5rem;
  }
}

/* Contact Form Responsive */
@media (max-width: 767.98px) {
  .contact-form .row .col-md-6 {
    margin-bottom: 1rem;
  }
}

/* Gallery Responsive */
@media (max-width: 575.98px) {
  .gallery-item {
    margin-bottom: 1rem;
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  #footer .row .col-md-3 {
    margin-bottom: 2rem;
    text-align: center;
  }
}

/* FAQ Responsive */
@media (max-width: 575.98px) {
  .faq-card {
    padding: 1.5rem;
  }
}

/* Blog Grid Responsive */
@media (max-width: 767.98px) {
  .blog-card {
    margin-bottom: 2rem;
  }
}

/* Process Steps Responsive */
@media (max-width: 575.98px) {
  .process-step {
    margin-bottom: 2rem;
  }
}

/* Utility Classes for Mobile */
@media (max-width: 575.98px) {
  .text-md-start {
    text-align: center !important;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .btn:last-child {
    margin-bottom: 0;
  }
} 

body {
    overflow-x: hidden;
}