/* Responsive CSS - Mobile Optimizations */

/* Mobile First Approach */
@media (max-width: 576px) {
  /* No animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  /* Hero section mobile */
  #hero {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  /* Services grid mobile */
  #services .col-md-4 {
    margin-bottom: 2rem;
  }
  
  /* Team cards mobile */
  .team-card {
    margin-bottom: 2rem;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  /* Footer mobile */
  #footer .footer-section {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  /* Process steps mobile */
  .process-step {
    margin-bottom: 2rem;
  }
}

/* Tablet Styles */
@media (min-width: 577px) and (max-width: 768px) {
  /* Services grid tablet */
  #services .col-md-4 {
    margin-bottom: 1.5rem;
  }
  
  /* Gallery tablet */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Team grid tablet */
  .team-card {
    margin-bottom: 1.5rem;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  /* Hero section desktop */
  #hero .container {
    position: relative;
  }
  
  /* Services hover effects */
  #services .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  /* Gallery hover effects */
  .gallery-item:hover img {
    transform: scale(1.1);
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  /* Section padding adjustments */
  .section-padding {
    padding: 5rem 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  #footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    overflow-x: hidden;
}
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
} 

.hero-content {
    padding-top: 225px;
}