/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .benefits-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  /* Header & Navigation */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: var(--transition);
  }
  
  .menu-toggle:checked ~ .nav-menu {
    left: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 1001;
  }
  
  /* About Section */
  .about-content {
    flex-direction: column;
  }
  
  .about-image,
  .about-text {
    width: 100%;
  }
  
  /* Process Section */
  .process-timeline::before {
    left: 30px;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding: 0 0 0 70px;
    text-align: left;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .benefits-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
}

.menu-toggle-label {
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle-label {
    display: block;
    position: relative;
    width: 30px;
    height: 22px;
  }
  
  .menu-toggle-label span,
  .menu-toggle-label span::before,
  .menu-toggle-label span::after {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 3px;
  }
  
  .menu-toggle-label span {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .menu-toggle-label span::before {
    content: '';
    top: -8px;
  }
  
  .menu-toggle-label span::after {
    content: '';
    bottom: -8px;
  }
  
  .menu-toggle:checked ~ .menu-toggle-label span {
    background: transparent;
  }
  
  .menu-toggle:checked ~ .menu-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .menu-toggle:checked ~ .menu-toggle-label span::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
} 