/* RESPONSIVE STYLES FOR CORPORATE PENSION AUDIT WORKSHOPS TEMPLATE */

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title-1 {
    font-size: 4rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.75rem;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title-1 {
    font-size: 3.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 5rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.25rem;
  }
  
  .hero-desc-1 {
    font-size: 1rem;
  }
  
  .about-feature,
  .services-card,
  .priceplan-card,
  .coreinfo-item {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-member-img {
    width: 150px;
    height: 150px;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-desc-1 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .about-feature,
  .services-card,
  .priceplan-card,
  .coreinfo-item {
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
  
  .team-member-img {
    width: 140px;
    height: 140px;
  }
  
  .review-item {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 100vh;
    text-align: center;
  }
  
  .hero-title-1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .hero-desc-1 {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .about-feature,
  .services-card,
  .priceplan-card,
  .coreinfo-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
  
  .gallery-img {
    height: 200px;
  }
  
  .team-member-img {
    width: 120px;
    height: 120px;
  }
  
  .team-member-name {
    font-size: 1.25rem;
  }
  
  .review-item {
    padding: 1.5rem;
  }
  
  .review-text::before,
  .review-text::after {
    display: none;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }
  
  footer .col-md-4 {
    margin-bottom: 2rem;
  }
  
  /* Reduce animations on mobile */
  .about-feature:hover,
  .services-card:hover,
  .priceplan-card:hover,
  .coreinfo-item:hover,
  .blog-item:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .gallery-item:hover .gallery-img {
    transform: none;
  }
  
  /* Space page adjustments */
  #space {
    min-height: calc(100vh - 300px);
  }
}

/* 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: 0ms;
  }
} 