/* Responsive Design */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.52rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-title {
    font-size: 2.64rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .service-card,
  .price-card,
  .team-card {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.87rem;
  }
  
  .hero-section {
    padding: 1.5rem 0;
    min-height: 80vh;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .hero-desc {
    font-size: 0.98rem;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 1.58rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  .hero-title {
    font-size: 1.83rem;
  }
  
  .section-title {
    font-size: 1.64rem;
  }
  
  .hero-section {
    padding: 1rem 0;
    min-height: 70vh;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 0.94rem;
  }
  
  .section-desc {
    font-size: 1.00rem;
  }
  
  .navbar-brand {
    font-size: 1.27rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 1.00rem;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1.67rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.625rem 1.5rem;
    font-size: 0.96rem;
  }
  
  .service-image {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon {
    font-size: 2.60rem;
  }
  
  .price-amount {
    font-size: 1.53rem;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  .blog-image {
    height: 150px;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .faq-card {
    padding: 1rem;
  }
}

/* Extra responsive adjustments */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.59rem;
  }
  
  .section-title {
    font-size: 1.27rem;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    padding: 1rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .service-image {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 1.56rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
  }
}

/* Print styles */
@media print {
  .hero-section::before {
    display: none;
  }
  
  .navbar,
  .footer {
    display: none;
  }
  
  .section {
    padding: 20px 0;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    break-inside: avoid;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .hero-section {
    background: #ffffff;
  }
  
  .hero-section::before {
    display: none;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    border: 2px solid #000000;
  }
  
  .btn-primary,
  .btn-secondary {
    border: 2px solid #000000;
  }
} 

.hero-content {
    padding-top: 100px;
}