/* =========================================
   Responsive CSS for Webinar Captions SaaS
   ========================================= */

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

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 2.25rem;
    padding-top: 250px;
}
  
  .section-padding {
    padding: 60px 0;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .team-card {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    padding-top: 250px;
}
  
  .section-padding {
    padding: 50px 0;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  /* Disable animations on mobile */
  .service-card:hover,
  .feature-card:hover,
  .price-card:hover,
  .team-card:hover,
  .case-card:hover,
  .gallery-item:hover,
  .career-card:hover,
  .coreinfo-item:hover,
  .blog-card:hover,
  .btn-primary:hover,
  .btn-outline-primary:hover {
    transform: none;
  }
  
  .hero-blob-1,
  .hero-blob-2 {
    display: none;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
  
  .timeline-item:before {
    width: 8px;
    height: 8px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    padding-top: 250px;
}
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .service-card,
  .price-card,
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .btn-primary,
  .btn-outline-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
  
  /* Stack price cards on mobile */
  .price-card.featured {
    transform: none;
    margin: 1rem 0;
  }
  
  .price-badge {
    position: static;
    transform: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
}

/* Navigation adjustments for mobile */
@media (max-width: 991.98px) {
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Form adjustments for mobile */
@media (max-width: 767.98px) {
  .form-control {
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .contact-form .row > div {
    margin-bottom: 1rem;
  }
}

/* Gallery responsive grid */
@media (max-width: 991.98px) {
  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .gallery-item img {
    height: 180px;
  }
  
  .gallery-item {
    margin-bottom: 1rem;
  }
}

/* Blog responsive adjustments */
@media (max-width: 767.98px) {
  .blog-card-body {
    padding: 1.25rem;
    overflow-x: hidden;
}
}

/* Footer responsive */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
  
  .footer .row > div:last-child {
    margin-bottom: 0;
  }
}

/* Hide decorative elements on small screens */
@media (max-width: 767.98px) {
  .hero-decorative {
    display: none;
  }
}

/* Ensure text remains readable */
@media (max-width: 575.98px) {
  .section-desc {
    font-size: 0.9rem;
  }
  
  .service-features,
  .faq-answer,
  .review-text {
    font-size: 0.9rem;
  }
} 