/* Responsive Styles */

/* Large screens */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.02rem;
  }
  
  .container-xxl {
    max-width: 1400px;
  }
}

/* Medium screens */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.14rem;
  }
  
  .hero-subtitle {
    font-size: 1.23rem;
  }
  
  .navbar-brand {
    font-size: 1.27rem !important;
  }
  
  .service-card {
    margin-bottom: 2.22rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Tablet screens */
@media (max-width: 767.98px) {
  h1 {
    font-size: 1.95rem;
  }
  
  h2 {
    font-size: 1.61rem;
  }
  
  .hero-section {
  padding-top: 50px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.95rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .process-step {
    margin-bottom: 2.22rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper-slide {
    opacity: 1 !important;
    transform: none !important;
  }
  
  .swiper-pagination {
    position: static !important;
    margin-top: 1.07rem;
  }
}

/* Mobile screens */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.23rem !important;
  }
  
  .hero-title {
    font-size: 1.69rem;
  }
  
  .hero-subtitle {
    font-size: 0.94rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
  }
  
  .price-value {
    font-size: 2.14rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
  
  .process-number {
    width: 30px;
    height: 30px;
    font-size: 0.94rem;
  }
  
  /* Stack columns on very small screens */
  .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
  
  /* Ensure proper mobile touch targets */
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .navbar-toggler {
    padding: 0.5rem;
    border: none;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.94rem;
  }
  
  .faq-answer {
    padding: 1rem;
    font-size: 0.94rem;
  }
}

/* Extra small screens */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.54rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .price-value {
    font-size: 1.95rem;
  }
  
  .section-title h2 {
    font-size: 1.35rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero-section,
  footer,
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black !important;
    page-break-after: avoid;
  }
  
  section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  .service-card,
  .review-card,
  .price-card {
    border: 1px solid #dadada !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .review-card,
  .price-card,
  .contact-form {
    border: 2px solid var(--dark-green);
  }
  
  .btn-primary {
    border: 2px solid var(--dark-green);
  }
  
  .navbar {
    border-bottom: 2px solid var(--soft-cream);
  }
} 