/* ===== RESPONSIVE STYLES - MOBILE OPTIMIZATION ===== */
/* Bootstrap 5 Responsive Utilities - NO CUSTOM GRID OVERRIDES */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  /* Typography Mobile */
  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Navigation Mobile */
  .navbar-brand {
    font-size: 0.95rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Card Spacing Mobile */
  .card {
    margin-bottom: 1rem;
  }
  
  .card-body {
    padding: 1rem;
    overflow-x: hidden;
}
  
  /* Service Cards Mobile */
  .service-card {
    padding: 1.5rem 1rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Team Section Mobile */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  /* Button Mobile */
  .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  /* Process Steps Mobile */
  .process-step {
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .process-number {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8rem;
  }
  
  /* Timeline Mobile */
  .timeline-item {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Section Padding Mobile */
  .section-padding {
    padding: 1.5rem 0;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 75vh;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card {
    padding: 1.75rem 1.25rem;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 85vh;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-decorative {
    width: 150px;
    height: 150px;
    top: 25%;
    right: 8%;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-decorative {
    width: 180px;
    height: 180px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-decorative {
    width: 200px;
    height: 200px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-decorative {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--dark-green);
  }
  
  .btn-primary {
    border-width: 2px;
  }
  
  .form-control {
    border-width: 3px;
  }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .card:hover {
    transform: none;
  }
}

/* Dark Mode Support */

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .navbar {
    padding: 0.25rem 0;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .card:hover {
    transform: none;
  }
}



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