/* Mobile First Responsive Design */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-blob-1,
  .hero-blob-2 {
    display: none;
  }
  
  .section-padding {
    padding: 1.5rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-study-card {
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .team-image {
    height: 200px;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .blog-image {
    height: 150px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 75vh;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .hero-blob-1 {
    width: 200px;
    height: 200px;
  }
  
  .hero-blob-2 {
    width: 150px;
    height: 150px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 85vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card:hover,
  .case-study-card:hover,
  .blog-card:hover {
    transform: translateY(-3px);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-blob-1 {
    width: 400px;
    height: 400px;
  }
  
  .hero-blob-2 {
    width: 250px;
    height: 250px;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  /* Disable animations on mobile for better performance */
  .service-card:hover,
  .case-study-card:hover,
  .blog-card:hover,
  .career-card:hover {
    transform: none;
  }
  
  /* Simplified cards on mobile */
  .price-card.featured {
    transform: none;
    border-width: 3px;
  }
  
  /* Stack elements vertically */
  .row > .col-md-6,
  .row > .col-lg-4,
  .row > .col-lg-6 {
    margin-bottom: 1rem;
  }
  
  /* Adjust spacing for mobile */
  .process-step {
    margin-bottom: 2rem;
  }
  
  .timeline-item {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
  
  .timeline-item::before {
    left: -6px;
    width: 10px;
    height: 10px;
  }
  
  /* Mobile navigation adjustments */
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
  }
}

/* High contrast and accessibility */
@media (prefers-contrast: high) {
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-study-card,
  .blog-card,
  .contact-form {
    border: 2px solid var(--dark-color);
  }
  
  .btn-primary {
    border-width: 2px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .contact-form,
  .btn {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    box-shadow: none;
    border: 1px solid #000;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 60vh;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
} 

body {
    overflow-x: hidden;
}

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