/* ===== RESPONSIVE STYLES ===== */

/* Mobile First - Base Styles */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .case-card,
  .blog-card,
  .gallery-item {
    transform: none !important;
    transition: none !important;
  }
  
  .service-card:hover,
  .feature-card:hover,
  .price-card:hover,
  .team-card:hover,
  .case-card:hover,
  .blog-card:hover,
  .gallery-item:hover {
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  /* Section padding mobile */
  .section-padding {
    padding: 40px 0;
  }
  
  /* Cards mobile spacing */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-card,
  .timeline-card,
  .career-card,
  .core-card,
  .blog-card,
  .faq-card {
    margin-bottom: 20px;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 20px;
    margin: 0 15px;
  }
  
  /* Team images mobile */
  .team-image {
    width: 120px;
    height: 120px;
  }
  
  /* Price value mobile */
  .price-value {
    font-size: 2rem;
  }
  
  /* Process number mobile */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .contact-form {
    padding: 30px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-decorative {
    width: 150px;
    height: 150px;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .contact-form {
    padding: 35px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-decorative {
    width: 200px;
    height: 200px;
  }
  
  /* Featured price card scaling */
  .price-card.featured {
    transform: scale(1.05);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-decorative {
    width: 250px;
    height: 250px;
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .hero-decorative,
  .navbar,
  footer {
    display: none !important;
  }
  
  .section-padding {
    padding: 20px 0 !important;
  }
  
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-card,
  .timeline-card,
  .career-card,
  .core-card,
  .blog-card,
  .faq-card {
    border: 2px solid var(--primary-charcoal) !important;
  }
  
  .btn-primary {
    border: 2px solid var(--primary-charcoal) !important;
  }
}

/* ===== DARK MODE SUPPORT ===== */

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