/* Responsive Styles */

/* Tablets */
@media screen and (max-width: 992px) {
  :root {
    font-size: 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.3rem;
  }
  
  .services-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
  :root {
    font-size: 14px;
  }
  
  .container {
    width: 95%;
    padding: var(--space-lg) 0;
  }
  
  section {
    padding: var(--space-xl) 0;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .services-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .mission p {
    font-size: 1.1rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .contact-details p {
    font-size: 1rem;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
  .hero {
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .status-box {
    padding: var(--space-lg);
  }
  
  .service-card,
  .value-box {
    padding: var(--space-md);
  }
}

/* Print Styles */
@media print {
  .hero {
    height: auto;
    min-height: auto;
    color: black;
  }
  
  .hero-overlay {
    background-color: transparent;
  }
  
  section {
    padding: 1cm 0;
    page-break-inside: avoid;
  }
  
  .service-card,
  .value-box {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  footer {
    background-color: white;
    color: black;
  }
  
  .contact-icon {
    display: none;
  }
}