/* Responsive CSS for Lisbon Consultancy */

/* Large Devices (Desktops) */
@media (max-width: 1199.98px) {
  section {
    padding: 80px 0;
  }
  
  .hero-section {
    height: 90vh;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .service-image {
    height: 180px;
  }
  
  .team-image {
    height: 280px;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
  section {
    padding: 70px 0;
  }
  
  .hero-section {
    height: auto;
    min-height: 80vh;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-feature {
    margin-bottom: 20px;
  }
  
  .team-image {
    height: 260px;
  }
  
  .price-header {
    padding: 20px;
  }
  
  .price-features li {
    padding: 0 15px;
  }
  
  .gallery-image {
    height: 220px;
  }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767.98px) {
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-content {
    padding: 30px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .coreinfo-item,
  .blog-post {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  
  .team-image {
    height: 300px;
  }
  
  .reviews-slider .swiper-pagination {
    bottom: -5px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .gallery-item {
    margin-bottom: 20px;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  footer {
    padding-top: 40px;
    text-align: center;
  }
  
  .footer-heading:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  #contact-info-phone, 
  #contact-info-email, 
  #contact-info-address {
    padding-left: 0;
    padding-top: 30px;
  }
  
  #contact-info-phone:before, 
  #contact-info-email:before, 
  #contact-info-address:before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  section {
    padding: 50px 0;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-content {
    padding: 20px 0;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .coreinfo-item,
  .blog-post {
    padding: 15px;
  }
  
  .about-feature-icon,
  .coreinfo-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .team-image {
    height: 250px;
  }
  
  .price-value {
    font-size: 2.5rem;
  }
  
  .review-item {
    padding: 20px;
  }
  
  .accordion-button {
    padding: 15px;
  }
  
  .accordion-body {
    padding: 15px;
  }
  
  .gallery-image {
    height: 180px;
  }
  
  .form-control {
    height: 45px;
    padding: 0 15px;
  }
  
  textarea.form-control {
    height: 120px;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .service-item:hover,
  .about-feature:hover,
  .feature-item:hover,
  .price-item:hover,
  .team-member:hover,
  .coreinfo-item:hover,
  .blog-post:hover {
    transform: none;
  }
  
  .gallery-item:hover .gallery-image {
    transform: none;
  }
  
  .swiper-container {
    --swiper-theme-color: var(--primary-color-1);
  }

  .swiper-pagination-bullet {
    opacity: 0.7;
  }

  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 20px;
  }
} 