/**
 * Responsive Styles
 */

/* Tablets and Small Desktops */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 60px 0;
  }
}

/* Tablets */
@media screen and (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .hero-subtitle {
    font-size: 1rem;
  }

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

  /* Grids */
  .services-grid,
  .projects-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Buttons */
  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  /* Section Padding */
  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

/* Mobile Phones */
@media screen and (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 20px;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* Cards */
  .service-card,
  .project-card,
  .testimonial-card {
    padding: 25px 20px;
  }

  /* Project Cards */
  .project-image {
    height: 200px;
  }

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

  /* Footer */
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}

/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    padding: 40px 0;
  }

  .section {
    padding: 40px 0;
  }
}
