/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }
  .hero-section {
    min-height: 600px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .about-shape, .hero-shape {
    display: none;
  }
  .service-card, .about-feature, .feature-item, .price-card, .coreinfo-item {
    margin-bottom: 30px;
  }
  .team-member {
    margin-bottom: 40px;
  }
  .contact-info {
    margin-top: 40px;
  }
  .site-footer .col-md-6 {
    margin-bottom: 40px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  .hero-section {
    min-height: 500px;
    text-align: center;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-image {
    margin-top: 30px;
  }
  .navbar-collapse {
    background-color: var(--neutral-light);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 15px;
  }
  .site-header .nav-link {
    padding: 10px 0 !important;
  }
  .about-image {
    margin-bottom: 30px;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .review-item {
    padding: 20px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 50px 0;
  }
  .section-title h2 {
    font-size: 1.6rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .service-card, .about-feature, .feature-item, .price-card, .coreinfo-item, .contact-form {
    padding: 25px 15px;
  }
  .team-info {
    padding: 15px;
  }
  .team-name {
    font-size: 1.2rem;
  }
  .footer-bottom {
    margin-top: 40px;
  }
}

/* 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;
  }
  .float-animation {
    animation: none !important;
  }
  .swiper-container {
    --swiper-autoplay-delay: 999999999s;
  }
}

/* Device-specific optimizations */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .section-title h2 {
    font-size: 1.4rem;
  }
  .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Landscape mode for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto;
    min-height: 450px;
    padding: 100px 0;
  }
} 