/* Responsive Styles */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .section-padding {
    padding: 100px 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 60vh;
    text-align: center;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .section-desc {
    margin-bottom: 2rem;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 50vh;
    padding: 1rem 0;
  }
  
  .section-padding {
    padding: 30px 0;
  }
  
  h1 {
    font-size: 1.25rem;
  }
  
  h2 {
    font-size: 1.1rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .section-title {
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .section-desc {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .faq-card,
  .about-feature,
  .process-step,
  .career-card,
  .core-info-card,
  .case-study-card {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .btn-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .process-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
}

/* Disable animations on mobile devices */
@media (max-width: 991.98px) {
  /* No animations when scrolling in mobile resolution */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .service-card:hover,
  .gallery-item:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .hero-decorative {
    animation: none;
  }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .faq-card,
  .contact-form {
    border: 2px solid #242424;
  }
  
  .btn-primary {
    border: 2px solid #4a4a4a;
  }
}

/* Print styles */
@media print {
  .hero-decorative,
  .gallery-grid,
  nav,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .section-padding {
    padding: 20px 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 20px 0;
  }
} 

.hero-section h1 {
    padding-top: 200px;
}