/* ==========================================================================
   RESPONSIVE STYLES - MOBILE FIRST APPROACH
   ========================================================================== */

/* Mobile First - Base styles for mobile */
@media (max-width: 575.98px) {
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Hero section */
  .hero-section {
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  /* Decorative shapes - hide on mobile */
  .hero-shape {
    display: none;
  }
  
  /* Section padding */
  .section {
    padding: 2rem 0;
  }
  
  /* Cards and components */
  .service-card,
  .price-card,
  .review-card,
  .casestudy-card,
  .career-card,
  .faq-card,
  .timeline-item {
    margin-bottom: 2rem;
  }
  
  /* Price cards */
  .price-card.featured {
    transform: none;
    border-width: 2px;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Process numbers */
  .process-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.25rem;
  }
  
  /* Contact form */
  .contact-form,
  .contact-info {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-form,
  .contact-info {
    padding: 2.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  /* Show decorative shapes on tablets and up */
  .hero-shape {
    display: block;
  }
  
  .hero-shape-1 {
    width: 150px;
    height: 150px;
  }
  
  .hero-shape-2 {
    width: 120px;
    height: 120px;
  }
  
  /* Gallery items */
  .gallery-item img {
    height: 200px;
  }
  
  /* Process steps */
  .process-step {
    padding: 1.5rem;
  }
  
  /* Timeline items */
  .timeline-item {
    margin-left: 2rem;
  }
  
  .timeline-item::before {
    left: -2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-shape-1 {
    width: 200px;
    height: 200px;
  }
  
  .hero-shape-2 {
    width: 150px;
    height: 150px;
  }
  
  /* Services grid */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Gallery items */
  .gallery-item img {
    height: 250px;
  }
  
  /* Price cards */
  .price-card.featured {
    transform: scale(1.05);
  }
  
  /* Timeline styling */
  .timeline-item {
    margin-left: 3rem;
  }
  
  .timeline-item::before {
    left: -3rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .gallery-item img {
    height: 280px;
  }
  
  .contact-form,
  .contact-info {
    padding: 3rem;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .hero-section {
    padding: 6rem 0;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .gallery-item img {
    height: 300px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero-shape,
  .btn,
  .footer {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    padding: 1rem 0;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .service-card,
  .price-card,
  .review-card,
  .casestudy-card,
  .career-card,
  .faq-card,
  .timeline-item {
    box-shadow: none;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .service-card,
  .price-card,
  .review-card,
  .casestudy-card,
  .career-card,
  .faq-card,
  .timeline-item {
    border: 2px solid #000;
  }
  
  .btn-primary {
    border: 2px solid #000;
  }
  
  .form-control {
    border: 2px solid #000;
  }
}

/* Dark mode support */

.hero-content {
    padding-top: 225px;
}