/* Responsive Styles - Mobile Optimization */

/* Tablet Styles */
@media (max-width: 991.98px) {
  /* Typography adjustments */
  :root {
    --font-size-h1: 2rem;
    --font-size-h2: 1.6rem;
    --font-size-h3: 1.3rem;
  }
  
  /* Section padding */
  section {
    padding: 3rem 0;
  }
  
  /* Hero section */
  .hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero::before {
    width: 300px;
    height: 300px;
  }
  
  /* Service cards */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Process steps */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* Typography for mobile */
  :root {
    --font-size-h1: 1.8rem;
    --font-size-h2: 1.4rem;
    --font-size-h3: 1.2rem;
    --font-size-navbar: 0.9rem;
  }
  
  /* Section spacing */
  section {
    padding: 2.5rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  /* Hero section */
  .hero {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero::before {
    width: 200px;
    height: 200px;
    top: -5%;
    right: -5%;
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: var(--font-size-navbar);
  }
  
  /* Cards spacing */
  .service-card,
  .price-card,
  .review-card,
  .faq-item {
    margin-bottom: 1.5rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Team section */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Feature icons */
  .feature-icon {
    font-size: 2rem;
  }
  
  /* Process numbers */
  .process-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  /* Price amounts */
  .price-amount {
    font-size: 2rem;
  }
  
  /* Footer */
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Gallery spacing */
  .gallery .col-md-4 {
    margin-bottom: 1rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  /* Further reduce typography */
  :root {
    --font-size-h1: 1.6rem;
    --font-size-h2: 1.3rem;
    --font-size-h3: 1.1rem;
  }
  
  /* Tighter spacing */
  section {
    padding: 2rem 0;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  /* Hide decorative elements on very small screens */
  .hero::before {
    display: none;
  }
  
  /* Card padding adjustments */
  .service-card,
  .price-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  /* Button sizing */
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Team photos smaller */
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  /* Process numbers smaller */
  .process-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* Mobile-specific: NO scroll animations */
@media (max-width: 767.98px) {
  /* Disable all scroll-triggered animations on mobile */
  .sal-animate,
  [data-sal],
  [data-sr],
  .sr-element {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Disable hover effects on mobile */
  .service-card:hover,
  .price-card:hover,
  .gallery img:hover {
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-primary: #0c0086;
    --color-primary-light: #d2d0e2;
    --color-accent: #efb010;
    --color-neutral-dark: #000000;
  }
  
  .service-card,
  .price-card,
  .faq-item {
    border-width: 2px;
  }
}

/* Print styles */
@media print {
  /* Hide interactive elements */
  .navbar,
  .contact-form,
  footer {
    display: none !important;
  }
  
  /* Optimize colors for print */
  * {
    background: white !important;
    color: black !important;
  }
  
  /* Ensure readability */
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .service-card,
  .price-card {
    page-break-inside: avoid;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero {
    min-height: 80vh;
  }
  
  section {
    padding: 1.5rem 0;
  }
  
  .section-header {
    margin-bottom: 1.5rem;
  }
} 

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