/* Responsive CSS for mobile and tablet devices */

/* Tablet styles */
@media (max-width: 992px) {
  :root {
    --section-padding: 3rem 0;
    --card-padding: 1.5rem;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section::before {
    width: 80%;
    top: -30%;
  }
  
  .navbar-brand {
    font-size: var(--font-size-base);
  }
  
  h1 {
    font-size: var(--font-size-xl);
  }
  
  h2 {
    font-size: var(--font-size-lg);
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .price-card.featured {
    transform: none;
    margin-top: 1rem;
  }
  
  .timeline-card::before {
    display: none;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Disable all Sal.js animations on mobile */
  [data-sal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  
  :root {
    --section-padding: 2rem 0;
    --card-padding: 1rem;
    --font-size-small: 0.85rem;
    --font-size-base: 0.9rem;
    --font-size-lg: 1rem;
    --font-size-xl: 1.1rem;
    --font-size-xxl: 1.25rem;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-section::before {
    display: none;
  }
  
  .navbar-brand {
    font-size: var(--font-size-small);
  }
  
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
  
  h1 {
    font-size: var(--font-size-lg);
  }
  
  h2 {
    font-size: var(--font-size-base);
  }
  
  h3 {
    font-size: var(--font-size-small);
  }
  
  .service-card i {
    font-size: 2rem;
  }
  
  .feature-card i {
    font-size: 1.62rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .price-card .price {
    font-size: 2rem;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1.01rem;
  }
  
  .gallery-image {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  .review-card::before {
    font-size: 3rem;
    top: -5px;
    left: 15px;
  }
  
  .contact-form .form-control {
    padding: 0.5rem;
  }
  
  .contact-form .btn {
    padding: 0.5rem 1.5rem;
    width: 100%;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .coreinfo-card i {
    font-size: 1.55rem;
  }
}

/* Extra small mobile */
@media (max-width: 576px) {
  :root {
    --section-padding: 1.5rem 0;
    --card-padding: 0.75rem;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  .custom-card {
    margin-bottom: 1rem;
  }
  
  .price-card .price {
    font-size: 1.58rem;
  }
  
  .service-card i {
    font-size: 1.54rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .process-number {
    width: 35px;
    height: 35px;
    font-size: 0.94rem;
  }
  
  .gallery-image {
    height: 150px;
  }
  
  .timeline-card {
    margin-bottom: 1rem;
  }
  
  .faq-card {
    margin-bottom: 0.75rem;
  }
  
  .review-card::before {
    font-size: 2.61rem;
  }
}

/* Utility classes for responsive spacing */
@media (max-width: 768px) {
  .mb-mobile-2 { margin-bottom: 0.59rem; }
  .mb-mobile-3 { margin-bottom: 1rem; }
  .mb-mobile-4 { margin-bottom: 1.57rem; }
  .mb-mobile-5 { margin-bottom: 3rem; }
  
  .mt-mobile-2 { margin-top: 0.66rem; }
  .mt-mobile-3 { margin-top: 1rem; }
  .mt-mobile-4 { margin-top: 1.64rem; }
  .mt-mobile-5 { margin-top: 3rem; }
  
  .p-mobile-2 { padding: 0.5rem; }
  .p-mobile-3 { padding: 1rem; }
  .p-mobile-4 { padding: 1.5rem; }
} 

.hero-content {
    padding-top: 250px;
}