/* Remote Workshop Facilitation Toolkit - Responsive CSS */

/* Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section h1 {
    font-size: 2.88rem;
    padding-top: 100px;
}
  
  .services-card {
    padding: 2.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
    padding-top: 100px;
}
  
  .section-padding {
    padding: 6rem 0;
  }
  
  .timeline-item {
    margin-left: 3rem;
  }
  
  .timeline-item::before {
    left: -35px;
  }
  
  .timeline-item::after {
    left: -29px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 3.59rem;
    padding-top: 100px;
}
  
  .priceplan-card.featured {
    border: 6px solid var(--primary-blue);
  }
  
  .services-card {
    padding: 3rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .hero-decoration-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-decoration-2 {
    width: 180px;
    height: 180px;
  }
}

/* Mobile devices (max-width: 767px) */
@media (max-width: 767px) {
  .hero-section {
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 2.29rem;
    padding-top: 100px;
}
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .navbar.navbar-hidden {
    display: none;
  }
  
  .services-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .priceplan-card.featured {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .timeline-item {
    margin-left: 1.5rem;
  }
  
  .timeline-item::before {
    left: -25px;
  }
  
  .timeline-item::after {
    left: -19px;
  }
  
  .hero-decoration-1,
  .hero-decoration-2 {
    display: none;
  }
  
  .features-item {
    margin-bottom: 1.94rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.16rem;
  }
  
  .process-item {
    padding: 1.5rem;
  }
  
  .process-item::before {
    top: -10px;
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 0.82rem;
  }
}

/* Extra small devices (max-width: 575px) */
@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 2rem;
    padding-top: 100px;
}
  
  h2 {
    font-size: 1.85rem;
  }
  
  .services-card {
    padding: 1.2rem;
  }
  
  .priceplan-card,
  .reviews-card,
  .casestudy-item,
  .career-item,
  .coreinfo-item {
    padding: 1.5rem;
  }
  
  .team-member {
    padding: 1rem;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.2rem;
  }
  
  .faq-card {
    padding: 1.5rem;
  }
  
  .about-feature {
    padding: 1.2rem;
  }
  
  .about-feature i {
    font-size: 1.86rem;
  }
  
  .features-item i {
    font-size: 2.64rem;
  }
  
  .coreinfo-item i {
    font-size: 2rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
}

/* Landscape phone orientation */
@media (max-width: 767px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
  }
}

/* Print styles */
@media print {
  .hero-decoration-1,
  .hero-decoration-2 {
    display: none;
  }
  
  .services-card,
  .priceplan-card,
  .reviews-card,
  .casestudy-item,
  .career-item,
  .coreinfo-item,
  .faq-card {
    break-inside: avoid;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .services-card,
  .priceplan-card,
  .reviews-card,
  .casestudy-item,
  .career-item,
  .coreinfo-item,
  .faq-card {
    border: 1px solid #000;
  }
}

/* Dark mode support */