/* Responsive CSS */

/* X-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-title-1 {
    font-size: 3rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.35rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.15rem;
  }
  
  .team-member-img {
    width: 150px;
    height: 150px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-title-1 {
    font-size: 2.25rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.15rem;
  }
  
  .hero-desc-1 {
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .team-member-img {
    width: 120px;
    height: 120px;
  }
  
  .priceplan-item-name {
    font-size: 1.35rem;
  }
  
  .priceplan-item-price {
    font-size: 2rem;
  }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 2.5rem 0;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .hero-desc-1 {
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .team-member-img {
    width: 100px;
    height: 100px;
  }
  
  .priceplan-item-name {
    font-size: 1.25rem;
  }
  
  .priceplan-item-price {
    font-size: 1.75rem;
  }
  
  .priceplan-item-header {
    padding: 1.5rem;
  }
  
  .priceplan-item-content {
    padding: 1.5rem;
  }
  
  .about-feature, 
  .feature-item, 
  .coreinfo-item, 
  .add-page-elem {
    padding: 1.5rem;
  }
  
  .accordion-button {
    padding: 1rem;
  }
  
  .accordion-body {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .service-item-img {
    height: 160px;
  }
  
  .service-item-content {
    padding: 1rem;
  }
  
  .form-control, .btn-primary {
    padding: 0.6rem;
  }
  
  footer {
    padding: 2.5rem 0 1rem;
    text-align: center;
  }
  
  #site-copyright {
    margin-top: 2rem;
    padding-top: 1rem;
  }
}

/* Utility Responsive Classes */
@media (max-width: 767.98px) {
  .text-center-sm {
    text-align: center;
  }
  
  .mb-sm-3 {
    margin-bottom: 1rem;
  }
  
  .mt-sm-4 {
    margin-top: 1.5rem;
  }
  
  /* Disable animations on mobile for performance and to respect prefers-reduced-motion */
  @media (prefers-reduced-motion) {
    .fade-in, .slide-in-left, .slide-in-right, .slide-in-up {
      animation: none;
    }
    
    .service-item:hover,
    .about-feature:hover,
    .feature-item:hover,
    .priceplan-item:hover,
    .coreinfo-item:hover,
    .add-page-elem:hover,
    .blog-item:hover,
    .gallery-item:hover .gallery-img {
      transform: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
  }
} 