/* ================================================================
   VAKSON — RESPONSIVE STYLES
   ================================================================ */

/* ---- Large Desktop (1400px+) ---- */
@media (min-width: 1400px) {
  .hero-headline { font-size: 4.5rem; }
}

/* ---- Tablet & Small Desktop (768px - 1199px) ---- */
@media (max-width: 1199px) {
  :root { --section-pad: 5.5rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .cta-border-box { padding: 3rem 2.5rem; }
}

/* ---- Tablet (768px - 991px) ---- */
@media (max-width: 991px) {
  :root { --section-pad: 4.5rem; }

  .hero-content {
    padding-top: 7rem;
    padding-bottom: 4rem;
    text-align: center;
  }

  .hero-sub { max-width: 100%; }
  .hero-cta-group { justify-content: center; }

  .hero-stats {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    max-width: 540px;
    margin: 0 auto;
  }

  .about-img-wrapper img { height: 380px; }
  .about-experience-badge {
    bottom: -1rem;
    right: -0.5rem;
  }

  .service-detail-card {
    flex-direction: column;
    gap: 1.25rem;
  }

  .service-detail-icon { width: 60px; height: 60px; font-size: 1.5rem; }
}

/* ---- Mobile (up to 767px) ---- */
@media (max-width: 767px) {
  :root { --section-pad: 3.5rem; }

  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 0.97rem; }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }

  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.65rem; }

  .hero-img-wrapper img { height: 240px; }

  .about-img-wrapper img { height: 300px; }
  .about-experience-badge {
    position: relative;
    display: inline-block;
    bottom: auto; right: auto;
    margin-top: 1rem;
    animation: none;
  }

  .cta-border-box { padding: 2.5rem 1.5rem; }

  .footer-desc { max-width: 100%; }

  .testimonial-card { padding: 2rem 1.5rem; }

  .contact-form-wrapper { padding: 1.75rem; }

  .service-detail-card { padding: 1.75rem; }

  .page-hero { padding: 7rem 0 3.5rem; }

  .timeline { padding-left: 1.5rem; }
  .timeline-item::before { left: -1.92rem; }
}

/* ---- Small Mobile (up to 480px) ---- */
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .btn-lg { padding: 0.8rem 1.5rem; font-size: 0.92rem; }
  .navbar-brand img { height: 36px; }
}

/* ---- Accessibility: Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}
