/* Responsive CSS for Micro-Loan Platform Template */

/* Tablet Styles */
@media (max-width: 991.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .team-card {
    margin-bottom: 30px;
  }
  
  .review-card {
    margin-bottom: 25px;
  }
  
  .price-value {
    font-size: 2.5rem;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* Typography */
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  /* Section Spacing */
  section {
    padding: 40px 0;
  }
  
  /* Hero Section Mobile */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  #hero::before,
  #hero::after {
    display: none;
  }
  
  /* Service Cards */
  .service-card {
    margin-bottom: 25px;
  }
  
  .service-price {
    font-size: 1rem;
    padding: 8px 16px;
  }
  
  /* Feature Icons */
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  
  /* Price Cards */
  .price-card {
    padding: 25px 20px;
    margin-bottom: 25px;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  /* Team Cards */
  .team-card {
    margin-bottom: 25px;
  }
  
  .team-photo {
    height: 200px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 30px 20px;
  }
  
  /* Gallery Grid */
  .gallery-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Process Steps */
  .process-step {
    margin-bottom: 30px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* FAQ Cards */
  .faq-card {
    padding: 15px;
  }
  
  /* Footer */
  footer {
    padding: 40px 0 20px;
    text-align: center;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  section {
    padding: 30px 0;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .contact-form {
    padding: 20px 15px;
  }
  
  .btn-primary,
  .btn-success {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .price-value {
    font-size: 1.75rem;
  }
  
  .service-price {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

/* No animations on mobile as per requirements */
@media (max-width: 767.98px) {
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .service-card:hover,
  .team-card:hover,
  .gallery-item:hover,
  .case-card:hover,
  .price-card:hover {
    transform: none !important;
  }
}

/* Landscape Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  #hero {
    min-height: 70vh;
  }
  
  section {
    padding: 35px 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  footer,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  section {
    padding: 20px 0;
    page-break-inside: avoid;
  }
  
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
} 

.hero-content {
    padding-top: 275px;
}
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
