/* Responsive Styles for AI Code Review Service */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  /* Navigation */
  .navbar-brand {
    font-size: 1.125rem !important;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section::before {
    display: none;
  }
  
  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  
  /* Sections */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Service Cards */
  .service-card {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .service-icon {
    margin: 0 auto 1.5rem;
  }
  
  /* Price Cards */
  .price-card {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  /* Team Section */
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  /* Contact Section */
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
  
  /* Form Controls */
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Process Steps */
  .process-step {
    margin-bottom: 2rem;
  }
  
  /* Timeline Items */
  .timeline-item {
    margin-bottom: 1.5rem;
  }
  
  /* Career Items */
  .career-item {
    margin-bottom: 2rem;
  }
  
  /* Core Info Items */
  .coreinfo-item {
    margin-bottom: 1.5rem;
  }
  
  /* Blog Cards */
  .blog-card {
    margin-bottom: 2rem;
  }
  
  /* Gallery Grid */
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  /* Container Padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  /* Typography */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  /* Sections */
  .section-padding {
    padding: 2.5rem 0;
  }
  
  /* Cards */
  .service-card,
  .price-card,
  .contact-form,
  .contact-info,
  .review-card,
  .case-card,
  .process-step,
  .career-item {
    padding: 1.5rem;
  }
  
  /* Features */
  .feature-item {
    padding: 1.5rem 0.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* About Features */
  .about-feature {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  /* Price Amount */
  .price-amount {
    font-size: 2.5rem;
  }
  
  /* Team Photo */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Process Number */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Buttons */
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .btn:last-child {
    margin-bottom: 0;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 200px;
  }
  
  /* FAQ */
  .faq-question,
  .faq-answer {
    padding: 1rem;
  }
  
  /* Blog Cards */
  .blog-card-body {
    padding: 1.5rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  /* Typography */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.375rem; }
  
  /* Cards */
  .service-card,
  .price-card,
  .contact-form,
  .contact-info {
    padding: 1rem;
  }
  
  /* Price Amount */
  .price-amount {
    font-size: 2rem;
  }
  
  /* Team Photo */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 180px;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .service-card,
  .price-card {
    padding: 2.5rem;
  }
  
  .team-photo {
    width: 220px;
    height: 220px;
  }
  
  .feature-icon {
    width: 90px;
    height: 90px;
    font-size: 2.25rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .service-card,
  .price-card,
  .review-card {
    break-inside: avoid;
    margin-bottom: 1rem;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery-item img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .price-card:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .gallery-item img:hover {
    transform: none;
  }
}

/* Dark Mode Support */

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