/* ================================================
   RESPONSIVE CSS - Mobile First Approach
   Bootstrap 5 Compatible Breakpoints
   ================================================ */

/* Mobile First - Base Styles (up to 575px) */
@media (max-width: 575.98px) {
  /* Typography adjustments for mobile */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.60rem;
  }
  
  h3 {
    font-size: 1.40rem;
  }
  
  .navbar-brand {
    font-size: 1.38rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 100vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  /* Section padding mobile */
  .section {
    padding: 2rem 0;
  }
  
  /* Service items mobile */
  .service-item {
    padding: 1.5rem;
    margin-bottom: 1.69rem;
  }
  
  /* Team photos mobile */
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Pricing plans mobile */
  .pricing-plan.featured {
    transform: none;
  }
  
  /* Process steps mobile */
  .process-step {
    padding: 1rem;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  
  /* Gallery mobile */
  .gallery-item img {
    height: 200px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 2.37rem;
  }
  
  h2 {
    font-size: 1.86rem;
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  .service-item {
    padding: 1.75rem;
  }
  
  .team-photo {
    width: 175px;
    height: 175px;
  }
  
  .gallery-item img {
    height: 225px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 85vh;
  }
  
  .service-item {
    padding: 1.875rem;
  }
  
  .team-photo {
    width: 185px;
    height: 185px;
  }
  
  .gallery-item img {
    height: 240px;
  }
  
  /* Show decorative shapes on tablet+ */
  .hero-section::before,
  .hero-section::after {
    display: block;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .service-item {
    padding: 2rem;
  }
  
  .team-photo {
    width: 200px;
    height: 200px;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .pricing-plan.featured {
    transform: scale(1.03);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .service-item {
    padding: 2rem;
  }
  
  .team-photo {
    width: 220px;
    height: 220px;
  }
  
  .gallery-item img {
    height: 280px;
  }
  
  .pricing-plan.featured {
    transform: scale(1.05);
  }
}

/* Navigation responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    border-radius: 8px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 7px 6px rgba(0, 0, 0, 0.1);
  }
}

/* Footer responsive */
@media (max-width: 767.98px) {
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  footer .row > div {
    margin-bottom: 1.60rem;
  }
}

/* Form responsive */
@media (max-width: 575.98px) {
  .contact-form .form-control {
    padding: 0.625rem;
  }
  
  .btn-primary {
    padding: 0.625rem 1.5rem;
    width: 100%;
  }
}

/* Cards responsive */
@media (max-width: 767.98px) {
  .review-card,
  .faq-card,
  .case-study,
  .blog-item {
    padding: 1.25rem;
  }
}

/* Timeline responsive */
@media (max-width: 575.98px) {
  .timeline-item {
    padding: 1.25rem;
    border-left: 3px solid var(--primary-blush);
  }
}

/* Core info responsive */
@media (max-width: 767.98px) {
  .core-info-item {
    padding: 1.25rem;
  }
}

/* Career items responsive */
@media (max-width: 767.98px) {
  .career-item {
    padding: 1.25rem;
  }
}

/* Utility classes for responsive display */
.d-mobile-block {
  display: block;
}

.d-mobile-none {
  display: none;
}

@media (min-width: 768px) {
  .d-mobile-block {
    display: none;
  }
  
  .d-mobile-none {
    display: block;
  }
}

/* Responsive spacing utilities */
@media (max-width: 575.98px) {
  .py-mobile-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .my-mobile-2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

/* Print styles */
@media print {
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  .service-item,
  .review-card,
  .faq-card,
  .case-study,
  .blog-item {
    box-shadow: none;
    border: 1px solid var(--neutral-light);
  }
  
  .btn-primary,
  .btn-secondary {
    background: transparent;
    color: var(--neutral-dark);
    border: 1px solid var(--neutral-dark);
  }
} 

.hero-section h1 {
    padding-top: 125px;
}