/* Responsive Design - Mobile First Approach */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    #hero-title-1 {
        font-size: 1.88rem;
    }
    
    #hero-subtitle-1 {
        font-size: 1.22rem;
    }
    
    .navbar-brand {
        font-size: 1.23rem !important;
    }
    
    .service-card .card-body {
        padding: 1rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.60rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.74rem;
    }
    
    .review-card {
        padding: 1.5rem;
        margin-bottom: 1.65rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .team-photo {
        width: 130px;
        height: 130px;
    }
    
    .feature-item {
        margin-bottom: 2rem;
    }
    
    .review-card {
        margin-bottom: 2rem;
    }
    
    .case-study-card {
        margin-bottom: 2rem;
    }
    
    .timeline-item {
        margin-bottom: 1.66rem;
    }
    
    .career-item {
        margin-bottom: 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .team-photo {
        width: 150px;
        height: 150px;
    }
}

/* Accessibility improvements */
@media (prefers-contrast: high) {
    .feature-card,
    .service-card,
    .pricing-card,
    .review-card {
        border: 2px solid #272323;
    }
    
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .navbar {
        background: #000 !important;
    }
}

/* Hover effects for touch devices */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .service-card:hover,
    .pricing-card:hover,
    .feature-item:hover,
    .review-card:hover,
    .case-study-card:hover {
        transform: none;
    }
    
    .navbar-nav .nav-link:hover {
        transform: none;
    }
    
    .btn-primary:hover {
        transform: none;
    }
}