/* Responsive CSS - Mobile-first approach */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .hero-section {
  padding-top: 50px;
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-text h1 {
    font-size: 1.82rem;
  }
  
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.70rem;
  }
  
  .service-price {
    font-size: 1.60rem;
  }
  
  .navbar-brand {
    font-size: 1.06rem !important;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
  
  .footer-contact p i {
    margin-right: 0.75rem;
  }
  
  .footer-contact p {
    font-size: 0.86rem;
  }
  
  .feature-card,
  .price-card,
  .review-card,
  .case-study-card,
  .process-step,
  .career-card,
  .info-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon,
  .info-icon {
    font-size: 2.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .timeline-item {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  .timeline-date {
    font-size: 0.8rem;
  }
  
  .price {
    font-size: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
  padding-top: 50px;
    min-height: 75vh;
  }
  
  .service-card {
    margin-bottom: 1.70rem;
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
  padding-top: 50px;
    min-height: 85vh;
  }
  
  .service-card {
    margin-bottom: 2.07rem;
  }
  
  .gallery-item img {
    height: 280px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
  padding-top: 50px;
    min-height: 100vh;
  }
  
  .service-card {
    margin-bottom: 2.07rem;
  }
  
  .gallery-item img {
    height: 300px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-fluid {
    max-width: 1400px;
  }
  
  .hero-text h1 {
    font-size: 2.53rem;
  }
  
  .service-card {
    padding: 2.5rem;
  }
  
  .gallery-item img {
    height: 350px;
  }
}

/* Disable animations on mobile for Swiper */
@media (max-width: 767.98px) {
  .swiper {
    --swiper-theme-color: var(--primary-purple);
  }
  
  .swiper-slide {
    transition: none !important;
  }
  
  .swiper-wrapper {
    transform: none !important;
  }
}

/* Touch-friendly buttons on mobile */
@media (max-width: 767.98px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1.06rem;
    min-height: 44px;
  }
  
  .nav-link {
    padding: 1rem !important;
  }
  
  .faq-header {
    padding: 1.25rem;
  }
}

/* Landscape phone adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
  padding-top: 50px;
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .hero-text h1 {
    font-size: 1.63rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .swiper-pagination,
  .shape-blob {
    display: none !important;
  }
  
  .hero-section {
  padding-top: 50px;
    min-height: auto;
    padding: 2rem 0;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
} 