/* Responsive Design - Mobile First Approach */

/* Large Devices (Desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-max-width);
  }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .service-card,
  .feature-card,
  .team-card {
    margin-bottom: 2rem;
  }
}

/* Small Devices (Landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-shape {
    display: none;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* Extra Small Devices (Portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  :root {
    --section-padding: 40px 0;
  }
  
  body {
    font-size: 14px;
    overflow-x: hidden;
}
  
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  h4 { font-size: 1.1rem; }
  h5 { font-size: 1rem; }
  h6 { font-size: 0.9rem; }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
  
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 14px;
    margin-bottom: 2rem;
  }
  
  .hero-shape {
    display: none;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-description {
    font-size: 14px;
  }
  
  .feature-card,
  .service-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .price-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .process-step {
    padding: 1.5rem;
  }
  
  .timeline-item {
    padding: 1rem 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .faq-card {
    padding: 1rem;
  }
  
  #footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    text-align: center;
  }
}

/* Mobile Menu Animations - Disabled per requirements */
@media (max-width: 767.98px) {
  .navbar-collapse {
    border-top: 1px solid var(--neutral-gray-light);
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  /* Disable animations on mobile per requirements */
  .feature-card:hover,
  .service-card:hover,
  .team-card:hover,
  .review-card:hover,
  .case-card:hover,
  .career-card:hover,
  .blog-card:hover,
  .gallery-item:hover,
  .price-card:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .navbar,
  #footer,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
  }
  
  .section-padding {
    padding: 20pt 0;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-green: #2d5016;
    --primary-green-light: #4a7c59;
    --primary-green-dark: #1a3009;
    
    --secondary-blue: #1e3a8a;
    --secondary-blue-light: #3b82f6;
    --secondary-blue-dark: #1e40af;
    
    --neutral-gray-dark: #000000;
    --background-cream-light: #ffffff;
  }
  
  .feature-card,
  .service-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .price-card,
  .contact-form,
  .blog-card,
  .faq-card {
    border: 2px solid var(--neutral-gray-dark);
  }
}

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  #hero {
    min-height: 90vh;
  }
  
  .section-padding {
    padding: 40px 0;
  }
} 

.hero-content {
    padding-top: 175px;
}