/* Responsive Styles for User Testing Recruitment Platform */

/* Mobile First Approach */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* No animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    padding-top: 175px;
}
  
  .hero-section .hero-subtitle-1 {
    font-size: 0.9rem;
  }
  
  /* Section Padding */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Cards */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 2rem;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Footer */
  .footer {
    text-align: center;
  }
  
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
  
  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  /* Navbar */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Process Steps */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  /* Price Amount */
  .price-amount {
    font-size: 2.5rem;
  }
  
  /* Service Image */
  .service-image {
    width: 60px;
    height: 60px;
  }
  
  /* Team Photo */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2.25rem;
    padding-top: 175px;
}
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 2.5rem;
    padding-top: 175px;
}
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Navbar adjustments */
  .navbar-nav {
    margin-left: auto;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* Full hero height on desktop */
  .hero-section {
    min-height: 100vh;
  }
  
  /* Gallery full grid */
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Price card featured scaling */
  .price-card.featured {
    transform: scale(1.05);
  }
  
  /* Better spacing for larger screens */
  .section-padding {
    padding: 6rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .section-padding {
    padding: 7rem 0;
  }
  
  /* Larger hero text */
  .hero-section h1 {
    font-size: 3rem;
    padding-top: 175px;
}
}

/* XXL devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

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

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Optimize for retina displays */
  .feature-icon,
  .service-image,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    page-break-inside: avoid;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  * {
    color: #000 !important;
    background: #fff !important;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  .feature-card:hover,
  .service-card:hover,
  .price-card:hover,
  .team-card:hover,
  .gallery-item:hover,
  .btn-primary:hover,
  .btn-outline-primary:hover {
    transform: none;
  }
}

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

/* Dark Mode Support */