/* ===========================
   RESPONSIVE STYLES
   ===========================*/

/* Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.25rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
  }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .hero-section {
    min-height: 80vh;
    background-attachment: scroll;
  }
  
  .hero-content {
    text-align: center;
    padding-top: 150px;
}
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  .service-card,
  .team-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .team-card img {
    width: 100px;
    height: 100px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.25rem;
  }
  
  .price-card.featured {
    transform: none;
    margin-top: 1rem;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  /* Timeline mobile styles */
  .timeline-item {
    padding: 1rem;
    margin-bottom: 1rem;
    border-left-width: 3px;
  }
  
  .timeline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .timeline-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
}

/* Tablet Portrait Styles (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .team-card img {
    width: 110px;
    height: 110px;
  }
  
  /* Timeline tablet styles */
  .timeline-item {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
  
  .timeline-item p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .contact-form {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    background: none;
    color: var(--neutral-dark);
    padding: 2rem 0;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .service-card,
  .team-card,
  .price-card,
  .review-card,
  .faq-card {
    box-shadow: none;
    border: 1px solid var(--neutral-light);
  }
} 