/* ====================================
   RESPONSIVE STYLES - MOBILE FIRST
   Bootstrap 5 Breakpoints Integration
   ==================================== */

/* Mobile First Base Styles (up to 575px) */
.hero-section {
  min-height: 80vh;
  text-align: center;
  padding: 2rem 0;
}

.hero-section::before {
  display: none;
}

.hero-content h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Service Cards Mobile */
.service-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.25rem;
}

/* Team Photos Mobile */
.team-photo {
  width: 100px;
  height: 100px;
}

/* Contact Form Mobile */
.contact-form {
  padding: 1.5rem;
}

/* Section Padding Mobile */
.section {
  padding: 2rem 0;
}

/* Gallery Grid Mobile */
.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .service-card {
    padding: 1.75rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
    min-height: 90vh;
    text-align: left;
  }
  
  .hero-section::before {
    display: block;
  }
  
  .hero-content h1 {
    font-size: var(--fs-h1);
  }
  
  .hero-content p {
    font-size: var(--fs-body);
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  /* FAQ Layout - 2 columns on tablets */
  .faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  /* Reviews Layout - 2 columns on tablets */
  .reviews-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .section {
    padding: var(--section-padding);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  /* FAQ Layout - 2 columns with better spacing */
  .faq-container {
    gap: 1.5rem;
  }
  
  /* Reviews Layout - 3 columns on desktop */
  .reviews-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Features Layout - 4 columns */
  .features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  /* Team Layout - 5 columns */
  .team-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  /* Services Grid - 3 columns */
  .services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  /* Price Plans - 3 columns with better spacing */
  .priceplan-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
  

}

/* Vertical orientation adjustments */
@media (orientation: portrait) and (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .section {
    padding: 1.5rem 0;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 1.5rem 0;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-section::before {
    border-radius: 50%;
    filter: blur(0.5px);
  }
}

/* Print styles */
@media print {
  .hero-section::before,
  .gallery-grid,
  .btn,
  .navbar,
  .footer {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
} 