/* Responsive CSS - Mobile Adaptations */

/* Tablet Styles */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
    padding: 60px 0;
    text-align: center;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* NO ANIMATIONS ON MOBILE - Disable all scroll animations */
  /* .sal-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  } */
  
  /* Typography adjustments */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  p, .lead {
    font-size: 0.95rem;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: 70vh;
    padding: 40px 0;
    text-align: center;
  }
  
  .hero-section::before {
    display: none; /* Remove decorative shapes on mobile */
  }
  
  /* Section Spacing */
  .section-padding {
    padding: 40px 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  /* Navigation Mobile */
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-collapse {
    background-color: var(--primary-cream-white);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-beige);
  }
  
  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  
  /* Cards Mobile */
  .card {
    margin-bottom: 1.5rem;
  }
  
  .card-body {
    padding: 1.5rem;
    overflow-x: hidden;
}
  
  /* Service Cards Mobile */
  .service-card {
    margin-bottom: 2rem;
  }
  
  .service-price {
    font-size: 1.75rem;
  }
  
  /* Team Mobile */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  /* Process Steps Mobile */
  .process-step {
    margin-bottom: 2rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.25rem;
  }
  
  /* Timeline Mobile */
  .timeline-item {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .form-control {
    padding: 0.75rem;
  }
  
  /* Buttons Mobile */
  .btn {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
  }
  
  .btn:last-child {
    margin-bottom: 0;
  }
  
  /* Gallery Mobile */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Blog Mobile */
  .blog-image {
    height: 180px;
  }
  
  /* Price Plans Mobile */
  .price-plan {
    margin-bottom: 2rem;
  }
  
  .price-plan.featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .price {
    font-size: 2rem;
  }
  
  /* Footer Mobile */
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  .footer .col-md-3,
  .footer .col-md-4 {
    margin-bottom: 2rem;
  }
  
  /* FAQ Mobile */
  .faq-card {
    margin-bottom: 1rem;
  }
  
  /* Utility Classes for Mobile */
  .mobile-center {
    text-align: center;
  }
  
  .mobile-spacing {
    margin-bottom: 1rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 575.98px) {
  /* Extra small adjustments */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 30px 0;
  }
  
  .section-padding {
    padding: 30px 0;
  }
  
  .contact-form {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  .blog-image {
    height: 150px;
  }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 20px 0;
  }
  
  .section-padding {
    padding: 30px 0;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure images and borders look crisp on retina displays */
  .card {
    border-radius: 14px; /* Slightly adjusted for crisp rendering */
  }
  
  .btn-primary {
    border-radius: 24px; /* Slightly adjusted for crisp rendering */
  }
  
  .form-control {
    border-radius: 9px; /* Slightly adjusted for crisp rendering */
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .section-padding {
    padding: 20px 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
  
  .gallery-item {
    page-break-inside: avoid;
  }
}


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