/* Mobile First Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-blob {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  
  /* Section padding adjustments */
  .section-padding {
    padding: 2rem 0;
  }
  
  .section-lg {
    padding: 2.5rem 0;
  }
  
  /* Card adjustments */
  .card-body {
    padding: 1.5rem;
  }
  
  /* Button adjustments */
  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Team photo mobile */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Gallery mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Service icon mobile */
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon i {
    font-size: 1.25rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Hero section tablet */
  .hero-section {
    min-height: 80vh;
  }
  
  /* Section padding adjustments */
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-lg {
    padding: 4rem 0;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.9rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section-lg {
    padding: 4.5rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .section-lg {
    padding: 5rem 0;
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 1.5rem 0;
  }
}

/* High contrast support */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--text-primary);
  }
  
  .btn-primary {
    border-width: 2px;
  }
  
  .form-control {
    border-width: 2px;
  }
}

/* Print styles */
@media print {
  .hero-blob,
  .navbar,
  .footer {
    display: none !important;
  }
  
  body {
    color: black !important;
    background: white !important;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid #cfcfcf !important;
  }
} 

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