/* Responsive Styles */

/* Extra Large Devices (Desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .team-info {
    padding: 20px 15px;
  }
  
  .team-name {
    font-size: 1.1rem;
  }
  
  .price-tag {
    font-size: 2rem;
  }
}

/* Small Devices (Mobile Landscape, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  section {
    padding: var(--spacing-md) 0;
  }
  
  .price-tag {
    font-size: 1rem;
  }
  
  .review-text {
    padding-left: 20px;
  }
  
  .review-text:before {
    font-size: 1.2rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1rem;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .contact-form {
    padding: 30px;
  }
}

/* Extra Small Devices (Mobile Portrait, less than 576px) */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  .hero-section {
    min-height: 450px;
  }
  
  .hero-title {
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .section-description {
    font-size: 0.9rem;
  }
  
  section {
    padding: var(--spacing-md) 0;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .price-tag {
    font-size: 1.6rem;
  }
  
  .review-text {
    padding-left: 15px;
  }
  
  .review-text:before {
    font-size: 1rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
    display: none;
  }
  
  .blog-content {
    padding: 20px 15px;
  }
  
  .blog-title {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  footer {
    padding: 50px 0 20px;
  }
  
  .footer-logo {
    font-size: 1.3rem;
  }
  
  .footer-heading {
    font-size: 1.1rem;
    margin-top: 30px;
  }
  
  .shape-1 {
    width: 100px;
    height: 100px;
  }
  
  .shape-2 {
    width: 150px;
    height: 150px;
  }
  
  /* Adjustments for Mobile Navigation */
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-toggler {
    border: none;
    padding: 0;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-toggler-icon {
    width: 24px;
    height: 24px;
  }
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
  
  .swiper {
    --swiper-pagination-bullet-inactive-opacity: 0.5 !important;
    --swiper-pagination-bullet-inactive-color: var(--white) !important;
    --swiper-pagination-bullet-opacity: 1 !important;
    --swiper-pagination-color: var(--primary-1) !important;
  }
  
  .fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .service-item:hover,
  .feature-item:hover,
  .price-item:hover,
  .team-member:hover img,
  .coreinfo-item:hover,
  .blog-item:hover,
  .blog-item:hover .blog-img img {
    transform: none !important;
  }
} 