/* Mobile First Responsive Styles */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-shape-1, .hero-shape-2 {
    display: none;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    padding: 1.5rem;
    margin-top: 1rem;
  }
  
  .team-img {
    width: 100px;
    height: 100px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Disable animations on mobile */
  .service-card:hover, .feature-card:hover, .price-card:hover {
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .contact-info {
    margin-top: 1rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .contact-form {
    margin-bottom: 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-content {
    align-items: center;
    padding-top: 200px;
}
  
  .contact-info {
    height: 100%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Print Styles */
@media print {
  .navbar, .footer, .contact-form {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    background: white;
    color: black;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .hero-section {
    background: var(--primary-dark);
  }
  
  .service-card, .feature-card, .price-card, .team-card, .review-card, .case-card, .process-card, .timeline-card, .career-card, .core-card {
    border: 2px solid var(--text-dark);
  }
  
  .contact-form {
    border: 2px solid var(--text-dark);
  }
} 