/* Responsive CSS for Mobile Optimization */

/* Mobile First Approach */
@media (max-width: 576px) {
  /* Typography Mobile */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  /* Navbar Mobile */
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-section .container {
    padding: 0 1rem;
  }
  
  /* Buttons Mobile */
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* Cards Mobile */
  .card {
    margin-bottom: 1.5rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  /* Price Value Mobile */
  .price-value {
    font-size: 2rem;
  }
  
  /* Process Number Mobile */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  /* Timeline Mobile */
  .timeline-item {
    padding-left: 2rem;
  }
  
  /* Team Cards Mobile */
  .team-card img {
    width: 100px;
    height: 100px;
  }
  
  /* Service Icon Mobile */
  .service-icon {
    font-size: 2.5rem;
  }
  
  /* Core Info Icon Mobile */
  .core-info-icon {
    font-size: 2rem;
  }
  
  /* Contact Info Mobile */
  .contact-info {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-info-item i {
    font-size: 1.2rem;
  }
  
  /* Gallery Mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Blog Cards Mobile */
  .blog-card img {
    height: 150px;
  }
  
  /* Section Padding Mobile */
  .section {
    padding: 3rem 0;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer h5 {
    font-size: 1.1rem;
  }
}

/* Tablet Portrait */
@media (min-width: 577px) and (max-width: 768px) {
  /* Hero Section Tablet */
  .hero-section {
    min-height: 80vh;
  }
  
  /* Typography Tablet */
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  /* Process Number Tablet */
  .process-number {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
  
  /* Team Cards Tablet */
  .team-card img {
    width: 110px;
    height: 110px;
  }
  
  /* Gallery Tablet */
  .gallery-item img {
    height: 220px;
  }
  
  /* Section Padding Tablet */
  .section {
    padding: 4rem 0;
  }
}

/* Tablet Landscape / Small Desktop */
@media (min-width: 769px) and (max-width: 992px) {
  /* Hero Section */
  .hero-section {
    min-height: 90vh;
  }
  
  /* Cards */
  .card-body {
    padding: 1.8rem;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 1.8rem;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 230px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  /* Hero Section */
  .hero-section {
    min-height: 100vh;
  }
  
  /* Typography Large */
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  /* Process Number Large */
  .process-number {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }
  
  /* Team Cards Large */
  .team-card img {
    width: 140px;
    height: 140px;
  }
  
  /* Service Icon Large */
  .service-icon {
    font-size: 3.5rem;
  }
  
  /* Core Info Icon Large */
  .core-info-icon {
    font-size: 3rem;
  }
  
  /* Gallery Large */
  .gallery-item img {
    height: 280px;
  }
  
  /* Section Padding Large */
  .section {
    padding: 6rem 0;
  }
}

/* NO ANIMATIONS ON MOBILE - Critical Requirement */
@media (max-width: 768px) {
  /* Disable all animations on mobile */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Disable hover effects on mobile */
  .card:hover,
  .gallery-item:hover img,
  .blog-card:hover,
  .btn:hover {
    transform: none !important;
    box-shadow: initial !important;
  }
  
  /* Remove sal.js animations on mobile */
  [data-sal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-purple: #360b8c;
    --primary-coral: #e31f1d;
    --primary-mint: #0a635f;
    --primary-lavender: #5220a6;
    --primary-peach: #ff5c00;
    --text-dark: #000000;
    --text-light: #363636;
  }
  
  .card {
    border: 2px solid var(--text-dark);
  }
  
  .btn {
    border-width: 2px;
  }
}

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

/* Print Styles */
@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .hero-section::before {
    display: none !important;
  }
  
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }
  
  .card {
    border: 1px solid #eee0df !important;
    break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
} 

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