/* Legacy Protection Seminars - Responsive CSS */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
  .container {
    max-width: 95%;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  /* Typography */
  body {
    overflow-x: hidden;
    font-size: 15px;
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.125rem; }
  h4 { font-size: 1rem; }
  
  p {
    font-size: 0.95rem;
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
  }
  
  /* Services */
  .service-card {
    padding: 1.25rem;
  }
  
  .service-card img {
    height: 180px;
  }
  
  .service-price {
    font-size: 1.75rem;
  }
  
  /* Features */
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Team */
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .team-member-name {
    font-size: 1.125rem;
  }
  
  /* Section Padding */
  .section-padding {
    padding: 40px 0;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 2rem;
  }
  
  /* Footer */
  footer {
    padding: 2rem 0 1rem;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-container {
    --swiper-autoplay: 0;
    --swiper-effect: slide !important;
  }
  
  .swiper-slide {
    transition-duration: 300ms !important;
  }
  
  /* Shape blobs */
  .shape-blob-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
  }
  
  .shape-blob-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  /* Typography */
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.125rem; }
  h3 { font-size: 1rem; }
  
  p {
    font-size: 0.9rem;
  }
  
  /* Hero */
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  /* Service Cards */
  .service-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .service-card img {
    height: 150px;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Process Steps */
  .process-step {
    padding-left: 2.5rem;
  }
  
  .process-step::before {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 20px;
  }
  
  /* FAQ */
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-control {
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  /* Blog */
  .blog-card img {
    height: 150px;
  }
  
  .blog-title {
    font-size: 1.125rem;
  }
  
  .blog-excerpt {
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer-title {
    font-size: 1.125rem;
  }
  
  .footer-desc {
    font-size: 0.9rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  #site-copyright {
    font-size: 0.8rem;
  }
  
  /* Section Padding */
  .section-padding {
    padding: 30px 0;
  }
  
  /* Hide decorative shapes on mobile */
  .shape-blob {
    display: none;
  }
}

/* Very Small Mobile Devices */
@media (max-width: 400px) {
  /* Container */
  .container {
    padding: 0 15px;
  }
  
  /* Typography */
  h1 { font-size: 1.125rem; }
  h2 { font-size: 1rem; }
  
  /* Hero */
  .hero-title {
    font-size: 1.25rem;
  }
  
  /* Buttons */
  .btn-primary {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
  
  /* Team */
  .team-member img {
    width: 120px;
    height: 120px;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 30px 0;
  }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure crisp borders and shadows */
  .service-card,
  .testimonial-card,
  .blog-card,
  .contact-form,
  .faq-item {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }
} 