/* Anti-Corrosion & Protection Treatments - Responsive Stylesheet
   Created: April 2025
*/

/* Extra Large Devices (>1400px) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-content {
    padding-left: 0;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
}

/* Large Devices (992px - 1399px) */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .hero h1 {
    font-size: 3.25rem;
  }
  
  .priceplan-item {
    padding: 2.5rem 1.5rem;
  }
}

/* Medium Devices (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero {
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 6rem 1rem 2rem;
  }
  
  .hero-bg {
    position: relative;
    width: 100%;
    height: 50vh;
    margin-top: 2rem;
  }
  
  .services-item-image {
    height: 200px;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .team-member-image img {
    height: 300px;
  }
  
  .about-image {
    margin-bottom: 3rem;
  }
  
  .about-image:before,
  .about-image:after {
    display: none;
  }
}

/* Small Devices (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero {
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 6rem 1rem 2rem;
  }
  
  .hero-bg {
    position: relative;
    width: 100%;
    height: 40vh;
    margin-top: 2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .services-item-image {
    height: 180px;
  }
  
  .priceplan-item {
    padding: 2rem 1.5rem;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .team-member-image img {
    height: 280px;
  }
  
  .about-image {
    margin-bottom: 3rem;
  }
  
  .about-image:before,
  .about-image:after {
    display: none;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

/* Extra Small Devices (<576px) */
@media (max-width: 575.98px) {
  .hero {
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 5rem 1rem 2rem;
  }
  
  .hero-bg {
    position: relative;
    width: 100%;
    height: 40vh;
    margin-top: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  .services-item-image {
    height: 160px;
  }
  
  .services-item-content {
    padding: 1.5rem;
  }
  
  .priceplan-item {
    padding: 2rem 1.25rem;
  }
  
  .priceplan-item-price {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .team-member-image img {
    height: 250px;
  }
  
  .about-image {
    margin-bottom: 3rem;
  }
  
  .about-image:before,
  .about-image:after {
    display: none;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .coreinfo-item-title,
  .coreinfo-item-desc {
    padding-left: 0;
  }
  
  .coreinfo-item-title:before {
    display: none;
  }
}

/* Custom Breakpoint for Improved Menu Experience */
@media (max-width: 991.98px) {
  header .navbar-brand {
    font-size: 1.25rem;
  }
  
  header .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
  }
  
  header .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: var(--base-radius);
    box-shadow: var(--base-shadow);
    margin-top: 1rem;
  }
  
  header .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  header .nav-link:after {
    display: none;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 999999s;
  }
  
  .fade-up,
  .fade-up.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .services-item:hover,
  .priceplan-item:hover,
  .priceplan-item.featured {
    transform: none;
  }
} 