/* ============================================================
   RESPONSIVE.CSS — Media Queries
   ============================================================ */

/* === XX-Large (≥1400px) === */
@media (max-width: 1400px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

/* === X-Large (≥1200px) === */
@media (max-width: 1199.98px) {
  .section {
    padding: 80px 0;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-stats {
    gap: 25px;
  }
}

/* === Large (≥992px) === */
@media (max-width: 991.98px) {
  .section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .hero-visual {
    display: none !important;
  }
  .about-experience-badge {
    width: 90px;
    height: 90px;
    right: -10px;
    bottom: -10px;
  }
  .badge-number {
    font-size: 1.4rem;
  }
  .service-category-card {
    padding: 22px;
  }
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
  .equipment-benefits {
    padding: 30px 20px;
  }
  .contact-form-wrapper {
    padding: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* === Medium (≥768px) === */
@media (max-width: 767.98px) {
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .section-text {
    font-size: 0.95rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }
  .hero-stats {
    justify-content: center;
    gap: 30px;
  }
  .about-experience-badge {
    width: 80px;
    height: 80px;
    right: -8px;
    bottom: -8px;
  }
  .badge-number {
    font-size: 1.2rem;
  }
  .badge-text {
    font-size: 0.6rem;
  }
  .service-list {
    gap: 12px;
  }
  .service-item {
    padding: 10px;
  }
  .product-filters {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
  }
  .brand-item {
    padding: 14px 10px;
  }
  .brand-item span {
    font-size: 0.75rem;
  }
  .benefit-item {
    padding: 14px;
  }
  .benefit-item i {
    font-size: 1.3rem;
  }
  .story-image img {
    height: 180px;
  }
  .gallery-item img {
    height: 200px;
  }
  .contact-form-wrapper {
    padding: 20px;
  }
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 24px;
    bottom: 18px;
    right: 18px;
  }
}

/* === Small (≥576px) === */
@media (max-width: 575.98px) {
  #mainNav .navbar-brand img {
    max-height: 35px;
    width: auto;
  }
  .section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-badge {
    font-size: 0.75rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-number {
    font-size: 1.4rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .product-image {
    height: 170px;
  }
  .product-image img {
    height: 110px;
  }
  .equipment-card {
    padding: 22px;
  }
  .equipment-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
  .equipment-title {
    font-size: 1rem;
  }
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-title {
    text-align: center;
  }
  .footer-links {
    text-align: center;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-contact li {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-desc {
    text-align: center;
  }
  .footer-section {
    text-align: center;
  }
}

/* === Extra small devices === */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.4rem;
  }
  .hero-stats {
    gap: 14px;
  }
  .stat-number {
    font-size: 1.2rem;
  }
  .stat-label {
    font-size: 0.65rem;
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-image {
    height: 150px;
  }
}
