/* =================================================================
   RESPONSIVE STYLES - MOBILE FIRST APPROACH
   NO ANIMATIONS ON MOBILE - NO CUSTOM BOOTSTRAP OVERRIDES
   ================================================================= */

/* Mobile First - Base Styles */
@media (max-width: 767.98px) {
  
  /* NO ANIMATIONS ON MOBILE */
  .service-card,
  .team-card,
  .price-card,
  .gallery-grid img,
  .btn-primary {
    transition: none !important;
    transform: none !important;
  }
  
  .service-card:hover,
  .team-card:hover,
  .price-card:hover,
  .gallery-grid img:hover,
  .btn-primary:hover {
    transform: none !important;
    box-shadow: inherit !important;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: 70vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  /* Typography Mobile */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Section Padding Mobile */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Service Cards Mobile */
  .service-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Team Cards Mobile */
  .team-card {
    margin-bottom: 1.5rem;
    padding: 1rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Price Cards Mobile */
  .price-card {
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Gallery Mobile */
  .gallery-grid img {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* FAQ Mobile */
  .faq-card {
    padding: 1rem;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  
  /* Hero Section Tablet */
  .hero-section {
    min-height: 80vh;
  }
  
  /* Section Padding Tablet */
  .section-padding {
    padding: 4rem 0;
  }
  
  /* Service Cards Tablet */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Team Cards Tablet */
  .team-card {
    margin-bottom: 2rem;
  }
  
  /* Price Cards Tablet */
  .price-card {
    margin-bottom: 2rem;
  }
  
  /* Gallery Tablet */
  .gallery-grid img {
    height: 220px;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  
  /* Hero Section Desktop */
  .hero-section {
    min-height: 100vh;
  }
  
  /* Gallery Desktop */
  .gallery-grid img {
    height: 250px;
  }
  
  /* Contact Form Desktop */
  .contact-form {
    padding: 3rem;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  
  /* Container Max Width */
  .container {
    max-width: 1140px;
  }
  
  /* Hero Section Large Desktop */
  .hero-section {
    padding: 0;
  }
  
  /* Gallery Large Desktop */
  .gallery-grid img {
    height: 280px;
  }
}

/* Extra Large Desktop Styles */
@media (min-width: 1400px) {
  
  /* Container Max Width */
  .container {
    max-width: 1320px;
  }
  
  /* Gallery Extra Large Desktop */
  .gallery-grid img {
    height: 300px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }
  
  body {
    color: black !important;
    background: white !important;
  }
  
  .service-card,
  .team-card,
  .price-card,
  .review-card,
  .faq-card,
  .contact-form {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .price-card,
  .review-card,
  .faq-card,
  .contact-form {
    border: 2px solid #000;
  }
  
  .form-control {
    border: 2px solid #000;
  }
}

/* Dark Mode Support */

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
} 

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