/* ===================================
   RESPONSIVE STYLES - MOBILE FIRST
   ================================== */

/* ===================================
   MOBILE FIRST BASE (320px+)
   ================================== */

/* Hero Section - Mobile */
.hero-section {
  min-height: 80vh;
  text-align: center;
  padding: 2rem 0;
}

.hero-title {
  font-size: 2rem;
}

.hero-subtitle {
  font-size: 1.15rem;
}

/* Services - Mobile Stack */
.service-card {
  margin-bottom: 2rem;
}

/* Navbar - Mobile */
.navbar-brand {
  font-size: 10px;
  font-size: 1.38rem;
}

/* Team Photos - Mobile */
.team-photo {
  width: 120px;
  height: 120px;
}

/* Contact Form - Mobile */
.contact-form {
  padding: 2rem 1rem;
}

/* Gallery - Mobile */
.gallery-item img {
  height: 200px;
}

/* ===================================
   SMALL DEVICES (576px+)
   ================================== */
@media (min-width: 576px) {
  
  .hero-title {
    font-size: 2.37rem;
  }
  
  .hero-subtitle {
    font-size: 1.32rem;
  }
  
  .service-icon {
    font-size: 3.64rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
}

/* ===================================
   MEDIUM DEVICES (768px+)
   ================================== */
@media (min-width: 768px) {
  
  /* Hero Section - Tablet */
  .hero-section {
    min-height: 90vh;
    text-align: left;
  }
  
  .hero-title {
    font-size: var(--fs-h1);
  }
  
  .hero-subtitle {
    font-size: 1.27rem;
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: 10px;
    font-size: var(--fs-logo);
  }
  
  /* Services Grid */
  .services-row .col-md-4 {
    margin-bottom: 2rem;
  }
  
  /* Team Photos */
  .team-photo {
    width: 140px;
    height: 140px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 3rem;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 240px;
  }
  
  /* Footer */
  .main-footer {
    text-align: left;
  }
  
}

/* ===================================
   LARGE DEVICES (992px+)
   ================================== */
@media (min-width: 992px) {
  
  /* Hero Section - Desktop */
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.39rem;
  }
  
  /* Services Grid - 3 columns */
  .services-row .col-lg-4 {
    margin-bottom: 3rem;
  }
  
  /* Team Photos */
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  /* Gallery Grid */
  .gallery-item img {
    height: 250px;
  }
  
  /* Section Padding */
  :root {
    --section-padding: 6rem 0;
  }
  
}

/* ===================================
   EXTRA LARGE DEVICES (1200px+)
   ================================== */
@media (min-width: 1200px) {
  
  .hero-title {
    font-size: 3.58rem;
  }
  
  .hero-subtitle {
    font-size: 1.45rem;
  }
  
  .service-icon {
    font-size: 4rem;
  }
  
  .gallery-item img {
    height: 280px;
  }
  
  /* Larger containers */
  .container-xl {
    max-width: 1200px;
  }
  
}

/* ===================================
   EXTRA EXTRA LARGE DEVICES (1400px+)
   ================================== */
@media (min-width: 1400px) {
  
  .hero-title {
    font-size: 4rem;
  }
  
  .service-icon {
    font-size: 4.52rem;
  }
  
  .gallery-item img {
    height: 300px;
  }
  
  /* Enhanced section padding for larger screens */
  :root {
    --section-padding: 8rem 0;
  }
  
}

/* ===================================
   LANDSCAPE ORIENTATION
   ================================== */
@media (orientation: landscape) and (max-height: 600px) {
  
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 2.54rem;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
}

/* ===================================
   HIGH RESOLUTION DISPLAYS
   ================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  
  /* Sharper borders and shadows for retina displays */
  .service-card,
  .testimonial-card,
  .faq-card,
  .team-card,
  .contact-form {
    border-width: 0.5px;
  }
  
}

/* ===================================
   PRINT STYLES
   ================================== */
@media print {
  
  /* Hide interactive elements */
  .navbar,
  .btn,
  .contact-form,
  header,
  footer {
    display: none;
  }
  
  /* Adjust colors for print */
  body {
    background: white;
    color: black;
  }
  
  /* Ensure text is readable */
  .hero-title,
  .section-title,
  h1, h2, h3 {
    color: black;
  }
  
  /* Remove shadows and effects */
  .service-card,
  .testimonial-card,
  .faq-card {
    box-shadow: none;
    border: 1px solid #d4d4d4;
  }
  
} 

.hero-content {
    padding-top: 100px;
}