/* Responsive Styles */

/* Large screens */
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Medium screens */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .pricing-tables {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-table {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 450px;
  }
  
  .pricing-table.featured {
    transform: scale(1);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .location-map {
    height: 300px;
  }
}

/* Small screens */
@media screen and (max-width: 768px) {
  .site-header .container {
    height: 70px;
  }
  
  .main-nav {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .mobile-nav {
    position: fixed;
    top: 70px;
    right: 0;
    width: 250px;
    height: calc(100vh - 70px);
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }
  
  .menu-open .mobile-nav {
    transform: translateX(0);
  }
  
  .mobile-nav ul {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .mobile-nav li {
    margin-bottom: 1.5rem;
  }
  
  .mobile-nav a {
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .mobile-nav .cta {
    margin-top: 2rem;
  }
  
  .hero {
    padding: 7rem 0 4rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .tagline {
    font-size: 1.2rem;
  }
  
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* About Us section responsive */
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-text {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .about-image {
    order: 2;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: cover;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .tagline {
    font-size: 1rem;
  }
  
  .custom-form {
    padding: 1.5rem;
  }
  
  .testimonial-item blockquote {
    font-size: 1rem;
  }
  
  .legal-content {
    padding: 2rem 1.5rem;
  }
}
