/* Responsive Styles */

/* Extra large devices (large desktops) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
}

/* Large devices (desktops) */
@media (max-width: 1199.98px) {
  :root {
    --font-4xl: 2.5rem;
    --font-3xl: 2rem;
    --font-2xl: 1.75rem;
    --space-2xl: 4rem;
  }
  
  .shape {
    display: none;
  }
}

/* Medium devices (tablets) */
@media (max-width: 991.98px) {
  :root {
    --font-4xl: 2.25rem;
    --font-3xl: 1.75rem;
    --font-2xl: 1.5rem;
    --font-xl: 1.25rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
  }
  
  section {
    padding: var(--space-lg) 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-image {
    margin-top: var(--space-lg);
  }
  
  .about-feature,
  .service-item,
  .price-plan-item,
  .team-member,
  .core-info-item {
    margin-bottom: var(--space-md);
  }
  
  .reviews-slider {
    padding-bottom: var(--space-lg);
  }
  
  .contact-info {
    margin-top: var(--space-lg);
  }
}

/* Small devices (landscape phones) */
@media (max-width: 767.98px) {
  :root {
    --font-4xl: 2rem;
    --font-3xl: 1.5rem;
    --font-2xl: 1.25rem;
    --font-xl: 1.125rem;
    --space-xl: 2rem;
    --space-lg: 1.5rem;
  }
  
  .section-title {
    margin-bottom: var(--space-md);
  }
  
  .section-description {
    margin-bottom: var(--space-lg);
  }
  
  .hero-section {
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: var(--space-lg);
  }
  
  .team-img-wrapper {
    width: 150px;
    height: 150px;
  }
  
  .review-item {
    padding: var(--space-md);
  }
  
  footer {
    text-align: center;
  }
  
  footer .col-md-4:not(:last-child) {
    margin-bottom: var(--space-lg);
  }
  
  /* Disable animations on mobile */
  @media (prefers-reduced-motion: no-preference) {
    .shape {
      animation: none;
    }
    
    .swiper-container {
      --swiper-autoplay-delay: 0ms; /* Disable autoplay */
    }
  }
}

/* Extra small devices (portrait phones) */
@media (max-width: 575.98px) {
  :root {
    --font-4xl: 1.75rem;
    --font-3xl: 1.5rem;
    --font-2xl: 1.25rem;
    --font-xl: 1.125rem;
    --font-lg: 1rem;
    --space-lg: 1.25rem;
    --space-md: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .gallery-img {
    height: 200px;
  }
  
  .feature-icon,
  .about-feature-icon,
  .core-info-icon {
    font-size: 2rem;
  }
  
  #site-copyright {
    font-size: 0.75rem;
  }
  
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
} 