/* Responsive Styles - Pay-as-you-go GPU Rendering Farm */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .section-padding {
    padding: 100px 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-blob-1 {
    width: 200px;
    height: 200px;
  }
  
  .hero-blob-2 {
    width: 150px;
    height: 150px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-section {
    min-height: 60vh;
    text-align: center;
    padding: 40px 0;
  }
  
  .hero-section h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-section p {
    font-size: 0.95rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  /* Hide decorative elements on mobile */
  .hero-decorative {
    display: none;
  }
  
  /* Typography adjustments */
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  h4 {
    font-size: 1.15rem;
  }
  
  /* Navigation adjustments */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Card adjustments */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-card,
  .faq-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Contact form mobile optimization */
  .contact-form {
    padding: 1.5rem;
    margin: 0 15px;
  }
  
  .form-control {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  
  /* Team photos smaller on mobile */
  .team-photo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }
  
  /* Gallery adjustments */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  /* Process timeline mobile */
  .process-step {
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .process-step::before {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 40px 0 20px;
    text-align: center;
  }
  
  .footer h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  /* Contact info mobile layout */
  .contact-info-item {
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    text-align: left;
  }
  
  .contact-info-item i {
    font-size: 1.1rem;
    margin-right: 0.8rem;
  }
  
  /* Blog cards mobile */
  .blog-card-body {
    padding: 1.2rem;
  }
  
  /* FAQ mobile adjustments */
  .faq-question {
    font-size: 1rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
}

/* Very small devices (less than 400px) */
@media (max-width: 399.98px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .hero-section h1 {
    font-size: 1.6rem;
  }
  
  .section-padding {
    padding: 30px 0;
  }
  
  .contact-form {
    margin: 0 10px;
    padding: 1rem;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-card,
  .faq-card {
    padding: 1rem;
  }
}

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

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