/* Mobile First Responsive Design */

/* Extra Small devices (phones, 575px and down) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.14rem;
  }
  
  .hero-subtitle {
    font-size: 1.04rem;
  }
  
  .section-title {
    font-size: 1.57rem;
  }
  
  .section-subtitle {
    font-size: 1.04rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.20rem;
  }
  
  .team-member {
    padding: 1.5rem;
    margin-bottom: 1.20rem;
  }
  
  .navbar-brand {
    font-size: 1.04rem !important;
  }
  
  /* Disable autoplay and effects on mobile */
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper-slide {
    transition: none !important;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.63rem;
  }
  
  .hero-subtitle {
    font-size: 1.27rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.12rem;
  }
  
  .hero-subtitle {
    font-size: 1.36rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  /* Enable swiper effects on larger screens */
  .swiper-slide {
    transition: all 0.3s ease;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.63rem;
  }
  
  .contact-form {
    padding: 3rem;
  }
  
  .service-card {
    padding: 2.5rem;
  }
  
  .team-member {
    padding: 2.5rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .section-padding {
    padding: 100px 0;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Ultra-wide screens (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .swiper-pagination,
  .swiper-navigation {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
    background: white;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
    page-break-after: avoid;
  }
  
  .section-padding {
    padding: 20px 0;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color-1: #04006c;
    --primary-color-2: #70007c;
    --dark-shade-1: #000000;
    --dark-shade-2: #000000;
    --light-shade-1: #ffffff;
    --light-shade-2: #f5f5f5;
  }
  
  .btn-primary {
    background: #05198c;
    border: 2px solid #0f0678;
  }
  
  .form-control {
    border: 2px solid #000000;
  }
  
  .service-card,
  .team-member,
  .review-item,
  .contact-form {
    border: 1px solid #000000;
  }
} 