/* Responsive CSS - Mobile-First Approach */
/* Electric Vehicle Charging Station Template */

/* Mobile Base Styles (up to 576px) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-section::before {
    display: none;
  }
  
  /* Typography Mobile */
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-description {
    font-size: 0.875rem;
  }
  
  /* Button Mobile */
  .btn-primary-custom,
  .btn-outline-custom {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  /* Service Cards Mobile */
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  /* Feature Items Mobile */
  .feature-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Price Plan Mobile */
  .price-plan-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .price-plan-card.featured {
    transform: none;
  }
  
  .plan-price {
    font-size: 2rem;
  }
  
  /* Team Cards Mobile */
  .team-photo {
    height: 200px;
  }
  
  .team-info {
    padding: 1rem;
  }
  
  /* Review Cards Mobile */
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* FAQ Mobile */
  .faq-card {
    padding: 1rem;
  }
  
  /* Process Steps Mobile */
  .process-step {
    padding: 1rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Contact Form Mobile */
  .contact-form,
  .contact-info {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-info-icon {
    width: 35px;
    height: 35px;
  }
  
  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  /* Section Padding Mobile */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Navbar Mobile */
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  /* Blog Cards Mobile */
  .blog-image {
    height: 150px;
  }
  
  .blog-content {
    padding: 1rem;
  }
}

/* Small Tablets (576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 85vh;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .btn-primary-custom,
  .btn-outline-custom {
    width: auto;
    display: inline-block;
  }
}

/* Medium Tablets (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-photo {
    height: 220px;
  }
}

/* Large Tablets/Small Laptops (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-photo {
    height: 240px;
  }
}

/* Large Screens (1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .section-padding {
    padding: 6rem 0;
  }
}

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
  
  .section-padding {
    padding: 7rem 0;
  }
}

/* Print Styles */
@media print {
  .hero-section {
    min-height: auto;
    background: white !important;
  }
  
  .service-card,
  .review-card,
  .faq-card,
  .case-study-card,
  .career-card,
  .team-card,
  .blog-card {
    box-shadow: none !important;
    border: 1px solid #ddd;
  }
  
  .btn-primary-custom,
  .btn-outline-custom {
    display: none;
  }
  
  .footer-section {
    background: white !important;
    color: black !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .service-card,
  .review-card,
  .faq-card,
  .case-study-card,
  .career-card,
  .team-card,
  .blog-card {
    border: 2px solid #000;
  }
  
  .btn-primary-custom {
    border: 2px solid #000;
  }
  
  .section-title,
  .section-subtitle {
    color: #000;
  }
}

/* Dark Mode Support */

/* Focus States for Accessibility */
.btn-primary-custom:focus,
.btn-outline-custom:focus,
.form-control:focus,
.form-select:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* Hover States for Desktop Only */
@media (hover: hover) {
  .service-card:hover,
  .team-card:hover,
  .blog-card:hover {
    transform: translateY(-5px);
  }
  
  .btn-primary-custom:hover {
    transform: translateY(-2px);
  }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 60vh;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
} 

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