/* Smart Locker Systems - Responsive CSS */
/* Mobile-First Responsive Design */

/* Base Mobile Styles (320px+) */
/* Already covered in main.css with mobile-first approach */

/* Small Mobile (480px+) */
@media (min-width: 480px) {
  .service-card {
    padding: 2.5rem 2rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
}

/* Tablet Portrait (768px+) */
@media (min-width: 768px) {
  :root {
    --section-padding: 5rem 0;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
  }
  
  .hero-section {
    padding: 6rem 0;
  }
  
  .service-card {
    height: 100%;
  }
  
  .team-photo {
    width: 200px;
    height: 200px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1.5rem;
  }
}

/* Tablet Landscape (992px+) */
@media (min-width: 992px) {
  :root {
    --section-padding: 6rem 0;
    --font-size-h1: 3rem;
    --font-size-h2: 2.5rem;
  }
  
  .hero-section {
    padding: 8rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .service-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .section-title {
    margin-bottom: 4rem;
  }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
  :root {
    --section-padding: 8rem 0;
  }
  
  .hero-section {
    padding: 10rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .contact-form {
    padding: 3rem;
  }
  
  .service-card {
    padding: 3rem 2rem;
  }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
  
  .hero-section {
    padding: 12rem 0;
  }
}

/* Mobile Specific Styles */
@media (max-width: 767px) {
  /* No animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .decorative-shape {
    display: none;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-small {
    padding: 2rem 0;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .review-card {
    margin-bottom: 1.5rem;
  }
  
  .faq-card {
    padding: 1rem;
  }
  
  /* Mobile Navigation Adjustments */
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-collapse {
    border-top: 1px solid #e9ecef;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    text-align: center;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .team-photo,
  .service-icon,
  .feature-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .decorative-shape {
    display: none !important;
  }
  
  .section {
    padding: 1rem 0;
    break-inside: avoid;
  }
  
  .service-card,
  .review-card,
  .faq-card,
  .price-card,
  .blog-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #dee2e6;
  }
  
  a {
    text-decoration: underline;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* Landscape Phone Specific */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .gallery-item:hover,
  .blog-card:hover,
  .price-card:hover {
    transform: none;
  }
}

/* Dark Mode Support (Optional for future) */

/* Focus Improvements for Keyboard Navigation */
@media (any-hover: none) {
  .service-card:hover,
  .gallery-item:hover,
  .blog-card:hover,
  .price-card:hover {
    transform: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .service-card,
  .review-card,
  .faq-card,
  .price-card,
  .blog-card,
  .contact-form {
    border: 2px solid;
  }
  
  .btn-primary {
    border-width: 2px;
  }
}

.hero-content {
    padding-top: 150px;
}