/* Responsive Styles */

/* Large screens (1200px and above) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .services-grid, 
  .priceplan-grid,
  .coreinfo-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .about-grid,
  .contact-grid,
  .footer-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-section {
    height: auto;
    padding: 120px 0 4rem;
  }
  
  .hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 2rem;
  }
  
  .hero-shape,
  .hero-shape-2,
  .services-shape,
  .reviews-shape {
    display: none;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile landscape (576px to 767px) */
@media (max-width: 767px) {
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--light-shade-1);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 1.5rem 0;
  }
  
  .services-grid,
  .priceplan-grid,
  .coreinfo-grid,
  .blog-grid,
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Adjust animation for smaller screens */
  @media (prefers-reduced-motion) {
    .fade-up, .fade-left, .fade-right {
      transition: none;
    }
  }
}

/* Mobile portrait (575px and below) */
@media (max-width: 575px) {
  section {
    padding: 2.5rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-section {
    padding: 100px 0 2.5rem;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .service-card,
  .price-card,
  .coreinfo-item,
  .blog-card,
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .price-card.featured:hover {
    transform: scale(1.03);
  }
}

/* Adjust styles for prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    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;
  }
}

/* Print styles */
@media print {
  header, footer, .hero-section, .contact-section {
    display: none;
  }
  
  body {
overflow-x: hidden;
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: none;
    color: #000;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
} 