/* Responsive Styles */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .priceplan-item-name {
    font-size: 1.5rem;
  }
  
  .priceplan-item-price {
    font-size: 2.5rem;
  }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .features-item {
    flex-direction: column;
    text-align: center;
  }
  
  .features-item-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .team-member-img {
    width: 180px;
    height: 180px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* Small Devices (Landscape Phones, less than 768px) */
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-section, .hero-slide {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-desc {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .priceplan-item.featured {
    transform: scale(1);
  }
  
  .priceplan-item.featured:hover {
    transform: translateY(-10px);
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
  
  /* Disable animations on mobile for performance */
  .swiper-container {
    --swiper-theme-color: var(--color-primary-1);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .swiper-container {
      --swiper-autoplay-delay: 0;
    }
    
    .swiper-slide {
      transition: none !important;
    }
    
    .fade-in, .slide-up {
      animation: none !important;
      opacity: 1;
      transform: none;
    }
  }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .services-item, 
  .about-feature, 
  .coreinfo-item,
  .add-page-item {
    padding: 1.5rem;
  }
  
  .priceplan-item {
    padding: 2rem 1.5rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .team-member {
    margin-bottom: 3rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .btn-primary {
    padding: 0.7rem 1.5rem;
  }
} 