/* ============================================
   SECTIONS STYLING - ALL SECTIONS
   Contains styles for:
   - Trending Roles
   - Locations
   - Experience Levels
   - Latest Jobs
   - Internships
   - USP
   - Testimonials
   - Employer
   - Footer
   ============================================ */

/* ============================================
   SECTIONS WRAPPER & GENERAL
   ============================================ */

section {
    position: relative;
    padding: 48px 0;
}

section:first-of-type {
    padding-top: 0;
}

/* ============================================
   TRENDING ROLES SECTION
   ============================================ */

.bj-trending-roles-section {
    background: #ffffff;
}

.bj-trending-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    width: 100%;
}

.bj-trending-role-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    cursor: pointer;
}

.bj-trending-role-card:hover {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.bj-role-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.bj-role-info {
    flex: 1;
    min-width: 0;
}

.bj-role-title {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.bj-role-count {
    font-size: 12px;
    color: #2563eb;
    margin: 2px 0 0;
}

.bj-role-arrow {
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.2s;
}

.bj-trending-role-card:hover .bj-role-arrow {
    color: #2563eb;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .bj-trending-roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .bj-trending-roles-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */

.bj-locations-section {
    background: #ffffff;
}

.bj-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    width: 100%;
}

.bj-location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border: 1.5px solid #dbeafe;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    cursor: pointer;
    min-height: 140px;
    text-align: center;
}

.bj-location-card:hover {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.bj-location-emoji {
    font-size: 32px;
    line-height: 1;
}

.bj-location-info {
    width: 100%;
}

.bj-location-name {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.bj-location-jobs {
    font-size: 12px;
    color: #2563eb;
    margin: 2px 0 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .bj-locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bj-location-card {
        min-height: 120px;
        padding: 16px;
    }
}

@media (max-width: 640px) {
    .bj-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bj-location-card {
        min-height: 110px;
        padding: 12px;
    }

    .bj-location-emoji {
        font-size: 24px;
    }

    .bj-location-name {
        font-size: 13px;
    }
}

/* ============================================
   EXPERIENCE LEVEL SECTION
   ============================================ */

.bj-experience-section {
    background: #ffffff;
}

.bj-experience-tabs {
    display: flex;
    gap: 12px;
    margin: 32px 0;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bj-experience-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
}

.bj-experience-tab:hover {
    color: #2563eb;
}

.bj-experience-tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.bj-tab-icon {
    font-size: 18px;
}

.bj-tab-label {
    display: none;
}

.bj-tab-count {
    display: none;
    margin-left: 4px;
    color: #9ca3af;
}

@media (min-width: 641px) {
    .bj-tab-label {
        display: inline;
    }

    .bj-tab-count {
        display: inline;
    }
}

.bj-experience-content {
    margin-top: 24px;
}

.bj-experience-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.bj-experience-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bj-experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.bj-experience-card {
    padding: 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    cursor: pointer;
}

.bj-experience-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.bj-exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.bj-exp-header h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.bj-exp-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.bj-exp-badge.fresher {
    background: #dcfce7;
    color: #15803d;
}

.bj-exp-badge.mid {
    background: #dbeafe;
    color: #0c4a6e;
}

.bj-exp-badge.senior {
    background: #fecaca;
    color: #7c2d12;
}

.bj-exp-details {
    font-size: 12px;
}

.bj-exp-details p {
    margin: 4px 0;
    color: #6b7280;
}

.bj-exp-details p strong {
    color: #1f2937;
    font-weight: 700;
}

.bj-exp-salary {
    color: #2563eb !important;
    font-weight: 600;
}

@media (max-width: 640px) {
    .bj-experience-tabs {
        gap: 8px;
    }

    .bj-experience-tab {
        padding: 10px 16px;
    }

    .bj-experience-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LATEST JOBS SECTION
   ============================================ */

.bj-latest-jobs-section {
    background: #ffffff;
}

.bj-latest-jobs-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    width: 100%;
    margin-bottom: 32px;
}

.bj-latest-job-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    cursor: pointer;
}

.bj-latest-job-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
    background: #f9fafb;
}

.bj-latest-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.bj-latest-job-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px;
    line-height: 1.4;
}

