/* Mobile-first responsive design */

@media (max-width: 575.98px) {
  /* Typography adjustments */
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  /* Hero adjustments */
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-section::before {
    display: none; /* Remove decorative elements on mobile */
  }
  
  /* Section spacing */
  section {
    padding: 1.5rem 0;
  }
  
  /* Cards */
  .card {
    margin-bottom: 1rem;
  }
  
  /* Services */
  .service-card {
    padding: 1.5rem 1rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Process numbers */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  /* Price cards */
  .price-card.featured {
    transform: none; /* Remove transform on mobile */
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  /* Timeline */
  .timeline-item {
    padding-left: 2rem;
  }
  
  /* Footer */
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Remove hover effects on mobile */
  .card:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  /* Small tablets */
  .hero-section {
    min-height: 75vh;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* Medium tablets */
  .hero-section {
    min-height: 85vh;
  }
  
  section {
    padding: 3rem 0;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Large tablets / small desktops */
  .hero-section {
    min-height: 90vh;
  }
  
  section {
    padding: 3.5rem 0;
  }
}

/* No animations on mobile devices to respect performance */
@media (max-width: 767.98px) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #4d3480;
    --accent-color: #005b41;
    --neutral-dark: #000000;
    --neutral-light: #ffffff;
  }
  
  .card {
    border: 2px solid var(--neutral-dark);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .card {
    transition: none;
  }
  
  .gallery-item img {
    transition: none;
  }
  
  .form-control {
    transition: none;
  }
  
  .btn-primary {
    transition: none;
  }
}

/* Dark mode support */

/* Print styles */
@media print {
  .navbar,
  footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
} 

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