/* Mobile First Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-content {
    padding: 3rem 0;
    padding-top: 175px;
}
  
  h1 {
    font-size: 2.25rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-content {
    padding: 4rem 0;
    padding-top: 175px;
}
  
  h1 {
    font-size: 2.5rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-card {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-content {
    padding: 5rem 0;
    padding-top: 175px;
}
  
  h1 {
    font-size: 2.75rem;
  }
  
  .section-padding {
    padding: 6rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
}

/* Mobile Specific Styles */
@media (max-width: 767px) {
  /* Disable animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .feature-card:hover,
  .service-card:hover,
  .price-card:hover,
  .blog-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  /* Mobile Typography */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Mobile Spacing */
  .section-padding {
    padding: 3rem 0;
  }
  
  #hero {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-content {
    padding: 1rem 0;
    text-align: center;
    padding-top: 175px;
}
  
  /* Mobile Cards */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Mobile Gallery */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  /* Mobile Team Photos */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Mobile Process Steps */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Mobile Timeline */
  .timeline-item::before {
    display: none;
  }
  
  /* Mobile Footer */
  #footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
}

/* Tablet Portrait */
@media (max-width: 991px) and (min-width: 768px) {
  .hero-content {
    text-align: center;
    padding: 3rem 0;
    padding-top: 175px;
}
  
  .service-card,
  .price-card {
    margin-bottom: 2rem;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery-image,
  .service-image,
  .blog-image,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .decorative-shape {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    overflow-x: hidden;
}
  
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
} 