/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1399.98px) {
  :root {
    --fs-hero: 2.25rem;
    --fs-xxl: 1.75rem;
  }
  
  .hero-shape, .hero-blob {
    width: 400px;
    height: 400px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 1199.98px) {
  :root {
    --fs-hero: 2rem;
    --fs-xxl: 1.5rem;
    --fs-xl: 1.35rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .hero-shape, .hero-blob {
    width: 350px;
    height: 350px;
  }
  
  .hero-content {
    padding: 0 20px;
    padding-top: 250px;
}
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
  :root {
    --fs-hero: 1.75rem;
    --fs-xxl: 1.5rem;
    --fs-xl: 1.25rem;
    --fs-lg: 1.125rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 100px 0;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .hero-shape, .hero-blob {
    width: 300px;
    height: 300px;
  }
  
  .contact-info {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .process-line {
    display: none;
  }
  
  .timeline-item {
    padding-left: 20px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  :root {
    --fs-hero: 1.5rem;
    --fs-xxl: 1.35rem;
    --fs-xl: 1.2rem;
    --fs-lg: 1.1rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-description {
    margin-bottom: 30px;
  }
  
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-content {
    text-align: center;
    padding-top: 250px;
}
  
  .hero-shape, .hero-blob {
    width: 250px;
    height: 250px;
  }
  
  .feature-card, .service-card, .price-card, .team-card, .review-card, .case-card, .career-card, .info-card {
    margin-bottom: 20px;
  }
  
  .footer {
    padding: 50px 0 20px;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  :root {
    --fs-hero: 1.35rem;
    --fs-xxl: 1.25rem;
    --fs-xl: 1.15rem;
    --fs-lg: 1rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .section-title {
    margin-bottom: 25px;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-shape, .hero-blob {
    width: 200px;
    height: 200px;
  }
  
  .btn {
    padding: 0.4rem 1.2rem;
  }
  
  .contact-form {
    padding: 25px;
  }
}

/* Disable animations on mobile devices */
@media (max-width: 767.98px) {
  [data-sal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
} 