/* ========================================
   Responsive CSS - Mobile First Design
   ======================================== */

/* Mobile Specific - No Scroll Animations */
@media (max-width: 768px) {
  /* Disable scroll animations on mobile */
  [data-sal],
  [data-scroll-reveal] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  
  /* Typography Adjustments */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  
  .navbar-brand { font-size: 1.2rem !important; }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-shape {
    display: none; /* Hide decorative shapes on mobile */
  }
  
  /* Section Spacing Mobile */
  section {
    padding: 2.5rem 0;
  }
  
  /* Cards Mobile */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-card,
  .timeline-card,
  .career-card,
  .core-card,
  .faq-card,
  .blog-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Team Photos Mobile */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Gallery Mobile */
  .gallery-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  /* Process Numbers Mobile */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  /* Button Mobile */
  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Hero Section Tablet */
  .hero-section {
    min-height: 90vh;
  }
  
  /* Gallery Tablet */
  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Cards Tablet */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-card,
  .timeline-card,
  .career-card,
  .core-card,
  .faq-card,
  .blog-card {
    padding: 1.8rem;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  /* Hero Section Large */
  .hero-section {
    min-height: 100vh;
  }
  
  /* Gallery Large Desktop */
  .gallery-row {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Service Icons Large */
  .service-icon {
    font-size: 3.5rem;
  }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  /* Section Spacing Extra Large */
  section {
    padding: 5rem 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-shape {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-card,
  .timeline-card,
  .career-card,
  .core-card,
  .faq-card,
  .blog-card {
    border: 1px solid #000;
    page-break-inside: avoid;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #000000;
    --text-secondary: #333333;
    --bg-light: #ffffff;
    --border-color: #000000;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-card,
  .timeline-card,
  .career-card,
  .core-card,
  .faq-card,
  .blog-card {
    border: 2px solid #000000;
  }
}

/* Landscape Phone Orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 60vh;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
}

/* Focus Styles for Accessibility */
@media (any-pointer: fine) {
  .nav-link:focus,
  .btn:focus,
  .form-control:focus {
    outline: 2px solid var(--primary-warm);
    outline-offset: 2px;
  }
} 

.hero-content {
    padding-top: 100px;
}
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
