/* Responsive Styles - Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  /* Section padding */
  .section {
    padding: 2rem 0;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  /* Card adjustments */
  .card-body {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  /* Gallery adjustments */
  .gallery-item img {
    height: 200px;
  }
  
  /* Blog cards */
  .blog-card img {
    height: 180px;
  }
  
  /* Navbar adjustments */
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2.75rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 3.5rem;
  }
  
  .hero-section p {
    font-size: 1.3rem;
  }
  
  .section-title h2 {
    font-size: 2.75rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-max-width);
  }
  
  .hero-section {
    padding: 6rem 0;
  }
  
  .section {
    padding: 5rem 0;
  }
}

/* Utility responsive classes */
.mobile-hidden {
  display: block;
}

@media (max-width: 767.98px) {
  .mobile-hidden {
    display: none;
  }
}

.mobile-only {
  display: none;
}

@media (max-width: 767.98px) {
  .mobile-only {
    display: block;
  }
}

/* Responsive image handling */
@media (max-width: 767.98px) {
  .img-placeholder {
    min-height: 150px;
    font-size: 0.875rem;
  }
}

/* Contact form responsive */
@media (max-width: 575.98px) {
  .contact-form .row {
    margin: 0;
  }
  
  .contact-form .col-md-6 {
    padding: 0 0 1rem 0;
  }
}

/* Service cards responsive grid */
@media (max-width: 767.98px) {
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .service-card i {
    font-size: 2.5rem;
  }
}

/* Review cards mobile stacking */
@media (max-width: 991.98px) {
  .review-card {
    margin-bottom: 1rem;
  }
}

/* FAQ responsive */
@media (max-width: 575.98px) {
  .faq-card {
    margin-bottom: 1rem;
  }
  
  .faq-card .card-body {
    padding: 1rem;
  }
}

/* Team section responsive */
@media (max-width: 575.98px) {
  .team-member {
    margin-bottom: 1.5rem;
  }
}

/* Blog responsive */
@media (max-width: 767.98px) {
  .blog-card {
    margin-bottom: 1.5rem;
  }
} 

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