/* Responsive Styles */

/* Mobile First Approach */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.51rem;
  }
  
  .hero-content {
  padding-top: 100px !important;
    text-align: center;
    margin-bottom: 2.12rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 1.51rem;
  }
  
  .feature-card, .service-card, .team-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.03rem !important;
  }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 768px) {
  .hero h1 {
    font-size: 1.79rem;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .swiper {
    --swiper-navigation-size: 35px;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .hero {
    min-height: 100vh;
  }
  
  .hero h1 {
    font-size: 2.64rem;
  }
  
  .section {
    padding: 80px 0;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.15rem;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Mobile Swiper Adjustments */
@media (max-width: 768px) {
  .swiper {
    --swiper-pagination-bullet-size: 8px;
    --swiper-navigation-size: 25px;
  }
  
  .swiper-slide {
    padding: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar, .footer, .btn, .swiper-pagination, .swiper-navigation {
    display: none !important;
  }
  
  .section {
    padding: 20px 0;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
} 