/* Responsive Design */

/* Large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  h1 {
    font-size: 3rem;
  }
}

/* Tablet Landscape */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-blob-1,
  .hero-blob-2 {
    display: none;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .price-highlight {
    transform: none;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
}

/* Tablet Portrait */
@media (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .service-card:hover,
  .feature-card:hover,
  .team-card:hover,
  .price-card:hover {
    transform: none;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .contact-form {
    margin: 1rem 0;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 1.5rem 0;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  .timeline-item::before {
    width: 8px;
    height: 8px;
  }
  
  .timeline-item::after {
    left: 3px;
    width: 1px;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .blog-card img {
    height: 150px;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .hero-section {
    min-height: 50vh;
  }
  
  .section-padding {
    padding: 1.5rem 0;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .card-body {
    padding: 0.75rem;
  }
}

/* Disable animations on mobile for performance and accessibility */
@media (max-width: 767.98px) {
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .price-card,
  .blog-card,
  .gallery-item img {
    transition: none;
  }
  
  .service-card:hover,
  .feature-card:hover,
  .team-card:hover,
  .price-card:hover,
  .blog-card:hover {
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .card,
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .price-card,
  .faq-card,
  .blog-card {
    border: 2px solid #000;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .contact-form,
  .btn {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    page-break-inside: avoid;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .card {
    page-break-inside: avoid;
    break-inside: avoid;
  }
} 

.hero-section h1 {
    padding-top: 275px;
}