/* Mobile First Responsive Design */

/* Tablet Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .about-feature,
  .service-card,
  .feature-item,
  .price-card,
  .team-member {
    padding: 1.5rem;
  }
  
  .service-name {
    font-size: 1.1rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .team-name {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .about-feature,
  .service-card,
  .feature-item,
  .price-card,
  .team-member {
    padding: 1rem;
  }
  
  .service-image {
    height: 150px;
  }
  
  .service-name {
    font-size: 1rem;
  }
  
  .service-price {
    font-size: 1.3rem;
  }
  
  .price-amount {
    font-size: 1.8rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-image {
    height: 180px;
  }
  
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Swiper Responsive Adjustments */
@media (max-width: 768px) {
  .swiper-slide {
    padding: 0 0.5rem;
  }
  
  /* Disable autoplay and effects on mobile */
  .swiper {
    --swiper-autoplay-delay: 0;
  }
  
  .swiper-effect-fade,
  .swiper-effect-cube,
  .swiper-effect-coverflow,
  .swiper-effect-flip {
    --swiper-effect: none;
  }
}

/* Navbar Collapse Adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0,0,0,0.9);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .nav-link {
  font-size: 10px;
    padding: 0.5rem 0;
    margin: 0.25rem 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  #hero,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .section-title {
    font-size: 18pt;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .service-card,
  .price-card,
  .team-member {
    border: 1px solid #ccc;
    padding: 1rem;
    margin-bottom: 1rem;
    page-break-inside: avoid;
  }
  
  .gallery-grid {
    display: none;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-image,
  .team-photo,
  .gallery-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  /* Optional: Add dark mode styles if needed in the future */
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
  #hero {
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section {
    padding: 2rem 0;
  }
} 