/* Document & Notary Express Bar Template
   Responsive Stylesheet
*/

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .team-img-wrapper {
    width: 180px;
    height: 180px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .team-img-wrapper {
    width: 160px;
    height: 160px;
  }
  
  .service-card,
  .price-card,
  .about-feature-card,
  .coreinfo-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .gallery-img {
    height: 250px;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .about-feature-card,
  .service-card,
  .price-card,
  .coreinfo-card {
    margin-bottom: 1.5rem;
  }
  
  .team-img-wrapper {
    width: 140px;
    height: 140px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-img {
    height: 200px;
  }
  
  .shape-divider svg {
    height: 50px;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title-1 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .about-section,
  .services-section,
  .features-section,
  .priceplan-section,
  .team-section,
  .reviews-section,
  .coreinfo-section,
  .contact-section,
  .blog-section,
  .faq-section,
  .gallery-section {
    padding: 3rem 0;
  }
  
  .about-feature-card,
  .service-card,
  .price-card,
  .coreinfo-card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .team-img-wrapper {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 1.25rem;
  }
  
  .gallery-img {
    height: 180px;
  }
  
  .shape-divider svg {
    height: 30px;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-column {
    margin-bottom: 1.5rem;
  }
  
  .copyright {
    margin-top: 1.5rem;
  }
  
  /* Disable animations for better performance */
  @media (prefers-reduced-motion: reduce) {
    .fadeInUp,
    .pulse {
      animation: none;
    }
    
    .service-card:hover,
    .price-card:hover,
    .about-feature-card:hover,
    .coreinfo-card:hover,
    .blog-card:hover,
    .team-card:hover .team-img,
    .blog-card:hover .blog-img,
    .gallery-item:hover .gallery-img {
      transform: none;
    }
  }
} 