/* Responsive Styles for SOC 2 SaaS Template */

/* Mobile First - Base styles for mobile devices */
@media (max-width: 767.98px) {
  /* NO ANIMATIONS ON MOBILE - Critical requirement */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Section Padding Mobile */
  .section-padding,
  .services-section,
  .features-section,
  .team-section,
  .reviews-section,
  .faq-section,
  .contact-section,
  .priceplan-section,
  .casestudy-section,
  .process-section,
  .blog-section,
  .about-section,
  .gallery-section {
    padding: 3rem 0;
  }
  
  /* Service Cards Mobile */
  .service-card,
  .team-member-card,
  .review-card,
  .casestudy-card,
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .service-card:hover,
  .team-member-card:hover,
  .casestudy-card:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Footer Mobile */
  .footer-section {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Price Cards Mobile */
  .price-card {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  /* Gallery Mobile */
  .gallery-image {
    height: 200px;
  }
  
  /* Team Photo Mobile */
  .team-member-photo {
    height: 200px;
  }
  
  /* Blog Image Mobile */
  .blog-image {
    height: 150px;
  }
  
  /* Mobile Navigation */
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  /* Section Padding Tablet */
  .section-padding,
  .services-section,
  .features-section,
  .team-section,
  .reviews-section,
  .faq-section,
  .contact-section,
  .priceplan-section,
  .casestudy-section,
  .process-section,
  .blog-section,
  .about-section,
  .gallery-section {
    padding: 4rem 0;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .gallery-image {
    height: 250px;
  }
  
  .team-member-photo {
    height: 220px;
  }
  
  .blog-image {
    height: 180px;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .hero-section {
    padding: 6rem 0;
  }
  
  /* Larger spacing for big screens */
  .section-padding,
  .services-section,
  .features-section,
  .team-section,
  .reviews-section,
  .faq-section,
  .contact-section,
  .priceplan-section,
  .casestudy-section,
  .process-section,
  .blog-section,
  .about-section,
  .gallery-section {
    padding: 6rem 0;
  }
  
  .contact-form {
    padding: 4rem;
  }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  
  .hero-section {
    padding: 8rem 0;
  }
  
  .section-padding,
  .services-section,
  .features-section,
  .team-section,
  .reviews-section,
  .faq-section,
  .contact-section,
  .priceplan-section,
  .casestudy-section,
  .process-section,
  .blog-section,
  .about-section,
  .gallery-section {
    padding: 8rem 0;
  }
}

/* Print Styles */
@media print {
  .hero-decorative,
  .navbar,
  .footer-section {
    display: none;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
  
  .hero-section,
  .section-padding,
  .services-section,
  .features-section,
  .team-section,
  .reviews-section,
  .faq-section,
  .contact-section,
  .priceplan-section,
  .casestudy-section,
  .process-section,
  .blog-section,
  .about-section,
  .gallery-section {
    padding: 1rem 0;
  }
} 

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