/* Mobile First - Base Styles */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .services-card,
  .team-card,
  .blog-card {
    margin-bottom: 2.14rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .gallery-img img {
    height: 150px;
  }
  
  .team-card img {
    height: 200px;
  }
  
  .services-card .card-img-top {
    height: 150px;
  }
  
  .priceplan-card {
    margin-bottom: 2.14rem;
  }
  
  .priceplan-card.featured {
    transform: none;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-container {
    overflow: visible;
  }
  
  .swiper-slide {
    margin-bottom: 1.07rem;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .gallery-img img {
    height: 180px;
  }
  
  .team-card img {
    height: 220px;
  }
  
  .services-card .card-img-top {
    height: 180px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .hero-section {
    padding: 0;
  }
  
  .services-card:hover {
    transform: translateY(-10px);
  }
  
  .team-card:hover {
    transform: translateY(-10px);
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
  }
  
  .gallery-img:hover {
    transform: scale(1.1);
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .container-fluid {
    max-width: 1400px;
  }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .services-card .card-img-top {
    height: 250px;
  }
  
  .team-card img {
    height: 300px;
  }
  
  .gallery-img img {
    height: 250px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .swiper-pagination {
    display: none !important;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .services-card,
  .team-card,
  .blog-card {
    box-shadow: none;
    border: 1px solid #c6b7b9;
    page-break-inside: avoid;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-purple: #411c7e;
    --primary-pink: #c7085d;
    --text-dark: #000000;
    --text-light: #212121;
  }
  
  .services-card,
  .team-card,
  .blog-card,
  .contact-form {
    border: 2px solid var(--text-dark);
  }
}

/* Dark Mode Preferences */
@media (prefers-color-scheme: dark) {
  /* Note: Dark mode styles excluded as per requirements */
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .services-card:hover,
  .team-card:hover,
  .blog-card:hover,
  .gallery-img:hover,
  .btn-primary:hover {
    transform: none;
  }
  
  .swiper-container {
    overflow: visible;
  }
  
  .swiper-slide {
    animation: none;
  }
}

/* Focus Management */
@media (min-width: 768px) {
  .navbar-nav .nav-link:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
  }
  
  .services-card:focus-within,
  .team-card:focus-within,
  .blog-card:focus-within {
    transform: translateY(-5px);
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
  }
}

/* IE11 Fallbacks */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hero-title,
  .section-title,
  .navbar-brand {
    color: var(--primary-purple);
  }
  
  .btn-primary {
    background: var(--primary-purple);
  }
} 