/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1400px) {
  .swiper {
    height: 550px;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .content-wrapper {
    padding: 0 30px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 1199.98px) {
  .swiper {
    height: 500px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card, 
  .price-card, 
  .core-info-item {
    padding: 1.5rem;
  }
  
  .hero-section {
    height: auto;
    min-height: 500px;
  }
  
  .hero-image img {
    max-height: 70%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
  .swiper {
    height: 450px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
  }
  
  .circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -25px;
  }
  
  .team-image {
    height: 220px;
  }
  
  .hero-section {
    height: auto;
  }
  
  .hero-content {
    padding: 100px 0;
    text-align: center;
  }
  
  .content-wrapper {
    max-width: 100%;
  }
  
  .hero-image-col {
    min-height: 400px;
  }
  
  .service-card,
  .price-card,
  .team-card,
  .feature-item,
  .core-info-item {
    height: 100%;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  :root {
    --base-font-size: 15px;
  }
  
  .swiper {
    height: 400px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .shape-divider svg {
    height: 40px;
  }
  
  .price-tag {
    font-size: 2rem;
  }
  
  .service-card, 
  .price-card, 
  .team-card, 
  .review-card, 
  .core-info-item {
    margin-bottom: 2rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-content {
    padding: 80px 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-image-col {
    min-height: 350px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  :root {
    --base-font-size: 14px;
  }
  
  .swiper {
    height: 350px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .shape-divider svg {
    height: 30px;
  }
  
  .slide-content {
    padding: 1rem;
  }
  
  .service-card, 
  .price-card, 
  .review-card, 
  .core-info-item {
    padding: 1.25rem;
  }
  
  /* Disable animations on small screens or respect prefers-reduced-motion */
  @media (prefers-reduced-motion) {
    .service-card:hover,
    .price-card:hover,
    .team-card:hover,
    .core-info-item:hover {
      transform: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .fade-in {
      opacity: 1;
      transition: none;
    }
  }
  
  .hero-content {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-image-col {
    min-height: 300px;
  }
}

/* Utility classes for responsive display */
.d-sm-none {
  display: none !important;
}

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
  
  .d-sm-none {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  
  .d-md-none {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  
  .d-lg-none {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
  
  .d-xl-none {
    display: none !important;
  }
} 