/* ============================================================
   ADDITIONAL CUSTOM STYLES
   These styles work alongside existing CSS without conflicts
   ============================================================ */

/* Experience Badge - For senior employees */
.experience-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Profile Completion Badge */
.completion-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(2px);
}

/* Employee Details Section */
.employee-details {
    display: flex;
    gap: 15px;
    margin: 12px 0;
    padding: 8px 0;
    font-size: 13px;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.detail-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.detail-item i {
    font-size: 12px;
    color: #cda45e;
}

/* Employee Summary Text */
.employee-summary {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 12px 0;
}

/* Employee Footer (Salary + Button) */
.employee-footer {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Salary Information */
.salary-info {
    display: flex;
    flex-direction: column;
}

.salary-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salary-amount {
    font-size: 18px;
    font-weight: 700;
    color: #cda45e;
}

.salary-period {
    font-size: 11px;
    color: #999;
}

/* View Profile Button */
.view-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #cda45e;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    background: #b48a3a;
    color: #fff;
    transform: translateX(3px);
}

/* Rating Stars Container */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.03);
    border-radius: 30px;
    width: fit-content;
}

.rating-stars i {
    color: #ffc107;
    font-size: 13px;
}

.rating-stars .rating-value {
    margin-left: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

/* User Type Badges (Employer/Employee) */
.user-type-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 5px;
}

.user-type-badge.employer {
    background: #e3f2fd;
    color: #1976d2;
}

.user-type-badge.employee {
    background: #e8f5e9;
    color: #388e3c;
}

.user-type-badge i {
    margin-right: 3px;
    font-size: 10px;
}

/* Testimonial Author Info */
.testimonial-author .author-info {
    flex: 1;
}

/* Job Count Badge on Location Cards */
.job-count-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-count-badge i {
    font-size: 10px;
}

/* View Jobs Link */
.view-jobs-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #cda45e;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.view-jobs-link:hover {
    gap: 10px;
    color: #b48a3a;
}

/* Location Statistics Boxes */
.location-stats {
    margin: 20px 0;
}

.stat-box {
    background: rgba(0,0,0,0.03);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.stat-box i {
    font-size: 24px;
    color: #cda45e;
}

.stat-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.stat-info span {
    font-size: 11px;
    color: #666;
}

/* Featured Job Badge */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.featured-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700;
    color: #000;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    z-index: 10;
}

/* Category Badge on Job Cards */
.room-category-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .employee-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .employee-details {
        flex-wrap: wrap;
        gap: 8px;
    }

    .detail-item {
        font-size: 11px;
    }

    .stat-box {
        padding: 8px;
    }

    .stat-box i {
        font-size: 20px;
    }

    .stat-info h4 {
        font-size: 16px;
    }

    .rating-stars {
        font-size: 11px;
    }
}

/* Additional styles for employee listing page */
.employee-location {
    font-size: 12px;
}

.license-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    color: #ffc107;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge.bg-info {
    background-color: #17a2b8 !important;
    font-size: 10px;
    padding: 2px 6px;
}

.pagination .page-link {
    color: #cda45e;
}

.pagination .active .page-link {
    background-color: #cda45e;
    border-color: #cda45e;
    color: #fff;
}

.pagination .page-link:hover {
    color: #b48a3a;
}

@media (max-width: 768px) {
    .facility-card {
        margin-bottom: 20px;
    }

    .employee-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-profile-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.logo-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .logo-circle img {
            width: 70%;
            height: auto;
        }
        .progress-xxs {
            height: 5px;
            margin-top: 8px;
        }
        .password-toggle {
            cursor: pointer;
        }
        .error-field {
            border-color: #dc3545 !important;
        }

.logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-circle img {
  width: 70%;
  height: auto;
}

/* Additional styles for job listing page */
.job-meta small {
    font-size: 12px;
    margin-bottom: 4px;
}

.job-description {
    font-size: 13px;
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 10px;
}

.salary-info {
    border-top: 1px solid #e9ecef;
    padding-top: 10px;
}

.featured-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffc107;
    color: #000;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
}

.pagination .page-link {
    color: #cda45e;
}

.pagination .active .page-link {
    background-color: #cda45e;
    border-color: #cda45e;
    color: #fff;
}

.pagination .page-link:hover {
    color: #b48a3a;
}

@media (max-width: 768px) {
    .facility-card {
        margin-bottom: 20px;
    }
}

/* ============================================================
   ADDITIONAL CUSTOM STYLES
   These styles work alongside existing CSS without conflicts
   ============================================================ */

/* Experience Badge - For senior employees */
.experience-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Profile Completion Badge */
.completion-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(2px);
}

/* Employee Details Section */
.employee-details {
    display: flex;
    gap: 15px;
    margin: 12px 0;
    padding: 8px 0;
    font-size: 13px;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.detail-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.detail-item i {
    font-size: 12px;
    color: #cda45e;
}

/* Employee Summary Text */
.employee-summary {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 12px 0;
}

/* Employee Footer (Salary + Button) */
.employee-footer {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Salary Information */
.salary-info {
    display: flex;
    flex-direction: column;
}

.salary-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salary-amount {
    font-size: 18px;
    font-weight: 700;
    color: #cda45e;
}

.salary-period {
    font-size: 11px;
    color: #999;
}

/* View Profile Button */
.view-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #cda45e;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    background: #b48a3a;
    color: #fff;
    transform: translateX(3px);
}

/* Rating Stars Container */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.03);
    border-radius: 30px;
    width: fit-content;
}

.rating-stars i {
    color: #ffc107;
    font-size: 13px;
}

.rating-stars .rating-value {
    margin-left: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

/* User Type Badges (Employer/Employee) */
.user-type-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 5px;
}

.user-type-badge.employer {
    background: #e3f2fd;
    color: #1976d2;
}

.user-type-badge.employee {
    background: #e8f5e9;
    color: #388e3c;
}

.user-type-badge i {
    margin-right: 3px;
    font-size: 10px;
}

/* Testimonial Author Info */
.testimonial-author .author-info {
    flex: 1;
}

/* Job Count Badge on Location Cards */
.job-count-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-count-badge i {
    font-size: 10px;
}

/* View Jobs Link */
.view-jobs-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #cda45e;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.view-jobs-link:hover {
    gap: 10px;
    color: #b48a3a;
}

/* Location Statistics Boxes */
.location-stats {
    margin: 20px 0;
}

.stat-box {
    background: rgba(0,0,0,0.03);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.stat-box i {
    font-size: 24px;
    color: #cda45e;
}

.stat-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.stat-info span {
    font-size: 11px;
    color: #666;
}

/* Featured Job Badge */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.featured-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700;
    color: #000;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    z-index: 10;
}

/* Category Badge on Job Cards */
.room-category-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .employee-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .employee-details {
        flex-wrap: wrap;
        gap: 8px;
    }

    .detail-item {
        font-size: 11px;
    }

    .stat-box {
        padding: 8px;
    }

    .stat-box i {
        font-size: 20px;
    }

    .stat-info h4 {
        font-size: 16px;
    }

    .rating-stars {
        font-size: 11px;
    }
}

.faq-category-card {
            transition: transform 0.3s ease;
        }
        .faq-category-card:hover {
            transform: translateY(-5px);
        }
        .faq-question {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .faq-question:hover {
            color: #cda45e;
        }
        .faq-answer {
            display: none;
            padding-top: 15px;
        }
        .faq-answer.show {
            display: block;
        }
        .faq-question i {
            transition: transform 0.3s ease;
        }
        .faq-question.active i {
            transform: rotate(90deg);
        }