.bj-latest-job-company {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bj-latest-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.bj-latest-job-posted {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    white-space: nowrap;
}

.bj-latest-job-details {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bj-latest-location,
.bj-latest-salary {
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
}

.bj-load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.bj-load-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: white;
    border: 2px solid #2563eb;
    border-radius: 8px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.bj-load-more-btn:hover {
    background: #2563eb;
    color: white;
}

.bj-load-more-btn:active {
    transform: scale(0.98);
}

.bj-load-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.bj-load-more-btn.loading .bj-load-spinner {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .bj-latest-jobs-feed {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bj-latest-job-header {
        flex-direction: column;
    }

    .bj-latest-job-posted {
        align-self: flex-start;
    }
}

/* ============================================
   INTERNSHIPS CAROUSEL SECTION
   ============================================ */

.bj-internships-section {
    background: #ffffff;
}

.bj-internship-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 32px 0;
}

.bj-carousel-inner {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bj-carousel-slide {
    flex: 0 0 100%;
    display: none;
}

.bj-carousel-slide.active {
    display: block;
}

.bj-internship-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #dbeafe;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    cursor: pointer;
    min-height: 360px;
}

.bj-internship-card:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
    transform: translateY(-2px);
}

.bj-internship-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.bj-internship-role {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.bj-internship-type {
    display: inline-block;
    padding: 4px 12px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.bj-internship-company {
    font-size: 13px;
    color: #2563eb;
    font-weight: 600;
    margin: 0;
}

.bj-internship-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid #bfdbfe;
    border-bottom: 1px solid #bfdbfe;
}

.bj-detail-item {
    display: flex;
    gap: 8px;
}

.bj-detail-icon {
    font-size: 20px;
}

.bj-detail-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bj-detail-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 700;
    margin: 2px 0 0;
}

.bj-internship-skills {
    flex: 1;
}

.bj-skills-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bj-skills-list {
    font-size: 13px;
    color: #1f2937;
    line-height: 1.5;
    margin: 0;
}

.bj-internship-cta {
    padding: 12px 16px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
}

.bj-internship-cta:hover {
    background: #1d4ed8;
    transform: translateX(4px);
}

.bj-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2563eb;
    transition: all 0.2s;
}

.bj-carousel-nav:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bj-carousel-prev {
    left: 16px;
}

.bj-carousel-next {
    right: 16px;
}

.bj-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.bj-dot {
    width: 10px;
    height: 10px;
    background: #e5e7eb;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.bj-dot:hover {
    background: #d1d5db;
}

.bj-dot.active {
    background: #2563eb;
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 640px) {
    .bj-internship-card {
        padding: 16px;
        min-height: auto;
    }

    .bj-internship-role {
        font-size: 16px;
    }

    .bj-internship-details {
        grid-template-columns: 1fr;
    }

    .bj-carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .bj-carousel-prev {
        left: 8px;
    }

    .bj-carousel-next {
        right: 8px;
    }
}

/* ============================================
   USP SECTION
   ============================================ */

.bj-usp-section {
    background: #ffffff;
}

.bj-usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.bj-usp-card {
    padding: 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bj-usp-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
}

.bj-usp-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.bj-usp-card:hover .bj-usp-icon {
    transform: scale(1.1) rotate(5deg);
}

.bj-usp-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
    line-height: 1.3;
}

.bj-usp-description {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.bj-usp-cta-section {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    text-align: center;
}

.bj-usp-cta-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
}

