/* Mobile First Responsive Design */

@media (max-width: 767.98px) {
  .hero-section {
  padding-top: 50px;
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 1.86rem;
  }
  
  .hero-text p {
    font-size: 1.08rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .service-card {
    margin-bottom: 2.08rem;
  }
  
  .team-member {
    margin-bottom: 2.08rem;
  }
  
  .feature-item {
    margin-bottom: 1.73rem;
  }
  
  .price-card {
    margin-bottom: 2.08rem;
  }
  
  .process-step {
    margin-bottom: 1.73rem;
  }
  
  .timeline-item {
    margin-bottom: 1.73rem;
  }
  
  .career-item {
    margin-bottom: 1.73rem;
  }
  
  .blog-card {
    margin-bottom: 2.08rem;
  }
  
  .case-study-card {
    margin-bottom: 2.08rem;
  }
  
  .core-info-item {
    margin-bottom: 2.08rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .decorative-blob {
    display: none;
  }
  
  .navbar-brand {
    font-size: 1.08rem !important;
  }
  
  h1 {
    font-size: 1.63rem;
  }
  
  h2 {
    font-size: 1.52rem;
  }
  
  h3 {
    font-size: 1.35rem;
  }
  
  .testimonial-slide {
    margin: 0.5rem;
    padding: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-text h1 {
    font-size: 2.32rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card img {
    height: 180px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-text h1 {
    font-size: 2.55rem;
  }
  
  .service-card img {
    height: 190px;
  }
  
  .gallery-item img {
    height: 240px;
  }
}

@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 2.89rem;
  }
  
  .container {
    max-width: 1140px;
  }
  
  .service-card img {
    height: 200px;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Swiper Responsive Settings */
@media (max-width: 767.98px) {
  .swiper-container {
    padding-bottom: 2.20rem;
  }
  
  .swiper-slide {
    width: 100% !important;
  }
  
  .swiper-pagination {
    position: static !important;
    margin-top: 1.17rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .contact-form,
  .btn,
  .swiper-container {
    display: none !important;
  }
  
  .hero-section {
  padding-top: 50px;
    min-height: auto;
    background: white !important;
    color: black !important;
  }
  
  .hero-text {
    color: black !important;
  }
  
  .hero-text h1,
  .hero-text p {
    color: black !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .service-card,
  .team-member,
  .testimonial-slide,
  .faq-item,
  .contact-form,
  .price-card,
  .process-step,
  .timeline-item,
  .career-item,
  .blog-card,
  .case-study-card,
  .core-info-item {
    border: 2px solid var(--text-primary);
  }
  
  .btn-primary {
    border: 2px solid var(--text-primary);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before,
  .decorative-blob,
  .service-card,
  .team-member,
  .gallery-item img,
  .btn-primary,
  .career-item,
  .blog-card,
  .case-study-card,
  .core-info-item {
    transition: none !important;
    animation: none !important;
  }
  
  .swiper-container {
    overflow: visible !important;
  }
  
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper-slide {
    float: left;
    width: auto !important;
  }
} 