/* Estate Tax Minimization Advisory - Responsive Styles */

/* Tablet Styles (max-width: 991px) */
@media (max-width: 991px) {
  /* Typography */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  /* Hero Section */
  #hero-title-1 {
    font-size: 2rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  /* Services */
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  /* Process */
  .process-step::after {
    display: none;
  }
  
  /* Team */
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  /* Price Plans */
  .price-card {
    margin-bottom: 2rem;
  }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
  /* Base */
  body {
    overflow-x: hidden;
    font-size: 14px;
  }
  
  /* Typography */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
  p { font-size: 0.9rem; }
  
  /* Header */
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    margin: 0;
  }
  
  /* Hero Section */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  #hero-title-1 {
    font-size: 1.75rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1rem;
  }
  
  #hero-desc-1 {
    font-size: 0.9rem;
  }
  
  /* Sections */
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  /* About Features */
  .about-feature {
    padding: 1.5rem;
    text-align: center;
  }
  
  .about-feature i {
    font-size: 2.5rem;
  }
  
  /* Services */
  .service-card-body {
    overflow-x: hidden;
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Features */
  .feature-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-item i {
    font-size: 3rem;
  }
  
  /* Process */
  .process-step {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Team */
  .team-member {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  /* Reviews */
  .review-item {
    padding: 1.5rem;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
  }
  
  #site_submit_btn {
    padding: 0.75rem 2rem;
    width: 100%;
  }
  
  /* Blog */
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  /* FAQ */
  .faq-question {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
  }
  
  .gallery-item {
    height: 150px;
  }
  
  /* Footer */
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  footer .col-md-4 {
    margin-bottom: 1.5rem;
  }
  
  /* Swiper on Mobile - Disable autoplay and effects */
  .swiper-autoplay-disabled {
    --swiper-autoplay: 0 !important;
  }
  
  .swiper-effect-disabled {
    --swiper-effect: slide !important;
  }
  
  /* Additional Pages */
  .add-page-section {
    padding: 3rem 0;
  }
  
  /* Breadcrumb */
  .breadcrumb img {
    height: 20px;
  }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
  /* Container padding */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Hero */
  #hero {
    min-height: 70vh;
  }
  
  #hero-title-1 {
    font-size: 1.5rem;
  }
  
  /* Price Card */
  .price-card {
    padding: 2rem 1rem;
  }
  
  .price-card.featured::before {
    font-size: 0.7rem;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
  #hero {
    min-height: 100vh;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  #gallery,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  body {
    overflow-x: hidden;
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .section {
    page-break-inside: avoid;
  }
} 