/* ===== RESPONSIVE STYLES - MOBILE FIRST ===== */
/* NO SCROLL ANIMATIONS ON MOBILE RESOLUTION */

/* Mobile First - Small devices (576px and down) */
@media (max-width: 575.98px) {
  /* Disable scroll animations on mobile */
  [data-sal],
  [data-scroll-reveal],
  .scroll-animation {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
  }
  
  /* Conservative Typography for Mobile */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-decorative-shape {
    display: none; /* Hide decorative shapes on mobile */
  }
  
  /* Section Padding Mobile */
  .section-padding {
    padding: 2rem 0;
  }
  
  .section-padding-lg {
    padding: 3rem 0;
  }
  
  /* Cards Mobile */
  .service-card,
  .team-card,
  .price-card,
  .review-card {
    margin-bottom: 2rem;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 2rem 1rem;
    margin: 1rem 0;
  }
  
  /* Gallery Mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Process Steps Mobile */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Team Images Mobile */
  .team-card img {
    height: 200px;
  }
  
  /* Service Images Mobile */
  .service-card img {
    height: 180px;
  }
}

/* Small devices (576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-padding-lg {
    padding: 4rem 0;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card img,
  .team-card img {
    height: 220px;
  }
  
  .gallery-item img {
    height: 230px;
  }
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
  /* Full desktop experience */
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-decorative-shape {
    display: block;
  }
  
  /* Larger cards on desktop */
  .service-card img {
    height: 200px;
  }
  
  .team-card img {
    height: 250px;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  /* Better spacing on desktop */
  .section-padding {
    padding: 4rem 0;
  }
  
  .section-padding-lg {
    padding: 6rem 0;
  }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  /* Enhanced desktop experience */
  .contact-form {
    padding: 3rem;
  }
  
  .hero-decorative-shape {
    display: block;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
  .hero-section {
    min-height: 60vh;
  }
  
  .section-padding {
    padding: 1.5rem 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Optimize for retina displays */
  .service-card,
  .team-card,
  .price-card {
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  }
}

/* Print Styles */
@media print {
  .hero-decorative-shape,
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    color: black;
  }
}

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

/* Dark Mode Support */

.hero-content {
    padding-top: 275px;
}