/* Responsive Styles - Mobile First Approach */

/* Mobile Specific Rules */
@media (max-width: 767.98px) {
  /* Disable animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Section padding adjustments */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 90vh;
    text-align: center;
  }
  
  .hero-blob-1,
  .hero-blob-2 {
    display: none;
  }
  
  /* Service cards stack */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Team cards adjustments */
  .team-photo {
    height: 200px;
  }
  
  .team-info {
    padding: 1rem;
  }
  
  /* Contact form adjustments */
  .contact-form,
  .contact-info {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Process steps mobile */
  .process-step {
    padding: 1.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.25rem;
  }
  
  /* Gallery adjustments */
  .gallery-image {
    height: 200px;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-section {
    min-height: 95vh;
  }
  
  .service-card,
  .team-card,
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 2.5rem;
  }
}

/* Desktop and Larger */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  /* Enhanced hover effects for larger screens */
  .service-card:hover,
  .team-card:hover,
  .blog-card:hover {
    transform: translateY(-8px);
  }
  
  /* Better spacing for larger screens */
  .section-padding {
    padding: 6rem 0;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-blob-1 {
    width: 400px;
    height: 400px;
  }
  
  .hero-blob-2 {
    width: 300px;
    height: 300px;
  }
}

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

/* Print Styles */
@media print {
  .hero-shapes,
  .hero-blob,
  .navbar,
  .footer {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    background: white !important;
    color: black !important;
  }
  
  * {
    box-shadow: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Accessibility - High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-green: #00cc44;
    --primary-blue: #0066cc;
    --primary-purple: #6633cc;
    --primary-red: #cc0000;
    --primary-orange: #cc6600;
    
    --dark-bg: #000000;
    --light-bg: #ffffff;
    --text-light: #ffffff;
    --text-dark: #000000;
    --border-light: #cccccc;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .faq-card,
  .blog-card {
    border: 2px solid var(--text-dark);
  }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-blob,
  .service-card,
  .team-card,
  .blog-card,
  .gallery-item {
    animation: none !important;
    transition: none !important;
  }
  
  .service-card:hover,
  .team-card:hover,
  .blog-card:hover {
    transform: none !important;
  }
}

/* Dark Mode Support */

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