/* Responsive Styles - Mobile Optimization */

/* Tablet Styles */
@media (max-width: 991.98px) {
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Hero section adjustments */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  /* Services grid adjustment */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Price plan featured scaling */
  .price-card.featured {
    transform: none;
  }
  
  /* Team photos size adjustment */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Gallery grid adjustment */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  /* Section padding adjustment */
  .section {
    padding: 3rem 0;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* NO SCROLL ANIMATIONS ON MOBILE */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography for mobile */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  p {
    font-size: 0.9rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-section::before {
    display: none; /* Remove decorative elements on mobile */
  }
  
  /* Navigation mobile */
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    margin: 0;
  }
  
  /* Cards and components */
  .about-feature,
  .service-card,
  .feature-item,
  .price-card,
  .review-card,
  .case-study-card,
  .career-position,
  .contact-form {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* Remove hover effects on mobile */
  .about-feature:hover,
  .service-card:hover,
  .blog-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  /* Process steps mobile */
  .process-step {
    padding: 1rem;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Team photos mobile */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-control {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 0.5rem 0.75rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 0.75rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Section spacing mobile */
  .section {
    padding: 2rem 0;
  }
  
  /* Blog cards mobile */
  .blog-image {
    height: 150px;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  /* FAQ mobile */
  .faq-card {
    padding: 1rem;
  }
  
  /* Price features mobile */
  .price-features {
    font-size: 0.9rem;
  }
  
  .price-value {
    font-size: 2rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  /* Extra small screens */
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  /* Hero section extra small */
  .hero-section {
    min-height: 60vh;
  }
  
  /* Cards extra padding reduction */
  .about-feature,
  .service-card,
  .contact-form {
    padding: 1rem;
  }
  
  /* Team photos extra small */
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  /* Gallery extra small */
  .gallery-item {
    height: 180px;
  }
  
  /* Section spacing extra small */
  .section {
    padding: 1.5rem 0;
  }
  
  /* Footer extra small */
  .footer {
    padding: 1.5rem 0 0.5rem;
  }
  
  /* Price value extra small */
  .price-value {
    font-size: 1.75rem;
  }
  
  /* Service image extra small */
  .service-img {
    height: 150px;
  }
  
  /* Blog image extra small */
  .blog-image {
    height: 120px;
  }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
  /* Extra large screens */
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
  
  /* Hero section large */
  .hero-section {
    min-height: 100vh;
  }
  
  /* Typography large screens */
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  /* Section spacing large */
  .section {
    padding: 5rem 0;
  }
  
  /* Gallery large */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .gallery-item {
    height: 300px;
  }
  
  /* Service images large */
  .service-img {
    height: 250px;
  }
  
  /* Team photos large */
  .team-photo {
    width: 180px;
    height: 180px;
  }
}

/* Print Styles */
@media print {
  /* Hide interactive elements */
  .navbar,
  .btn,
  .contact-form,
  .footer {
    display: none !important;
  }
  
  /* Ensure black text on white background */
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  /* Page breaks */
  .section {
    page-break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --eco-green: #006400;
    --earth-blue: #000080;
    --sunset-coral: #8B0000;
    --nature-yellow: #FFD700;
    --forest-purple: #4B0082;
    --dark-gray: #000000;
  }
  
  .btn-primary {
    border: 2px solid #000000;
  }
  
  .form-control {
    border: 2px solid #000000;
  }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-section::before {
    display: none;
  }
}


body {
    overflow-x: hidden;
}

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