/* Responsive Styles */

/* Large screens */
@media (min-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Medium screens */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
  }
}

/* Small screens */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }
  
  .hero-content p {
    font-size: 1rem;
    text-align: center;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  .section-desc {
    font-size: 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .card-body {
    padding: 1.25rem;
  }
  
  .feature-item {
    padding: 1.5rem 1rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  /* Mobile navigation adjustments */
  .navbar-collapse {
    background: white;
    border-radius: 8px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0f0ff;
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-card {
    padding: 1.25rem;
  }
  
  .price-card {
    padding: 1.5rem 1rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .blog-card img {
    height: 150px;
  }
}

/* Mobile-specific overrides for no scroll animations */
@media (max-width: 767.98px) {
  /* Disable animations on mobile for better performance */
  .card:hover {
    transform: none;
  }
  
  .price-card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  /* Ensure touch-friendly interactions */
  .btn, .card, .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-link {
    justify-content: flex-start;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-section::before {
    opacity: 0.2;
  }
  
  .card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
}

/* Print styles */
@media print {
  .navbar, .footer, .btn {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    background: white !important;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #e7d3d5;
  }
}

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