/* Responsive Styles */

/* Extra Large Devices (Desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (Desktops) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
  :root {
    --h1-size: 3rem;
    --h2-size: 2.5rem;
    --h3-size: 2rem;
    --h4-size: 1.6rem;
    --h5-size: 1.3rem;
    --h6-size: 1.1rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-desc {
    margin-bottom: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0 0.5rem;
  }
  
  .about-img {
    margin-bottom: 2rem;
  }
  
  .about-feature {
    margin-bottom: 1.5rem;
  }
  
  .service-icon, .feature-icon, .coreinfo-icon {
    font-size: 2.5rem;
  }
  
  .price-header {
    padding: 1.5rem;
  }
  
  .price-body {
    padding: 1.5rem;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767.98px) {
  :root {
    --h1-size: 2.5rem;
    --h2-size: 2.2rem;
    --h3-size: 1.8rem;
    --h4-size: 1.5rem;
    --h5-size: 1.2rem;
    --h6-size: 1rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-desc {
    margin-bottom: 2.5rem;
  }
  
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 6rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
    color: var(--primary-3);
  }
  
  .about-feature {
    margin-bottom: 2rem;
  }
  
  .service-card, .price-card, .team-card, .blog-card {
    margin-bottom: 2rem;
  }
  
  .service-name, .feature-name, .price-name, .team-name, .blog-title {
    font-size: 1.3rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .contact-form-container {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .contact-info {
    padding: 2rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  /* Disable animations on mobile */
  .swiper-container {
    --swiper-autoplay-delay: 0;
  }
  
  .swiper-slide {
    transition: none !important;
  }
  
  @media (prefers-reduced-motion: no-preference) {
    .animate-fade-up, .animate-fade-in {
      transition: none;
      opacity: 1;
      transform: none;
    }
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  :root {
    --h1-size: 2.2rem;
    --h2-size: 2rem;
    --h3-size: 1.7rem;
    --h4-size: 1.4rem;
    --h5-size: 1.1rem;
    --h6-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-desc {
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .service-card, .price-card {
    padding: 1.5rem;
  }
  
  .contact-form-container, .contact-info {
    padding: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .review-text::before {
    top: 0;
    left: -0.5rem;
    font-size: 3rem;
  }
  
  .review-text::after {
    bottom: -0.5rem;
    right: -0.5rem;
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
} 