/* ========================================
   Responsive Styles - Mobile First
   No animations on mobile resolution
======================================== */

/* Mobile First Approach */
@media (max-width: 576px) {
  /* Disable all animations on mobile */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Hero section adjustments */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-decorative {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.25rem; }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  /* Card spacing */
  .service-card,
  .team-card,
  .faq-card {
    margin-bottom: 1.5rem;
  }
  
  /* Button sizing */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  
  /* Section padding */
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .section-padding-lg {
    padding: 3rem 0;
  }
  
  /* Form adjustments */
  .form-control {
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  /* Team images */
  .team-image {
    width: 100px;
    height: 100px;
  }
  
  /* Gallery grid adjustments */
  .gallery-item {
    margin-bottom: 1rem;
  }
}

/* Small tablets */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-decorative {
    width: 150px;
    height: 150px;
  }
  
  .hero-decorative::after {
    width: 100px;
    height: 100px;
  }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 992px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-decorative {
    width: 180px;
    height: 180px;
  }
  
  .hero-decorative::after {
    width: 120px;
    height: 120px;
  }
}

/* Large screens */
@media (min-width: 993px) {
  .hero-section {
    min-height: 100vh;
  }
  
  /* Enable hover effects only on larger screens */
  .service-card:hover {
    transform: translateY(-8px);
  }
  
  .team-card:hover {
    transform: translateY(-5px);
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
  }
}

/* Extra large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .section-padding-lg {
    padding: 8rem 0;
  }
}

/* Ultra wide screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Print styles */
@media print {
  .hero-decorative,
  .navbar,
  .footer {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    background: white !important;
    color: black !important;
  }
  
  .service-card,
  .team-card,
  .faq-card {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }
} 

.hero-section h1 {
    padding-top: 175px;
}
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
