/* Mobile First Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.13rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.12rem !important;
  }
  
  .hero-desc {
    font-size: 0.97rem !important;
  }
  
  .section {
    padding: 3rem 0 !important;
  }
  
  .section-title {
    font-size: 1.57rem !important;
  }
  
  .section-subtitle {
    font-size: 1.24rem !important;
  }
  
  .feature-card {
    margin-bottom: 1.68rem;
  }
  
  .service-card {
    margin-bottom: 1.68rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .contact-form {
    padding: 2rem !important;
  }
  
  .blog-card {
    margin-bottom: 1.68rem;
  }
  
  .navbar-brand {
    font-size: 1.12rem !important;
  }
  
  .navbar-nav .nav-link {
    margin: 0.25rem 0;
  }
  
  /* Disable animations on mobile for better performance */
  .swiper-slide {
    transition: none !important;
  }
  
  .blob-shape {
    display: none;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.64rem;
  }
  
  .hero-subtitle {
    font-size: 1.17rem;
  }
  
  .section-title {
    font-size: 1.77rem;
  }
  
  .team-photo {
    width: 175px;
    height: 175px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.06rem;
  }
  
  .container-xl {
    max-width: 1200px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.63rem;
  }
  
  .section {
    padding: 6rem 0;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .blob-shape,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  .section {
    padding: 1rem 0;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-purple: #44157d;
    --secondary-coral: #ea2618;
    --accent-teal: #0a593e;
    --text-dark: #000000;
    --bg-light: #FFFFFF;
  }
  
  .btn-primary {
    border: 2px solid #000;
  }
  
  .form-control {
    border: 2px solid #000;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
  padding-top: 50px;
    min-height: 70vh;
  }
  
  .section {
    padding: 2rem 0;
  }
} 