/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section {
    padding: 70px 0;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .about-feature-item,
  .services-item,
  .features-item,
  .priceplan-item,
  .team-member,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 30px;
  }
  
  .navbar-collapse {
    background-color: var(--neutral-white);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-feature-item,
  .services-item,
  .features-item,
  .priceplan-item,
  .team-member,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .navbar-collapse {
    background-color: var(--neutral-white);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 600px;
  }
  
  .hero-slide {
    min-height: 600px;
  }
  
  .hero-title {
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1rem;
  }
  
  .section-subtitle {
    font-size: 0.8rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .about-feature-item,
  .services-item,
  .features-item,
  .priceplan-item,
  .team-member,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 30px;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .navbar-collapse {
    background-color: var(--neutral-white);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  footer {
    padding: 3rem 0 1rem;
  }
  
  .footer-heading {
    margin-top: 2rem;
  }
  
  /* Adjust spacing for smaller screens */
  .mb-4, .my-4 {
    margin-bottom: 1rem !important;
  }
  
  .mt-4, .my-4 {
    margin-top: 1rem !important;
  }
  
  .pb-4, .py-4 {
    padding-bottom: 1rem !important;
  }
  
  .pt-4, .py-4 {
    padding-top: 1rem !important;
  }
}

/* Accessibility - 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: 999999s; /* Effectively disable autoplay */
  }
  
  .float-animation {
    animation: none !important;
  }
  
  .animate__animated {
    animation: none !important;
  }
  
  .swiper-slide {
    transition: none !important;
  }
}

/* Print styles */
@media print {
  body {
    background-color: #fff !important;
    color: #000 !important;
  }
  
  a {
    text-decoration: underline;
    color: #000 !important;
  }
  
  header, footer, .hero-section, .contact-form, .review-item, .team-member {
    page-break-inside: avoid;
  }
  
  .shape, .bg-gradient, .overlay, .animation, .btn, .navbar-toggler {
    display: none !important;
  }
} 