/* Responsive Styles for AI Lead Scoring Template */

/* Mobile First Approach */
@media (max-width: 575.98px) {
  /* Extra small devices */
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  /* Small devices */
  .hero-section {
    min-height: 80vh;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* Medium devices */
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Large devices */
  .hero-section {
    min-height: 95vh;
  }
}

@media (min-width: 1200px) {
  /* Extra large devices */
  .hero-section {
    min-height: 100vh;
  }
}

/* Disable animations on mobile when prefers-reduced-motion */
@media (max-width: 768px) {
  .service-card {
    transition: none;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  /* Disable scroll animations on mobile */
  [data-sal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer-section {
    display: none !important;
  }
  
  body {
    color: black !important;
    background: white !important;
    overflow-x: hidden;
}
  
  .service-card,
  .testimonial-card,
  .faq-card {
    border: 1px solid #ccc !important;
    break-inside: avoid;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card {
    border: 2px solid #000;
  }
  
  .testimonial-card {
    border-left: 6px solid #000;
  }
  
  .form-control {
    border: 2px solid #000;
  }
} 

.hero-section h1 {
    padding-top: 150px;
}