/* Tablet Screens (768px to 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }

  section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Screens (480px to 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }

  section {
    padding: 40px 0;
  }

  /* Navigation */
  .navbar .container {
    padding: 0.75rem 20px;
  }

  .navbar-content {
    gap: 0.5rem;
  }

  .logo img {
    height: 40px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 0.5rem;
  }

  .hamburger {
    display: flex;
    order: 3;
  }

  .language-selector {
    order: 2;
    gap: 0.25rem;
  }

  .lang-btn {
    font-size: 1.2rem;
    padding: 3px 8px;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card .btn {
    width: calc(100% - 3rem);
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  /* Contact */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-section h4 {
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Small Mobile Screens (below 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }

  section {
    padding: 30px 0;
  }

  .navbar .container {
    padding: 0.5rem 15px;
  }

  .logo img {
    height: 35px;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .nav-menu {
    padding: 0.75rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .language-selector {
    gap: 0.2rem;
  }

  .lang-btn {
    font-size: 1rem;
    padding: 2px 6px;
  }

  .info-item {
    gap: 1rem;
  }

  .info-item i {
    font-size: 1.25rem;
  }

  .footer-section ul li {
    margin-bottom: 0.4rem;
  }

  .footer-section a,
  .footer-section p {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .about-features {
    gap: 0.75rem;
  }

  .feature {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .feature i {
    font-size: 1.25rem;
  }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-buttons,
  .contact-form {
    display: none;
  }

  body {
    background-color: white;
  }

  section {
    page-break-inside: avoid;
  }
}
