/* Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.8rem;
    padding-top: 250px;
}
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .decorative-shape {
    display: none;
  }
  
  .process-step {
    padding: 1.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .blog-post img {
    height: 150px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
  
  .faq-card {
    padding: 1rem;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  .core-info-item {
    padding: 1rem;
  }
  
  .career-item {
    padding: 1rem;
  }
  
  .case-study-item {
    padding: 1rem;
  }
  
  .price-card {
    padding: 1.5rem;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2.2rem;
    padding-top: 250px;
}
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .blog-post img {
    height: 180px;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
  
  .price-value {
    font-size: 2.2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 2.3rem;
    padding-top: 250px;
}
  
  .gallery-item img {
    height: 240px;
  }
  
  .blog-post img {
    height: 190px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .gallery-item img {
    height: 260px;
  }
  
  .blog-post img {
    height: 220px;
  }
}

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

/* Mobile specific adjustments for accessibility */
@media (max-width: 767.98px) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-link {
    padding: 0.75rem 1rem;
  }
  
  .form-control {
    min-height: 44px;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .col-6 {
    margin-bottom: 1rem;
  }
  
  .text-center-mobile {
    text-align: center;
  }
  
  .mb-mobile-3 {
    margin-bottom: 1rem;
  }
  
  .px-mobile-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .custom-card:hover,
  .service-card:hover,
  .blog-post:hover,
  .price-card:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .custom-card,
  .service-card,
  .faq-card,
  .review-card,
  .price-card,
  .blog-post {
    border: 2px solid #000;
  }
  
  .btn-primary {
    border: 2px solid #000;
  }
  
  .form-control {
    border: 2px solid #000;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .form-control,
  .decorative-shape {
    display: none;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .custom-card,
  .service-card,
  .price-card {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .hero-section {
    background: none;
    color: #000;
    min-height: auto;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
} 