/* Responsive Styles */

/* Extra large devices (large desktops) */
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-text h1 {
    font-size: 2.75rem;
  }
}

/* Large devices (desktops) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text h2 {
    font-size: 1.25rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium devices (tablets) */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.25rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .services-grid,
  .features-grid,
  .priceplan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  /* Show mobile menu button */
  .mobile-menu-btn {
    display: block;
  }
  
  /* Hide desktop menu by default */
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-menu li {
    margin: 0.5rem 0;
  }
}

/* Small devices (landscape phones) */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text h2 {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title h3 {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .services-grid,
  .features-grid,
  .priceplan-grid,
  .team-grid,
  .blog-grid,
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  
  .coreinfo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  /* Disable autoplay for sliders */
  .swiper-container {
    --swiper-autoplay: false !important;
  }
  
  /* Reduce animations for better performance */
  @media (prefers-reduced-motion: no-preference) {
    .card:hover {
      transform: none;
    }
    
    .hero-shape {
      animation: none;
    }
  }
}

/* Extra small devices (phones) */
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .coreinfo-grid {
    grid-template-columns: 1fr;
  }
  
  .header-content {
    padding: 0 1rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
} 