/* ===============================
   Virtual Pension Scenario Studio - Responsive CSS
   =============================== */

/* Large Devices (Desktop) */
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-max-width);
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .service-card {
    padding: 3rem;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-desc {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .navbar-nav {
  flex-direction: row;
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Devices (Large phones) */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 90vh;
    padding: 100px 0 50px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .section-desc {
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
  }
  
  .service-card,
  .about-feature {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .team-image {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
  }
  
  .team-name {
    font-size: 1.3rem;
  }
  
  .review-card {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  .review-text {
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  /* Hide decorative shapes on mobile */
  .shape {
    display: none;
  }
  
  /* FAQ adjustments */
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  /* Disable animations and autoplay on mobile */
  .swiper {
    --swiper-autoplay-delay: 0;
  }
  
  .hero-title,
  .hero-subtitle,
  .hero-desc {
    animation: none;
  }
}

/* Extra Small Devices (Small phones) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-card,
  .about-feature {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .team-image {
    width: 120px;
    height: 120px;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .service-price {
    font-size: 1.3rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.2rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 1rem; }
}

/* Navbar Responsiveness */
@media (max-width: 991.98px) {
  .navbar-toggler {
    border: none;
    padding: 4px 8px;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  }
}

/* Container Adjustments */
@media (max-width: 767.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Form Responsiveness */
@media (max-width: 575.98px) {
  .form-control,
  .form-select {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .btn {
    width: 100%;
    margin-top: 1rem;
  }
}

/* Gallery Responsiveness */
@media (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Grid Responsiveness */
@media (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Team Grid Responsiveness */
@media (max-width: 991.98px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Swiper Responsiveness */
@media (max-width: 767.98px) {
  .swiper-slide {
    padding: 10px;
  }
  
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .shape {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
  }
} 