/* Responsive Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
  }
  
  .services-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .navbar-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background-color: var(--secondary-color);
    flex-direction: column;
    gap: 0;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .navbar-links.active {
    right: 0;
  }

  .navbar-links li {
    margin-bottom: 1.5rem;
  }

  .navbar-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-buttons .btn {
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slider {
    padding: 0 1rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .container {
    width: 95%;
  }
  
  .hero-title {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Print Styles */
@media print {
  .navbar, .footer, .hero-buttons, .contact-form {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .hero-overlay {
    background: none;
    color: #000;
  }
  
  .hero {
    height: auto;
    background: none;
  }
  
  img {
    max-width: 100% !important;
  }
}
