/* ==========================================================================
   INSIDE INTERIO — RESPONSIVE STYLESHEET
   Breakpoints: 1920px, 1440px, 1024px, 768px, 480px, 360px
   ========================================================================== */

/* 1440px & Below */
@media (max-width: 1440px) {
  :root {
    --container-max-width: 1200px;
  }
}

/* 1024px & Below (Tablets Landscape & Small Laptops) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .grid-responsive-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .grid-responsive-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .process-steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .process-steps-container::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .about-grid, .configurator-promo-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-container img {
    height: 400px;
  }
}

/* 768px & Below (Tablets Portrait & Mobile) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section-padding {
    padding: 70px 0;
  }

  /* Navigation Drawer */
  .nav-menu {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  /* Hero */
  .hero-section {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-tagline {
    font-size: 2.8rem;
    flex-wrap: wrap;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-contact-bar {
    display: none;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stat-item::after {
    display: none !important;
  }

  .process-steps-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-checklist {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .grid-responsive-3,
  .grid-responsive-4 {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .project-card {
    height: 340px;
  }

  .config-preview-card img {
    height: 280px;
  }

  .testimonial-slide {
    padding: 30px 20px;
  }
}

/* 480px & Below (Large & Medium Mobile) */
@media (max-width: 480px) {
  .hero-tagline {
    font-size: 2.3rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .section-tag {
    font-size: 0.78rem;
  }

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

  .stat-icon {
    width: 48px;
    height: 48px;
  }

  .stat-icon svg {
    width: 24px;
    height: 24px;
  }

  .experience-badge {
    bottom: 15px;
    right: 15px;
    padding: 12px 16px;
  }

  .experience-number {
    font-size: 1.8rem;
  }

  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* 360px & Below (Compact Mobile) */
@media (max-width: 360px) {
  .logo-title {
    font-size: 1.05rem;
  }

  .hero-tagline {
    font-size: 1.95rem;
  }

  .container {
    padding: 0 16px;
  }
}
