/* ============================================
   RESPONSIVE STYLES
============================================ */

/* Large Devices (Desktops) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 44px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02);
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
    .top-header {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .top-header-left ul {
        gap: 10px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .search-section {
        margin-top: -20px;
        padding-bottom: 30px;
    }
    
    .search-wrapper {
        padding: 20px;
    }
    
    .search-tabs .nav-link {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .navbar-nav .nav-link {
        padding: 6px 12px !important;
        font-size: 13px;
    }
    
    .nav-actions .btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .job-card {
        padding: 18px;
    }
    
    .job-title {
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 0 16px;
    }
    
    .footer h5 {
        margin-top: 24px;
    }
    
    .cta-stats {
        gap: 24px;
        margin-top: 20px;
    }
    
    .cta-stat-number {
        font-size: 24px;
    }
    
    .hero-illustration {
        display: none !important;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 767px) {
    .top-header {
        display: none;
    }
    
    .navbar-brand .brand-text {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        display: block;
        text-align: center;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        padding-top: 20px;
        margin-top: 24px;
    }
    
    .stat-item {
        text-align: center;
        flex: 1 0 40%;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .search-section {
        margin-top: -10px;
        padding-bottom: 20px;
    }
    
    .search-wrapper {
        padding: 16px;
        border-radius: var(--radius-sm);
    }
    
    .search-tabs .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 4px;
    }
    
    .search-tabs .nav-link {
        font-size: 12px;
        padding: 6px 14px;
        white-space: nowrap;
    }
    
    .search-input-group .form-control,
    .search-input-group .form-select {
        height: 42px;
        font-size: 13px;
        padding-left: 36px;
    }
    
    .btn-search {
        height: 42px;
        font-size: 13px;
    }
    
    .search-tags {
        gap: 6px;
        font-size: 12px;
    }
    
    .search-tags .tag {
        font-size: 11px;
        padding: 2px 10px;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .categories-section,
    .featured-jobs-section,
    .how-it-works,
    .features-section,
    .pricing-section,
    .testimonials-section,
    .training-section {
        padding: 40px 0;
    }
    
    .category-card {
        padding: 20px 16px;
    }
    
    .category-card .category-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .category-card h5 {
        font-size: 14px;
    }
    
    .job-card-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .job-meta {
        width: 100%;
    }
    
    .job-details {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .job-salary {
        font-size: 14px;
    }
    
    .job-card-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-card-footer .btn {
        width: 100%;
    }
    
    .step-card {
        padding: 24px 16px;
    }
    
    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02);
    }
    
    .pricing-price .price {
        font-size: 32px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .training-card {
        padding: 24px 16px;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .cta-section p {
        text-align: center;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-stats {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .cta-stat-item {
        flex: 1 0 30%;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .col-md-6:last-child {
        margin-top: 8px;
    }
    
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-actions .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .stat-item {
        flex: 1 0 45%;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .search-tabs .nav-link {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .category-card {
        padding: 16px 12px;
    }
    
    .job-card {
        padding: 14px;
    }
    
    .job-title {
        font-size: 15px;
    }
    
    .job-company {
        font-size: 13px;
    }
    
    .job-details {
        font-size: 12px;
    }
    
    .pricing-price .price {
        font-size: 28px;
    }
    
    .pricing-features li {
        font-size: 13px;
    }
    
    .footer-brand .brand-text {
        font-size: 20px;
    }
}