/* ==========================================================================
   ACCRUME - RESPONSIVE STYLESHEET
   Description: Overrides and media queries for multi-device support.
   ========================================================================== */

/* Large screens & Desktops */
@media (max-width: 1200px) {
  .hero-headline {
    font-size: 3.25rem;
  }
}

/* Medium Tablets & Laptops */
@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .navbar-toggler-custom {
    display: flex;
  }
  
  .navbar-collapse-custom {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    padding: 100px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .navbar-collapse-custom.active {
    right: 0;
  }
  
  .nav-link-custom {
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
  }
  
  .nav-link-custom::after {
    left: 0;
    right: auto;
    width: 0;
  }
  
  .nav-link-custom:hover::after,
  .nav-link-custom.active::after {
    width: 40px;
  }
  
  .hero-wrapper {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  
  .hero-headline {
    font-size: 2.75rem;
    text-align: center;
  }
  
  .hero-subtext {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    margin-top: 50px;
  }
  
  .floating-card-1 {
    left: -2%;
  }
  
  .floating-card-2 {
    right: -2%;
  }

  /* Process Timeline Responsive */
  .process-timeline::after {
    left: 31px;
  }
  
  .process-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
  }
  
  .process-container::after {
    left: 21px;
    right: auto;
  }
  
  .process-right {
    left: 0%;
  }
  
  .process-right::after {
    left: 21px;
  }
  
  .process-right .process-step-num {
    right: 25px;
    left: auto;
  }
  
  /* Products Tab */
  .product-tab-img-wrapper {
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    min-height: 250px;
  }
  
  .product-tab-info {
    padding: 30px;
  }
  
  .inner-page-title {
    font-size: 2.5rem;
  }
}

/* Portrait Tablets & Large Mobiles */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .stat-box {
    margin-bottom: 30px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form-container {
    flex-direction: column;
  }
  
  .newsletter-input {
    width: 100%;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn-custom {
    width: 100%;
    justify-content: center;
  }
  
  .floating-stats-card {
    padding: 10px 14px;
    gap: 8px;
  }
  
  .floating-card-1 {
    top: 5%;
    left: -4%;
  }
  
  .floating-card-2 {
    bottom: 5%;
    right: -4%;
  }
  
  .floating-card-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .floating-stats-card h4 {
    font-size: 0.9rem;
    margin: 0;
  }
  
  .floating-stats-card p {
    font-size: 0.75rem;
    margin: 0;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .product-tab-info {
    padding: 20px;
  }
  
  .product-tab-title {
    font-size: 1.5rem;
  }
  
  .inner-page-title {
    font-size: 2rem;
  }
}
