/* Responsive Styles */

/* Extra large devices (large 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-content h1 {
    font-size: 3rem;
  }
  
  .services-item, 
  .features-item, 
  .priceplan-item, 
  .coreinfo-item {
    padding: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .services-item, 
  .features-item, 
  .priceplan-item, 
  .coreinfo-item {
    padding: 1.25rem;
  }
  
  .services-item h3,
  .features-item h3,
  .priceplan-item h3,
  .coreinfo-item h3 {
    font-size: 1.25rem;
  }
  
  .about-feature {
    margin-bottom: 2rem;
  }
  
  .team-item {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .about-feature,
  .services-item,
  .features-item,
  .priceplan-item,
  .team-item,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
  
  .hero-section,
  .hero-slide {
    height: 70vh;
    min-height: 500px;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1.25rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content p {
    font-size: 0.875rem;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .about-feature,
  .services-item,
  .features-item,
  .priceplan-item,
  .team-item,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .hero-section,
  .hero-slide {
    height: 60vh;
    min-height: 400px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .footer {
    padding: 2.5rem 0 1rem;
    text-align: center;
  }
  
  .review-item {
    padding: 2rem 1rem;
  }
  
  .services-item .price,
  .priceplan-item .price {
    font-size: 1rem;
  }
}

/* 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: 999999999s;
  }
}

/* For landscape orientation on small devices */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section,
  .hero-slide {
    height: 400px;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-content p {
    margin-bottom: 1rem;
  }
}

/* For print media */
@media print {
  .hero-section,
  .footer,
  .navbar,
  .reviews-section,
  .contact-section,
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .services-item,
  .features-item,
  .about-feature,
  .coreinfo-item {
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #ddd;
    box-shadow: none !important;
    transform: none !important;
  }
} 