/* RESPONSIVE STYLES */

@media (max-width: 1100px) {
  .about-container {
    gap: 40px;
  }
  
  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Mobile Menu Styles */ 
  
  .menu-icon {
    display: flex;
  }
  
  .nav-links {
    display: none;
  }

  /* Hero Section Mobile */
  .hero {
    height: 70vh;
    margin: 10px;
    border-radius: 16px;
  }
  
  .navbar {
    padding: 20px 25px;
  }
  
  .logo img {
    height: 45px;
  }
  
  .hero-content {
    left: 25px;
    right: 25px;
    max-width: calc(100% - 50px);
  }
  
  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 12px;
  }
  
  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  .btn {
    padding: 12px 28px;
    font-size: 15px;
  }

  /* About Section Adjustments */
  .about-section {
    margin: 40px 10px;
    padding: 40px 25px;
    border-radius: 16px;
  }
  
  .about-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .about-text {
    font-size: 16px;
    line-height: 1.7;
  }
  
  .about-feature {
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .about-feature i {
    font-size: 22px;
  }
  
  .about-highlight {
    padding: 30px 25px;
    border-radius: 16px;
  }
  
  .about-highlight h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .about-highlight p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Footer Adjustments */
  footer {
    padding: 50px 20px 25px;
    margin-top: 50px;
  }
  
  .footer-brand img {
    height: 40px;
  }
  
  .footer-contact p,
  .footer-brand p {
    font-size: 14px;
  }
  
  .footer-bottom {
    margin-top: 30px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }
  
  .about-section {
    padding: 30px 20px;
  }
  
  .about-feature {
    flex-direction: column;
    gap: 10px;
  }
  
  .about-feature i {
    margin-top: 0;
  }
  
  .mobile-nav {
    gap: 15px;
  }
  
  .mobile-nav a {
    font-size: 18px;
    padding: 10px 20px;
  }
}

/* FIX HORIZONTAL SCROLL ON PAGE LOAD */
@media (max-width: 1200px) {
  .services-track {
    min-width: auto !important;
    width: 100% !important;
  }
  
  .services-container {
    overflow: hidden !important;
    width: 100% !important;
  }
  
  .contact-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Prevent overflow on all screen sizes */
body, html {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

.services-section {
  overflow: hidden !important;
}

.services-container {
  overflow: hidden !important;
}