/* PROBATE PROCESS HELPDESK - RESPONSIVE STYLES
--------------------------------------------------- */

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title-1 {
    font-size: 3.5rem;
  }
}

/* Large Devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .team-member img {
    height: 300px;
  }
}

/* Medium Devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-section {
    padding: 10rem 0 6rem;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.15rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .price-plan-card {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    height: 250px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Small Devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    padding: 8rem 0 4rem;
    text-align: center;
  }
  
  .hero-title-1 {
    font-size: 2.25rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1rem;
  }
  
  .hero-image {
    margin-top: 3rem;
  }
  
  .section-title {
    margin-bottom: 3rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-feature {
    margin-bottom: 1.5rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .features-item {
    margin-bottom: 1.5rem;
  }
  
  .price-plan-card {
    margin-bottom: 1.5rem;
  }
  
  .team-member {
    margin-bottom: 1.5rem;
  }
  
  .core-info-item {
    margin-bottom: 1.5rem;
  }
  
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .gallery-item {
    width: 50%;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  footer {
    text-align: center;
    padding: 3rem 0 1.5rem;
  }
  
  .footer-logo {
    margin-top: 1rem;
  }
  
  .footer-title {
    margin-top: 2rem;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  section {
    padding: 2.5rem 0;
  }
  
  .hero-section {
    padding: 7rem 0 3rem;
    text-align: center;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .section-title {
    margin-bottom: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .about-feature {
    margin-bottom: 1.25rem;
  }
  
  .service-card {
    margin-bottom: 1.25rem;
  }
  
  .features-item {
    margin-bottom: 1.25rem;
  }
  
  .price-plan-card {
    margin-bottom: 1.25rem;
  }
  
  .team-member {
    margin-bottom: 1.25rem;
  }
  
  .core-info-item {
    margin-bottom: 1.25rem;
  }
  
  .blog-card {
    margin-bottom: 1.25rem;
  }
  
  .gallery-item {
    width: 100%;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .contact-form {
    padding: 1.25rem;
  }
  
  footer {
    text-align: center;
    padding: 2.5rem 0 1.25rem;
  }
  
  .footer-logo {
    margin-top: 1rem;
  }
  
  .footer-title {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Swiper adjustments */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
  
  .about-feature:hover,
  .service-card:hover,
  .price-plan-card:hover,
  .team-member:hover,
  .blog-card:hover,
  .gallery-item a:hover img {
    transform: none !important;
  }
} 