/* ===== RESPONSIVE STYLES ===== */

/* Mobile First - Base styles for mobile devices */
@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.60rem;
  }
  
  .service-card,
  .team-member,
  .price-card {
    margin-bottom: 1.65rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.27rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.58rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.38rem;
  }
}

/* Tablet Portrait */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 2.58rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 992px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card img {
    height: 180px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Desktop */
@media (min-width: 993px) and (max-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .service-card img {
    height: 200px;
  }
}

/* Large Desktop */
@media (min-width: 1201px) {
  .container {
    max-width: 1200px;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .service-card img {
    height: 220px;
  }
  
  .gallery-item img {
    height: 280px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-shape-1 {
    width: 400px;
    height: 400px;
  }
  
  .hero-shape-2 {
    width: 300px;
    height: 300px;
  }
}

/* Print styles */
@media print {
  .hero-shape,
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .service-card,
  .team-member,
  .testimonial-card {
    box-shadow: none !important;
    border: 1px solid #e9e9e9 !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .service-card,
  .team-member,
  .contact-form {
    border: 2px solid var(--primary-navy);
  }
  
  .btn-primary {
    border: 2px solid var(--primary-navy);
  }
}

/* Dark mode preference */