.bj-usp-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.bj-usp-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .bj-usp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bj-usp-card {
        padding: 16px;
    }

    .bj-usp-title {
        font-size: 15px;
    }

    .bj-usp-description {
        font-size: 12px;
    }

    .bj-usp-cta-section {
        padding: 24px;
    }

    .bj-usp-cta-section h3 {
        font-size: 16px;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.bj-testimonials-section {
    background: #ffffff;
}

.bj-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.bj-testimonial-card {
    padding: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.bj-testimonial-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.bj-testimonial-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.bj-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    flex-shrink: 0;
    object-fit: cover;
}

.bj-testimonial-author {
    flex: 1;
}

.bj-testimonial-author h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.bj-testimonial-author p {
    font-size: 12px;
    color: #6b7280;
    margin: 2px 0 0;
}

.bj-testimonial-quote {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 12px;
    font-style: italic;
    border-left: 3px solid #dbeafe;
    padding-left: 12px;
}

.bj-testimonial-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.bj-tsstat,
.bj-tstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bj-tstat-value {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
}

.bj-tstat-label {
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
}

.bj-testimonials-cta {
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #dbeafe;
    border-radius: 12px;
    text-align: center;
}

.bj-testimonials-cta h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.bj-testimonials-cta p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.bj-testimonials-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.bj-testimonials-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

@media (max-width: 640px) {
    .bj-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .bj-testimonial-card {
        padding: 16px;
    }

    .bj-testimonial-quote {
        font-size: 12px;
    }

    .bj-testimonials-cta {
        padding: 24px;
    }

    .bj-testimonials-cta h3 {
        font-size: 18px;
    }
}

/* ============================================
   EMPLOYER SECTION
   ============================================ */

.bj-employer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 16px;
}

.bj-employer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.bj-employer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bj-employer-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #dbeafe;
    color: #0c4a6e;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.bj-employer-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.bj-employer-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.bj-employer-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bj-employer-features li {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.bj-employer-cta {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.bj-employer-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.bj-employer-btn-primary {
    background: #2563eb;
    color: white;
}

.bj-employer-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.bj-employer-btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.bj-employer-btn-secondary:hover {
    background: #eff6ff;
}

.bj-employer-footer {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.bj-employer-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.bj-employer-footer a:hover {
    text-decoration: underline;
}

.bj-employer-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bj-employer-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    padding: 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.bj-employer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
}

.bj-employer-number {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.bj-employer-label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 500;
}

.bj-employer-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.bj-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.bj-benefit-item:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.bj-benefit-icon {
    font-size: 24px;
}

.bj-benefit-text {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

@media (max-width: 768px) {
    .bj-employer-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bj-employer-content h2 {
        font-size: 24px;
    }

    .bj-employer-cta {
        flex-direction: column;
    }

    .bj-employer-btn {
        width: 100%;
        text-align: center;
    }

    .bj-employer-card {
        grid-template-columns: 1fr;
    }

    .bj-employer-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bj-employer-section {
        padding: 32px 0;
        margin: 32px 0;
    }

    .bj-employer-content h2 {
        font-size: 22px;
    }

    .bj-employer-subtitle {
        font-size: 14px;
    }

    .bj-employer-features li {
        font-size: 13px;
    }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.bj-footer-section {
    background: #1f2937;
    color: #e5e7eb;
    padding: 48px 0 24px;
    margin-top: 80px;
}

.bj-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.bj-footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 8px;
}

.bj-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bj-footer-links li {
    margin: 0;
}

.bj-footer-links a {
    font-size: 13px;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.bj-footer-links a:hover {
    color: #2563eb;
    transform: translateX(4px);
}

.bj-footer-divider {
    height: 1px;
    background: #374151;
    margin: 32px 0;
}

.bj-footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.bj-footer-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
}

.bj-footer-info p {
    font-size: 13px;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0 0 12px;
}

.bj-footer-social {
    display: flex;
    gap: 12px;
}

.bj-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
}

.bj-footer-social a:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.bj-footer-legal {
    text-align: right;
}

.bj-footer-legal p {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .bj-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .bj-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bj-footer-column h4 {
        font-size: 13px;
    }

    .bj-footer-links a {
        font-size: 12px;
    }

    .bj-footer-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bj-footer-legal {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .bj-footer-section {
        padding: 32px 0 16px;
        margin-top: 48px;
    }

    .bj-footer-grid {
        gap: 16px;
    }

    .bj-footer-column h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .bj-footer-links {
        gap: 6px;
    }

    .bj-footer-links a {
        font-size: 11px;
    }

    .bj-footer-divider {
        margin: 24px 0;
    }

    .bj-footer-info h3 {
        font-size: 16px;
    }

    .bj-footer-info p {
        font-size: 12px;
    }
}
