/* Responsive Styles */

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Hero Section */
  .hero-content h1 {
    font-size: 3rem;
  }
  
  /* Service Items */
  .service-item {
    padding: 25px 20px;
  }
  
  /* Team Section */
  .team-info h4 {
    font-size: 1.1rem;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  /* Global */
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  /* Hero Section */
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  /* About Section */
  .about-content {
    margin-top: 30px;
  }
  
  /* Service Items */
  .service-item {
    margin-bottom: 20px;
  }
  
  /* Features */
  .feature-item {
    margin-bottom: 40px;
  }
  
  /* Team Section */
  .team-item {
    margin-bottom: 40px;
  }
  
  /* Contact Form */
  .contact-form {
    margin-bottom: 40px;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  /* Global */
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  /* Header */
  .navbar-collapse {
    background-color: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link {
    margin: 10px 0;
  }
  
  /* Hero Section */
  .hero-section {
    text-align: center;
    height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin: 0 auto 30px;
  }
  
  .hero-img {
    margin-top: 40px;
  }
  
  /* About Section */
  .about-content {
    margin-top: 40px;
    text-align: center;
  }
  
  .about-feature-item {
    text-align: left;
  }
  
  /* Service Items */
  .service-item {
    margin-bottom: 20px;
  }
  
  /* Features */
  .feature-item {
    margin-bottom: 30px;
  }
  
  /* Price Plans */
  .price-item {
    margin-bottom: 30px;
  }
  
  /* Team Section */
  .team-item {
    margin-bottom: 30px;
  }
  
  /* Core Info */
  .coreinfo-item {
    margin-bottom: 30px;
  }
  
  /* Contact Form */
  .contact-info {
    margin-bottom: 40px;
  }
  
  /* Footer */
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  /* Global */
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  /* Header */
  .navbar-collapse {
    background-color: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link {
    margin: 10px 0;
  }
  
  /* Hero Section */
  .hero-section {
    text-align: center;
    height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin: 0 auto 30px;
  }
  
  .hero-img {
    margin-top: 40px;
  }
  
  .btn {
    padding: 10px 25px;
  }
  
  /* About Section */
  .about-content {
    margin-top: 40px;
    text-align: center;
  }
  
  .about-feature-item {
    text-align: left;
  }
  
  /* Service Items */
  .service-item {
    margin-bottom: 20px;
  }
  
  /* Features */
  .feature-item {
    margin-bottom: 30px;
  }
  
  /* Price Plans */
  .price-item {
    margin-bottom: 30px;
  }
  
  /* Team Section */
  .team-item {
    margin-bottom: 30px;
  }
  
  /* Reviews */
  .review-author {
    flex-direction: column;
    text-align: center;
  }
  
  .review-author-img {
    margin: 0 auto 15px;
  }
  
  /* Core Info */
  .coreinfo-item {
    margin-bottom: 30px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 25px;
  }
  
  .contact-info {
    margin-bottom: 40px;
  }
  
  /* Footer */
  .footer-widget {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .footer-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    text-align: left;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0ms !important;
  }
} 