/* E-bike Battery Rental - Responsive CSS */

/* Mobile First Approach */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
    padding-top: 250px;
}
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section {
    text-align: center;
    padding: 4rem 0;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .service-card,
  .feature-card,
  .team-card {
    margin-bottom: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .team-photo {
    height: 200px;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
    padding-top: 250px;
}
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.75rem;
    padding-top: 250px;
}
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .process-card,
  .timeline-card {
    margin-bottom: 2rem;
  }
  
  .team-card {
    margin-bottom: 2rem;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section .row {
    align-items: center;
  }
  
  .hero-title {
    font-size: 3rem;
    padding-top: 250px;
}
  
  .section-title {
    font-size: 2.5rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
    padding-top: 250px;
}
  
  .section-title {
    font-size: 3rem;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-green: #000;
    --primary-blue: #000;
    --text-dark: #000;
    --text-light: #333;
  }
  
  .card,
  .service-card,
  .feature-card {
    border: 2px solid #000;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero-section,
  .service-card,
  .feature-card,
  .team-card {
    transition: none;
  }
  
  .hero-section::before {
    animation: none;
  }
}

/* Dark mode preference (optional) */