/* ===== RESPONSIVE DESIGN ===== */
/* Mobile First Approach */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Hero Section */
  #hero h1 {
    font-size: 1.8rem;
  }
  
  #hero p {
    font-size: 0.9rem;
  }
  
  /* Services */
  .service-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .service-price {
    font-size: 1.3rem;
  }
  
  /* Team */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 200px;
  }
  
  /* FAQ */
  .faq-card {
    padding: 1.5rem;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Hero Section */
  #hero h1 {
    font-size: 2rem;
  }
  
  /* Services */
  .service-card {
    padding: 1.8rem;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 220px;
  }
  
  /* Team */
  .team-photo {
    width: 130px;
    height: 130px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Hero Section */
  #hero h1 {
    font-size: 2.1rem;
  }
  
  /* Services */
  .service-card {
    padding: 1.9rem;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 240px;
  }
  
  /* Team */
  .team-photo {
    width: 140px;
    height: 140px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Hero Section */
  #hero h1 {
    font-size: 2.2rem;
  }
  
  /* Services */
  .service-card {
    padding: 2rem;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 250px;
  }
  
  /* Team */
  .team-photo {
    width: 150px;
    height: 150px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Hero Section */
  #hero h1 {
    font-size: 2.3rem;
  }
  
  /* Services */
  .service-card {
    padding: 2.2rem;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 260px;
  }
  
  /* Team */
  .team-photo {
    width: 160px;
    height: 160px;
  }
}

/* ===== NAVIGATION RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    margin: 0;
  }
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 767.98px) {
  #hero {
    min-height: 80vh;
  }
  
  #hero .hero-content {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 250px;
}
  
  #hero .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* ===== SECTIONS RESPONSIVE ===== */
@media (max-width: 767.98px) {
  #services,
  #testimonials,
  #gallery,
  #faq,
  #team,
  #contact {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 767.98px) {
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer-link {
    display: block;
    margin: 0.5rem 0;
  }
}

/* ===== FORM RESPONSIVE ===== */
@media (max-width: 575.98px) {
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* ===== BREADCRUMB RESPONSIVE ===== */
@media (max-width: 575.98px) {
  .breadcrumb {
    padding: 0.5rem 0;
  }
  
  .breadcrumb-item img {
    height: 16px;
    width: 16px;
  }
}

/* ===== UTILITIES RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .mb-4 {
    margin-bottom: 1.5rem;
  }
  
  .mb-5 {
    margin-bottom: 2rem;
  }
  
  .py-5 {
    padding: 2rem 0;
  }
}

/* ===== CONTAINER RESPONSIVE ===== */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ===== ANIMATION RESPONSIVE ===== */
@media (max-width: 767.98px) {
  @media (prefers-reduced-motion: no-preference) {
    .fade-in {
      transform: translateY(10px);
    }
  }
}

/* ===== ACCESSIBILITY ===== */
@media (max-width: 991.98px) {
  .navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(168, 230, 207, 0.25);
  }
} 