/* Responsive Styles */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .showcase-content h2 {
    font-size: 2.2rem;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 40px;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase .container {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .showcase-content {
    margin-bottom: 40px;
  }
  
  .feature-list li {
    justify-content: center;
  }
  
  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 2.5rem;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  header .container {
    height: 70px;
background: #341933;
  }
  
  .nav-links {
    position: fixed;
 
    flex-direction: column;
    align-items: center;
    background-color: rgba(17, 17, 17, 0.95);
    padding: 20px 0;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2000;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-links a {
    color: var(--text-light);
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-content h2 {
    font-size: 1.8rem;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .cta p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 50px;
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: 50px;
  }
}

/* Small Mobile (Up to 575px) */
@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-image {
    width: 80px;
    height: 80px;
  }
}