/* ============================================================
   NovaDent — Responsive Styles
   ============================================================ */

/* Tablet 1024px */
@media(max-width:1024px){
  .hero-grid{grid-template-columns:1fr;text-align:center;gap:40px}
  .hero-desc{margin:0 auto 32px}
  .hero-ctas{justify-content:center}
  .hero-badges{justify-content:center}
  .hero-stats{justify-content:center}
  .hero-visual{max-width:340px;margin:0 auto}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr;text-align:center}
  .about-text{margin:0 auto 28px}
  .about-creds-row{justify-content:center}
  .contact-grid{grid-template-columns:1fr}
  .facilities-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:40px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero-floating-card{display:none}
}

/* Mobile 768px */
@media(max-width:768px){
  .nav-toggle{display:flex}
  .nav-menu{position:fixed;top:0;right:-100%;width:280px;height:100vh;background:var(--white);flex-direction:column;align-items:stretch;padding:100px 24px 32px;gap:4px;box-shadow:-4px 0 40px rgba(0,0,0,0.08);transition:var(--transition);z-index:1000;overflow-y:auto;border-left:1px solid var(--gray-100)}
  .nav-menu.active{right:0}
  .nav-link{padding:14px 16px;font-size:1rem;color:var(--gray-500)}
  .nav-cta{margin:12px 0 0;display:block;text-align:center}
  .section{padding:60px 0}
  .section-header{margin-bottom:40px}
  .hero{padding:60px 0 100px;min-height:auto}
  .hero-stats{gap:24px;flex-wrap:wrap}
  .hero-slider-dots{bottom:60px}
  .services-grid{grid-template-columns:1fr;max-width:400px;margin:0 auto}
  .gallery-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}
  .facilities-grid{grid-template-columns:1fr 1fr}
  .stats-grid{gap:24px}
  .stat-number{font-size:2.2rem}
  .contact-form-wrap{padding:24px}
  .form-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .footer-brand p{margin:0 auto 20px}
  .footer-social{justify-content:center}
  .footer-bottom{flex-direction:column;text-align:center}
  .emergency-content{justify-content:center;text-align:center}
}

/* Small Mobile 480px */
@media(max-width:480px){
  .container{padding:0 16px}
  .hero-ctas{flex-direction:column;align-items:stretch}
  .hero-ctas .btn{justify-content:center}
  .hero-stats{flex-direction:column;align-items:center;gap:16px}
  .facilities-grid{grid-template-columns:1fr;max-width:300px;margin:0 auto}
  .stats-grid{gap:16px}
  .stat-number{font-size:1.8rem}
  .stat-suffix{font-size:1.6rem}
  .modal{max-height:95vh}
  .modal-head{padding:20px 20px 0}
  .modal-body{padding:16px 20px 20px}
  .whatsapp-btn{width:46px;height:46px;font-size:1.3rem;bottom:16px;right:16px}
  .back-top{bottom:16px;left:16px;width:38px;height:38px}
}

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