/* Responsive CSS - Mobile First Approach */
/* Employee Engagement Pulse-Survey SaaS Template */

/* Mobile First (320px and up) */
@media (max-width: 575.98px) {
  /* Typography adjustments for mobile */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  /* NO animations on mobile scroll - per requirements */
  .hero-section::before {
    animation: none;
  }
  
  /* Services mobile */
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Section padding mobile */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Team cards mobile */
  .team-card {
    margin-bottom: 1.5rem;
  }
  
  /* Price cards mobile */
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  /* Process steps mobile */
  .process-step {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Feature cards mobile */
  .feature-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* FAQ mobile */
  .faq-card {
    padding: 1rem;
  }
  
  /* Blog cards mobile */
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  /* Career cards mobile */
  .career-card {
    margin-bottom: 1.5rem;
  }
  
  /* Case study mobile */
  .case-study-card {
    margin-bottom: 1.5rem;
  }
  
  /* Core info mobile */
  .core-info-item {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* About features mobile */
  .about-feature {
    padding: 1rem;
  }
  
  /* Timeline mobile */
  .timeline-item {
    padding: 1rem;
  }
  
  /* Gallery mobile */
  .gallery-item img {
    height: 150px;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Utility spacing mobile */
  .mb-section {
    margin-bottom: 3rem;
  }
  
  /* Icon features mobile */
  .icon-feature {
    width: 50px;
    height: 50px;
  }
  
  .icon-feature i {
    font-size: 1.25rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  .process-number {
    width: 55px;
    height: 55px;
    font-size: 1.375rem;
  }
  
  .contact-form {
    padding: 1.75rem;
  }
  
  .feature-card,
  .process-step {
    padding: 1.75rem;
  }
  
  .gallery-item img {
    height: 175px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .team-photo {
    height: 200px;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .case-study-image,
  .blog-image {
    height: 180px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .team-photo {
    height: 220px;
  }
  
  .gallery-item img {
    height: 190px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .team-photo {
    height: 250px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .case-study-image,
  .blog-image {
    height: 200px;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
  
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
}

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

/* Print styles */
@media print {
  .hero-section::before {
    display: none;
  }
  
  .service-card:hover,
  .team-card:hover,
  .blog-card:hover,
  .career-card:hover,
  .feature-card:hover {
    transform: none;
    box-shadow: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  .footer {
    background: white;
    color: black;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .price-card,
  .feature-card,
  .blog-card,
  .career-card,
  .case-study-card,
  .core-info-item,
  .process-step,
  .timeline-item,
  .contact-form,
  .faq-card,
  .testimonial-card {
    border: 2px solid var(--neutral-700);
  }
}

/* Dark mode preferences */

/* Focus states for accessibility */
@media (any-hover: hover) {
  .service-card:hover,
  .team-card:hover,
  .price-card:hover,
  .feature-card:hover,
  .blog-card:hover,
  .career-card:hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .team-card:hover,
  .price-card:hover,
  .feature-card:hover,
  .blog-card:hover,
  .career-card:hover,
  .gallery-item:hover img {
    transform: none;
  }
  
  .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .form-control {
    padding: 1rem;
    font-size: 1rem;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-section::before {
    animation: none;
  }
}

/* Container adjustments for better mobile experience */
@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Navigation adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
  }
}

/* Form improvements for mobile */
@media (max-width: 767.98px) {
  .form-control {
    margin-bottom: 1rem;
  }
  
  .form-check {
    margin-bottom: 1rem;
  }
  
  .btn-primary {
    width: 100%;
    margin-top: 1rem;
  }
}

/* Gallery responsive grid */
@media (max-width: 575.98px) {
  .gallery-item {
    margin-bottom: 1rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .gallery-item {
    margin-bottom: 1.25rem;
  }
}

/* Services grid responsive */
@media (max-width: 767.98px) {
  .service-card {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .service-card {
    margin-bottom: 2rem;
  }
}

/* Team grid responsive */
@media (max-width: 575.98px) {
  .team-card {
    max-width: 100%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .team-card {
    margin-bottom: 2rem;
  }
} 

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