/* Investment Reviews - Responsive CSS */

/* Large Tablets and Small Laptops */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  #hero-title-1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Tablets */
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  #hero-title-1 {
    font-size: 2rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.25rem;
  }
  
  #hero {
    padding: 2rem 0;
  }
  
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    font-size: 10px !important;
    margin: 0.5rem 0;
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  section {
    padding: 60px 0;
  }
}

/* Mobile Landscape */
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  body {
    font-size: 14px;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  h4 { font-size: 1.1rem; }
  
  #hero-title-1 {
    font-size: 1.75rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  #hero-desc-1 {
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 12px !important;
    font-size: 1.25rem !important;
  }
  
  .pricing-grid,
  .services-grid,
  .features-grid,
  .case-grid,
  .career-grid,
  .coreinfo-grid,
  .team-grid,
  #blog_grid {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card img {
    height: 200px;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  section {
    padding: 40px 0;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper {
    --swiper-autoplay: 0 !important;
  }
  
  .swiper-slide {
    transition: none !important;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Portrait */
@media (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  
  #hero-title-1 {
    font-size: 1.5rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1rem;
  }
  
  #hero-desc-1 {
    font-size: 0.9rem;
  }
  
  .navbar-brand {
    font-size: 12px !important;
    font-size: 1.1rem !important;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-feature {
    padding: 1.5rem;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .team-member {
    padding: 1.5rem 1rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .case-card {
    padding: 2rem 1.5rem;
  }
  
  .timeline-item {
    padding: 1.5rem;
  }
  
  .career-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  #site_submit_btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  section {
    padding: 30px 0;
  }
}

/* Extra Small Devices */
@media (max-width: 359px) {
  body {
    font-size: 13px;
  }
  
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  
  #hero-title-1 {
    font-size: 1.3rem;
  }
  
  .navbar-brand {
    font-size: 12px !important;
    font-size: 1rem !important;
  }
  
  .price-amount {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .navbar,
  #hero,
  #gallery,
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination {
    display: none !important;
  }
  
  section {
    page-break-inside: avoid;
  }
} 