/* Mobile First Responsive Design */

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Conservative font sizes for mobile */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem !important;
  }
  
  /* Hero section mobile adjustments */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-shape-1,
  .hero-shape-2 {
    display: none;
  }
  
  /* Section padding adjustments */
  .section-padding {
    padding: 2rem 0;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Service cards mobile */
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  /* Team cards mobile */
  .team-card img {
    height: 200px;
  }
  
  /* Process steps mobile */
  .process-step {
    padding: 1rem 0.5rem;
  }
  
  /* Timeline mobile */
  .timeline-item {
    padding-left: 2rem;
  }
  
  .timeline-marker {
    width: 15px;
    height: 15px;
  }
  
  /* Gallery mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Footer mobile */
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  /* No animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 1.625rem;
  }
  
  h2 {
    font-size: 1.4375rem;
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .team-card img {
    height: 220px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .hero-shape-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
  }
  
  .hero-shape-2 {
    width: 120px;
    height: 120px;
    bottom: -20px;
    left: -20px;
  }
  
  .team-card img {
    height: 230px;
  }
  
  .gallery-item img {
    height: 230px;
  }
  
  .timeline-item {
    padding-left: 2.5rem;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .team-card img {
    height: 240px;
  }
  
  .gallery-item img {
    height: 240px;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-shape-1 {
    width: 250px;
    height: 250px;
    top: -60px;
    right: -60px;
  }
  
  .hero-shape-2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -40px;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .contact-form {
    padding: 4rem;
  }
  
  .team-card img {
    height: 260px;
  }
  
  .gallery-item img {
    height: 260px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .hero-shape,
  .btn,
  .breadcrumb {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    background: white !important;
  }
  
  body {
    color: black !important;
    background: white !important;
  }
  
  .service-card,
  .team-card,
  .review-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .team-card:hover,
  .btn-primary:hover,
  .gallery-item:hover img {
    transform: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .review-card,
  .contact-form {
    border: 2px solid currentColor !important;
  }
  
  .hero-shape {
    display: none;
  }
}

/* Dark Mode Support */

.hero-text {
    padding-top: 250px;
}