/* ===== RESPONSIVE STYLES ===== */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .service-card {
    height: 100%;
  }
  
  .team-card {
    height: 100%;
  }
  
  .review-card {
    height: 100%;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 2rem 0;
    text-align: center;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  h1 { font-size: 1.83rem; }
  h2 { font-size: 1.63rem; }
  h3 { font-size: 1.52rem; }
  
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .service-card,
  .team-card,
  .review-card {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
    padding: 1rem 0;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .hero-content h1 {
    font-size: 1.62rem;
    margin-bottom: 1.01rem;
    margin-top: 3rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.67rem;
  }
  
  .feature-card,
  .service-card,
  .team-card,
  .review-card,
  .price-card {
    margin-bottom: 1.61rem;
  }
  
  .service-image {
    height: 150px;
  }
  
  .team-image {
    width: 100px;
    height: 100px;
  }
  
  .process-step {
    padding: 1.5rem 0.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.26rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .section-title {
    margin-top: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 70vh;
    padding: 0.5rem 0;
  }
  
  .section-padding {
    padding: 30px 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
  
  .hero-content h1 {
    font-size: 1.55rem;
    margin-top: 5rem;
  }
  
  h2 { font-size: 1.51rem; }
  h3 { font-size: 1.31rem; }
  h4 { font-size: 1.17rem; }
  
  .navbar-brand {
    font-size: 10px !important;
    font-size: 1rem;
  }
  
  .feature-card,
  .service-card,
  .team-card,
  .review-card,
  .price-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-content {
    padding: 1rem;
  }
  
  .service-image {
    height: 120px;
  }
  
  .team-image {
    width: 80px;
    height: 80px;
  }
  
  .process-step {
    padding: 1rem 0.5rem;
  }
  
  .process-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .gallery-placeholder {
    height: 200px;
    font-size: 1rem;
  }
  
  .faq-card {
    padding: 1rem;
  }
  
  .btn-primary-custom {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  
  .price-card-price span {
    font-size: 2rem;
  }
  
  .team-section .row {
    justify-content: center;
  }
  
  .team-section .col-lg-2 {
    flex: 0 0 auto;
    width: 50%;
    max-width: 200px;
    margin-bottom: 1rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  .hero-section,
  .section-padding {
    padding: 20px 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .service-card,
  .team-card,
  .review-card {
    break-inside: avoid;
    margin-bottom: 15px;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --text-dark: #000000;
    --text-muted: #423e3e;
  }
  
  .btn-primary-custom,
  .navbar {
    border: 2px solid var(--text-dark);
  }
  
  .feature-card,
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .faq-card {
    border: 1px solid var(--text-dark);
  }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-sage);
  outline-offset: 2px;
}

/* Ensure minimum touch target size */
@media (max-width: 767.98px) {
  .btn,
  .nav-link {
    font-size: 10px !important;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .navbar-toggler {
    min-height: 44px;
    min-width: 44px;
  }
} 