/* Remote Sales Training Bootcamp - Responsive CSS */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
}

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .hero-content {
    padding-right: 2rem;
    padding-top: 225px;
}
  
  .service-card,
  .price-card,
  .feature-card {
    height: auto;
    min-height: 350px;
  }
}

/* Medium Devices (992px and up) */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--primary-light);
    z-index: -1;
  }
  
  .process-step:last-child::after {
    display: none;
  }
}

/* Small to Medium Devices (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* Small Devices (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  #hero {
    text-align: center;
    padding-top: 100px;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .service-card,
  .price-card,
  .feature-card,
  .case-card {
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 160px;
    height: 160px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .contact-info {
    padding: 2rem 1.5rem;
  }
  
  .footer-content {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

/* Extra Small Devices (up to 575px) */
@media (max-width: 575px) {
  body {
    font-size: 0.9rem;
    overflow-x: hidden;
}
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  /* Header Mobile */
  .navbar-brand {
    font-size: 1rem;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* Hero Mobile */
  #hero {
    min-height: 70vh;
    text-align: center;
    padding: 120px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  
  /* Sections Mobile */
  section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .section-title p {
    font-size: 0.95rem;
  }
  
  /* Cards Mobile */
  .feature-card,
  .service-card,
  .price-card,
  .case-card,
  .review-card,
  .faq-card {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .feature-icon,
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .service-price,
  .price-value {
    font-size: 1.75rem;
  }
  
  .price-card.featured {
    transform: none;
    border-width: 2px;
  }
  
  /* Team Mobile */
  .team-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
  }
  
  .team-name {
    font-size: 1rem;
  }
  
  .team-role {
    font-size: 0.875rem;
  }
  
  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .gallery-item {
    aspect-ratio: 16/9;
  }
  
  /* Contact Mobile */
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  .form-control {
    padding: 10px 14px;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  /* Footer Mobile */
  #footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-links {
    margin-bottom: 1.5rem;
  }
  
  .footer-links li {
    margin-bottom: 0.25rem;
  }
  
  .footer-links a {
    font-size: 0.875rem;
  }
  
  #site-copyright {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  /* Blog Mobile */
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  .blog-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .blog-excerpt {
    font-size: 0.875rem;
  }
  
  /* Process Mobile */
  .process-step {
    margin-bottom: 2rem;
  }
  
  .process-step::after {
    display: none;
  }
  
  /* Breadcrumb Mobile */
  .breadcrumb {
    padding: 0.5rem 0;
    font-size: 0.875rem;
  }
  
  .breadcrumb-item img {
    width: 14px;
    height: 14px;
  }
}

/* Landscape Mobile Devices */
@media (max-width: 767px) and (orientation: landscape) {
  #hero {
    min-height: 80vh;
    padding: 100px 0 40px;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 2rem 0;
  }
}

/* Print Styles */
@media print {
  #header,
  #footer,
  .btn,
  .navbar {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .hero-content h1 {
    font-size: 24pt;
  }
  
  .section-title h2 {
    font-size: 18pt;
  }
  
  .card,
  .feature-card,
  .service-card,
  .price-card {
    border: 1px solid #ccc;
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000080;
    --secondary-color: #800080;
    --accent-color: #008080;
    --gray-700: #000000;
    --gray-600: #333333;
    --gray-500: #666666;
  }
  
  .btn-primary {
    background-color: #000080;
    border-color: #000080;
  }
  
  .btn-primary:hover {
    background-color: #000060;
    border-color: #000060;
  }
  
  .card,
  .feature-card,
  .service-card,
  .price-card {
    border: 2px solid #000000;
  }
}

/* Reduced Motion Specific Mobile */
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .btn-primary:hover {
    transform: none;
  }
  
  .feature-card:hover,
  .service-card:hover,
  .gallery-item:hover img {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
@media (max-width: 767px) {
  .btn:focus,
  .form-control:focus,
  .nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  .navbar-toggler:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
} 