/* Mobile First Responsive Design */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  #hero {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .service-card,
  .feature-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  /* No animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .feature-card:hover,
  .service-card:hover,
  .team-card:hover,
  .blog-card:hover,
  .gallery-item:hover {
    transform: none !important;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  #hero {
    min-height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .gallery-image {
    height: 220px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #hero {
    min-height: 90vh;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  section {
    padding: 70px 0;
  }
  
  .gallery-image {
    height: 240px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .price-card.featured {
    transform: scale(1.05);
  }
  
  .gallery-image {
    height: 250px;
  }
}

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

/* Print Styles */
@media print {
  .navbar,
  #footer,
  .btn {
    display: none !important;
  }
  
  body {
    color: black !important;
    background: white !important;
    overflow-x: hidden;
}
  
  section {
    page-break-inside: avoid;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-purple: #4C1D95;
    --primary-blue: #1E3A8A;
    --primary-teal: #134E4A;
    --primary-orange: #92400E;
    --primary-pink: #9D174D;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .blog-card,
  .faq-card,
  .info-card {
    border: 2px solid #000;
  }
} 