/* ================================
   RESPONSIVE STYLES
   Mobile First Approach - No Mobile Animations
   ================================ */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  /* Disable ALL animations on mobile */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Conservative mobile typography */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  /* Hero adjustments */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-section::before {
    display: none;
  }
  
  /* Section spacing */
  .section {
    padding: 2rem 0;
  }
  
  /* Card adjustments */
  .card-custom {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
  }
  
  .service-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
  
  /* Form adjustments */
  .contact-form {
    padding: 2rem 1rem;
  }
  
  /* Gallery grid */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Process steps */
  .process-number {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  /* Timeline */
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Utility classes for mobile */
  .mobile-center {
    text-align: center;
  }
  
  .mobile-stack {
    margin-bottom: 1rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* Print styles */
@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .navbar, .footer, .btn, .gallery-grid {
    display: none !important;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .card-custom {
    border: 1px solid #000;
    box-shadow: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000080;
    --secondary-color: #8B4513;
    --accent-color: #006400;
    --text-primary: #000000;
    --text-secondary: #333333;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
  }
  
  .card-custom {
    border-width: 2px;
  }
  
  .btn-primary-custom, .btn-secondary-custom {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before {
    display: none;
  }
}

/* Dark mode support */

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.navbar-toggler:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 6px;
} 

.hero-content {
    padding-top: 200px;
}