/* Mobile First Responsive Design */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 2rem;
  }
  
  #hero p {
    font-size: 1rem;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .card-body {
    padding: 1.5rem;
    overflow-x: hidden;
}
  
  .price-tag {
    font-size: 2rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  /* Animations disabled for better content visibility */
  
  .process-step {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
  
  .core-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .core-info-item {
    padding: 1.5rem;
  }
  
  .career-position {
    padding: 1.5rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  #hero h1 {
    font-size: 2.5rem;
  }
  
  .btn {
    display: inline-block;
    width: auto;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
  
  .core-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #hero h1 {
    font-size: 3rem;
  }
  
  .team-photo {
    width: 140px;
    height: 140px;
  }
  
  #priceplan .card.featured {
    transform: scale(1.02);
  }
  
  .process-step::before {
    top: -10px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #hero h1 {
    font-size: 3.5rem;
  }
  
  .navbar-brand {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 1rem 2.5rem;
  }
  
  .card-body {
    padding: 2.5rem;
  }
  
  .process-step {
    padding: 2.5rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #hero h1 {
    font-size: 4rem;
  }
  
  section {
    padding: 6rem 0;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* High DPI/Retina Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .card {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }
  
  .btn {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
  #hero {
    min-height: 100vh;
  }
  
  .navbar {
    padding: 0.25rem 1rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  #footer,
  .btn,
  .card:hover {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }
  
  .card {
    border: 1px solid #ccc;
    box-shadow: none;
    page-break-inside: avoid;
  }
} 