/* Responsive CSS - Mobile First Approach */

/* Mobile First Base Styles Already in main.css */

/* Tablet Styles */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
  
  .navbar-nav .nav-link {
  font-size: 10px !important;
    margin: 0 1rem;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .service-card {
    padding: 2.5rem;
  }
  
  .team-photo {
    width: 220px;
    height: 220px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Mobile Specific Styles */
@media (max-width: 767.98px) {
  /* Disable animations on mobile as specified */
  .swiper {
    --swiper-navigation-size: 24px;
  }
  
  .swiper-slide {
    padding: 1rem;
  }
  
  /* Mobile hero adjustments */
  .hero-section {
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  /* Mobile service cards */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Mobile team photos */
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  /* Mobile navigation */
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  /* Mobile forms */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Mobile gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Mobile FAQ */
  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  /* Mobile footer */
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  /* Mobile additional sections */
  .additional-section {
    padding: 3rem 0;
  }
  
  .additional-item {
    padding: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .form-control {
    padding: 0.75rem;
  }
  
  .btn-submit {
    padding: 0.75rem 1.5rem;
  }
}
