/* ==========================================================================
   PICKUP TRUCK FURNITURE MOVERS - RESPONSIVE STYLESHEET
   ========================================================================== */

/* Laptop / Medium Screens (max-width: 1199px) */
@media screen and (max-width: 1199px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 20px;
  }
  
  .hero-quote-card {
    max-width: 600px;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  
  .about-grid {
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Tablets (max-width: 991px) */
@media screen and (max-width: 991px) {
  .top-bar {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 77px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 77px);
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 18px;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-experience-badge {
    position: static;
    margin-top: 20px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .section {
    padding: 70px 0;
  }
}

/* Mobile Devices (max-width: 767px) */
@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

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

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

  .services-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

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

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

  .floating-actions {
    bottom: 20px;
    right: 20px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 42px;
    height: 42px;
  }

  .modal-box {
    padding: 28px 20px;
  }
}

/* Small Mobile (max-width: 479px) */
@media screen and (max-width: 479px) {
  .navbar-brand img {
    height: 44px;
  }

  .section-title {
    font-size: 26px;
  }

  .review-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
