/* ==========================================
   CUSTOM CSS - Centralized Styles
   Extracted from inline styles in Blade templates
   ========================================== */

/* ==========================================
   1. AUTH PAGES
   ========================================== */

/* Login/Register Page Container */
.auth-page {
    height: 100vh;
    display: flex;
    align-items: center;
    background: #f5f5f5;
}

.auth-container-fluid {
    height: 100%;
}

.auth-row {
    height: 100%;
}

/* Left Panel - Side Panel with Background Image */
.auth-side-panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* padding: 40px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-side-panel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    z-index: 0;
}

.auth-side-panel-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-logo {
    max-width: 150px;
}

.auth-testimonial-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white-color);
}

.auth-testimonial-wrapper {
    text-align: left;
    width: 100%;
    max-width: 400px;
}

.auth-testimonial-quote {
    font-family: var(--font-suse);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--white-color);
}

.auth-testimonial-name {
    font-family: var(--font-bricolageGrotesque);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white-color);
}

.auth-testimonial-title {
    font-family: var(--font-suse);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Right Panel - Form Container */
.auth-form-panel {
    background: var(--white-color);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-form-wrapper {
    max-width: 450px;
    width: 100%;
}

.auth-form-header {
    margin-bottom: 40px;
}

.auth-form-title {
    font-family: var(--font-bricolageGrotesque);
    font-weight: 600;
    font-size: 32px;
    color: var(--title-color);
    margin-bottom: 12px;
    line-height: 1.2;
}

.auth-form-subtitle {
    font-family: var(--font-suse);
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;
}

.auth-form-button {
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
    border: none;
    padding: 18px;
}

.auth-form-button-secondary {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px solid #E0E0E0;
    padding: 18px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.auth-form-link-container {
    text-align: center;
}

.auth-form-link {
    color: var(--text-color);
    font-family: var(--font-suse);
    font-size: 16px;
    text-decoration: none;
}

.auth-form-link-primary {
    color: var(--primary-color2);
    font-weight: 600;
    text-decoration: none;
}

.auth-form-input {
    border: 1px solid #E0E0E0;
    background: var(--white-color);
    border-radius: 8px;
}

.auth-otp-input {
    border: 1px solid #E0E0E0;
    background: var(--white-color);
    border-radius: 8px;
    text-align: center;
    font-size: 24px;
    letter-spacing: 8px;
    font-weight: 600;
}

.auth-label {
    color: var(--title-color);
}

.auth-error-message {
    display: block;
    color: var(--primary-color1);
    margin-top: 5px;
}

/* Auth Login Slider */
.auth-login-slider-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.auth-login-slider {
    width: 100%;
    height: 100%;
}

.auth-login-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-login-slider .auth-slide {
    height: 100%;
}

.auth-login-slider .auth-side-panel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    z-index: 0;
}

.auth-login-slider .auth-side-panel-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Slider Pagination */
.auth-slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto !important;
}

.auth-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.auth-slider-pagination .swiper-pagination-bullet-active {
    background: var(--white-color);
    width: 30px;
    border-radius: 5px;
}

/* ==========================================
   2. PROFILE PAGES
   ========================================== */

/* Profile Container */
.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.profile-edit-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Profile Header Banner */
.profile-header-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 200px;
}

.banner-upload-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.banner-upload-btn i {
    font-size: 18px;
    color: #333;
}

.profile-header-content {
    position: relative;
    padding: 40px;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

/* Profile Photo */
.profile-photo-container {
    position: relative;
    z-index: 5;
}

.profile-photo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.profile-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F53003 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.photo-edit-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #F53003;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.photo-edit-btn i {
    font-size: 16px;
    color: white;
}

.profile-photo-small {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.profile-photo-placeholder-small {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F53003 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    font-weight: bold;
    border: 3px solid #f0f0f0;
}

/* Profile Info */
.profile-info {
    flex: 1;
    min-width: 250px;
    color: white;
}

.profile-name {
    font-family: var(--font-bricolageGrotesque);
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin: 0 0 10px 0;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.profile-location i {
    color: #fff;
}

.about-me-section {
    margin-top: 20px;
}

.about-me-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.about-me-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.edit-icon-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.edit-icon-btn i {
    font-size: 14px;
}

.about-me-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.profile-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.profile-action-btn {
    padding: 10px 20px;
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    border-radius: 4px;
}

.profile-action-link {
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    border-radius: 4px;
    background: transparent;
}

.privacy-btn {
    background: none;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
}

/* Profile Messages */
.profile-messages {
    margin-bottom: 20px;
}

/* Profile Sections */
.profile-main-left,
.profile-main-right {
    /* Grid columns handled by parent grid */
}

.profile-section-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.profile-section-title {
    font-family: var(--font-bricolageGrotesque);
    font-size: 20px;
    font-weight: 600;
    color: var(--title-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-section-title i {
    color: #F53003;
    font-size: 18px;
}

.profile-section-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.add-btn {
    background: #2196F3;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 18px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.edit-icon-btn-dark {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.edit-icon-btn-dark i {
    font-size: 16px;
}

.profile-section-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-item {
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-item:last-child,
.profile-item.profile-item-last {
    border-bottom: none;
}

.profile-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 15px;
}

.profile-item-main {
    flex: 1;
}

.profile-item-icon {
    width: 40px;
    height: 40px;
    background: #2196F3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-item-icon i {
    color: white;
    font-size: 20px;
}

.profile-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--title-color);
    margin: 0;
}

.profile-item-meta {
    margin-top: 10px;
}

.profile-item-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

.profile-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.profile-empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.profile-empty-state p {
    margin: 0;
}

/* Profile Grid - Now using Bootstrap row/col */
/* Removed custom grid, using Bootstrap's responsive grid system */

/* Profile Edit Page */
.profile-edit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.profile-edit-title {
    font-family: var(--font-bricolageGrotesque);
    font-size: 28px;
    font-weight: 600;
    color: var(--title-color);
    margin: 0;
}

.profile-edit-cancel {
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    color: var(--text-color);
}

.profile-edit-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.profile-edit-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--title-color);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.profile-edit-field {
    margin-bottom: 30px;
}

.profile-edit-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--title-color);
}

.profile-edit-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.profile-edit-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
}

.profile-edit-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.profile-edit-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ==========================================
   3. MODALS & COMPONENTS
   ========================================== */

/* Modal Backdrop */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.show {
    display: block;
    opacity: 1 !important;
}

/* Profile Modal */
.profile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    overflow-y: auto;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.profile-modal.show {
    display: block;
    opacity: 1 !important;
    transform: scale(1) !important;
}

.profile-modal.show .modal-content {
    transform: translateY(0) !important;
}

.modal-dialog {
    min-height: calc(100% - 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    margin: 0 auto;
    width: 100%;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    border-radius: 12px 12px 0 0;
}

.modal-title {
    font-family: var(--font-bricolageGrotesque);
    font-size: 24px;
    font-weight: 600;
    color: var(--title-color);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: #f0f0f0 !important;
}

.modal-body {
    padding: 30px;
}

/* Modal Form Elements */
.modal-section-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--title-color);
}

.modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-form-field {
    margin-bottom: 20px;
}

.modal-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--title-color);
}

.modal-label-required::after {
    content: ' *';
    color: #F53003;
}

.modal-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.modal-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
}

.modal-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.modal-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 25px;
}

.modal-btn-close {
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    font-size: 14px;
}

.modal-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-item-content {
    flex: 1;
}

.modal-item-meta {
    color: #666;
    font-size: 14px;
}

.modal-btn-remove {
    background: #f44336;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

/* Date Selector Component */
.date-selector-field {
    margin-bottom: 20px;
}

.date-selector-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.date-selector-label-required::after {
    content: ' *';
    color: red;
}

.date-selector-grid {
    display: flex;
    gap: 15px;
}

.date-selector-group {
    flex: 1;
}

.date-selector-sub-label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: #666;
}

.date-selector-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.date-selector-error {
    color: red;
    font-size: 12px;
}

.date-selector-error-full {
    color: red;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        padding: 1rem !important;
        max-width: 100% !important;
    }

    .modal-content {
        max-height: 95vh !important;
    }

    .modal-header {
        padding: 15px 20px !important;
    }

    .modal-body {
        padding: 20px !important;
    }

    .modal-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   4. EMAIL TEMPLATES
   ========================================== */

.email-body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.email-container {
    padding: 30px;
    border-radius: 5px;
}

.email-title {
    color: #000;
    margin-top: 0;
}

.email-text {
    color: #000;
}

.email-list {
    color: #000;
}

.email-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    color: #000;
}

.email-footer-small {
    color: #000;
    font-size: 14px;
}

/* ==========================================
   5. UTILITY CLASSES
   ========================================== */

/* Messages */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: var(--font-suse);
    font-size: 14px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.error-list {
    margin: 0;
    padding-left: 20px;
}

/* Form Elements */
.form-input-default {
    border: 1px solid #E0E0E0;
    background: var(--white-color);
    border-radius: 8px;
}

.form-input-focus {
    border-color: var(--primary-color2);
}

.form-input-default:focus {
    border-color: var(--primary-color2);
    outline: none;
}

.form-label-default {
    color: var(--title-color);
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-title-color {
    color: var(--title-color);
}

.text-text-color {
    color: var(--text-color);
}

.text-primary {
    color: var(--primary-color1);
}

.text-primary2 {
    color: var(--primary-color2);
}

.text-white {
    color: white;
}

.text-muted {
    color: #666;
}

.text-error {
    color: red;
}

.text-small {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

/* Spacing Utilities */
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }

/* Display Utilities */
.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: start;
}

.items-end {
    align-items: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* Width Utilities */
.w-full {
    width: 100%;
}

.max-w-400 {
    max-width: 400px;
}

.max-w-450 {
    max-width: 450px;
}

/* Colors */
.bg-white {
    background: var(--white-color);
}

.bg-light-gray {
    background: #f9f9f9;
}

.bg-gray {
    background: #f0f0f0;
}

/* Borders */
.border-none {
    border: none;
}

.border-gray {
    border: 1px solid #ddd;
}

.border-2-gray {
    border: 2px solid #ddd;
}

/* Border Radius */
.rounded {
    border-radius: 4px;
}

.rounded-lg {
    border-radius: 8px;
}

.rounded-xl {
    border-radius: 12px;
}

.rounded-full {
    border-radius: 50%;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Hidden */
.hidden {
    display: none;
}

/* Required Indicator */
.required-indicator {
    color: #F53003;
}

.required-indicator-red {
    color: red;
}

/* Checkbox/Radio Styling */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.checkbox-label-text {
    font-weight: 500;
}

/* Resume Upload Status */
.resume-status-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 4px;
}

.resume-status-icon {
    font-size: 24px;
    color: #4CAF50;
}

.resume-status-text {
    color: #4CAF50;
    font-weight: 500;
}

.resume-status-empty {
    padding: 10px;
    background: #f0f0f0;
    border-radius: 4px;
    color: #999;
}

.resume-help-text {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

/* ==========================================
   6. PROFILE SHOW PAGE - EXTRACTED STYLES
   ========================================== */

/* Gradient Cards */
.profile-card-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: white;
}

.profile-card-gradient-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: white;
}

/* Section Headers */
.profile-section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.profile-section-header-flex-lg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.profile-section-title-white {
    font-family: var(--font-bricolageGrotesque);
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Edit Buttons */
.edit-icon-btn-white {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.edit-icon-btn-white i {
    font-size: 16px;
}

.edit-icon-btn-gray {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.edit-icon-btn-gray i {
    font-size: 16px;
}

/* Text Styles */
.profile-text-white {
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin: 0;
}

/* Skills & Languages Tags */
.profile-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.profile-tag {
    background: #f8f9fa;
    padding: 10px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-tag-name {
    font-weight: 500;
    color: var(--title-color);
}

.profile-tag-badge {
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    color: #666;
}

/* Empty States */
.profile-empty-text {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 20px 0;
}

/* Work History & Experience Items */
.profile-experience-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-experience-item {
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-experience-item:last-child {
    border-bottom: none;
}

.profile-experience-content {
    flex: 1;
}

.profile-experience-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--title-color);
    margin: 0 0 5px 0;
}

.profile-experience-subtitle {
    color: var(--text-color);
    margin: 5px 0;
    font-weight: 500;
}

.profile-experience-location {
    color: #666;
    margin: 5px 0;
}

.profile-experience-meta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.profile-experience-date {
    color: #666;
    font-size: 14px;
}

.profile-experience-description {
    color: var(--text-color);
    margin-top: 10px;
    line-height: 1.6;
}

/* GitHub Card */
.profile-github-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.profile-github-card:hover {
    transform: translateY(-2px);
}

.profile-github-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-github-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.profile-github-text {
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

/* Profile Completion Card */
.profile-completion-card {
    text-align: center;
}

.profile-completion-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.profile-completion-svg {
    transform: rotate(-90deg);
}

.profile-completion-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 600;
    color: var(--title-color);
}

.profile-completion-tip {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Empty State with Button */
.profile-empty-state-center {
    text-align: center;
    padding: 20px 0;
}

.profile-empty-state-text {
    color: #999;
    font-style: italic;
    margin-bottom: 15px;
}

.profile-empty-state-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* Social Links */
.profile-social-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.profile-social-link:hover {
    background: #e9ecef;
    text-decoration: none;
    color: var(--text-color);
}

.profile-social-link-icon {
    font-size: 20px;
}

.profile-social-link-icon-linkedin {
    color: #0077b5;
}

.profile-social-link-icon-twitter {
    color: #1DA1F2;
}

.profile-social-link-arrow {
    margin-left: auto;
}

/* Work Preferences */
.profile-preferences-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-preference-item {
    /* Container for each preference */
}

.profile-preference-label {
    color: #666;
    font-size: 14px;
}

.profile-preference-value {
    margin: 5px 0 0 0;
    color: var(--title-color);
    font-weight: 500;
}

.profile-preference-value-text {
    margin: 5px 0 0 0;
    color: var(--text-color);
    line-height: 1.6;
}

.profile-hobbies-text {
    line-height: 1.6;
    margin: 0;
}

/* Credential Link */
.profile-credential-link {
    color: #2196F3;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
}

.profile-credential-link:hover {
    text-decoration: underline;
    color: #1976D2;
}

/* Responsive Grid for Additional Sections */
@media (max-width: 968px) {
    .profile-additional-sections {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   NEW PROFILE PAGE DESIGN - TalentConnect Style
   ========================================== */

/* Profile Main Card */
.profile-main-card {
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: none;
}

/* Profile Header Section */
.profile-header-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Large Profile Photo */
.profile-photo-large-container {
    position: relative;
    flex-shrink: 0;
}

.profile-photo-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-photo-large-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EB1542 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.photo-edit-overlay-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #EB1542;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: white;
    transition: all 0.2s ease;
}

.photo-edit-overlay-btn:hover {
    background: #c41238;
    transform: scale(1.05);
}

.photo-edit-overlay-btn i {
    font-size: 16px;
}

/* Profile Info Section */
.profile-info-section {
    flex: 1;
    min-width: 250px;
}

.profile-name-large {
    font-family: var(--font-bricolageGrotesque);
    font-size: 32px;
    font-weight: 700;
    color: var(--title-color);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.profile-status-line {
    font-family: var(--font-suse);
    font-size: 16px;
    color: var(--text-color);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.profile-location-large {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 15px;
}

.profile-location-large i {
    color: var(--primary-color1);
    font-size: 18px;
}

.profile-headline {
    font-family: var(--font-suse);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.profile-public-url-large {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.profile-public-url-large i {
    color: var(--primary-color1);
    font-size: 16px;
}

.profile-public-url-large a {
    color: var(--primary-color1);
    text-decoration: none;
    word-break: break-all;
}

.profile-public-url-large a:hover {
    text-decoration: underline;
}

/* Action Buttons */
.profile-action-buttons-large {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.profile-edit-btn {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: var(--title-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.profile-edit-btn:hover {
    background: #e8e8e8;
    border-color: #d0d0d0;
}

.profile-add-btn {
    background: #EB1542;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.profile-add-btn:hover {
    background: #c41238;
    color: white;
}

/* Bio Section */
.profile-bio-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.profile-bio-text {
    font-family: var(--font-suse);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* Video Section */
.profile-video-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.profile-video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.profile-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.profile-video-placeholder {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    border: 2px dashed #d0d0d0;
}

.profile-video-placeholder i {
    font-size: 48px;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.profile-video-placeholder p {
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Profile Strength Card */
.profile-strength-card {
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Move Profile Strength Card to top on mobile */
@media (max-width: 991px) {
    .profile-container .row.g-4 {
        display: flex;
        flex-direction: column;
    }

    .profile-container .col-lg-4:has(.profile-strength-card) {
        order: -1;
    }

    /* Fallback for browsers that don't support :has() */
    .profile-container .col-lg-4.profile-strength-column {
        order: -1;
    }
}

.profile-strength-title {
    font-family: var(--font-bricolageGrotesque);
    font-size: 18px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 15px;
}

.profile-strength-level {
    color: #EB1542;
    font-weight: 600;
}

.profile-strength-progress {
    margin-bottom: 15px;
}

.profile-strength-progress-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.profile-strength-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #EB1542 0%, #ff6b35 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.profile-strength-percentage {
    display: block;
    text-align: right;
    margin-top: 5px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.profile-strength-tip {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

/* Resume Section */
.profile-section-title-small {
    font-family: var(--font-bricolageGrotesque);
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 15px;
}

.profile-resume-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.profile-resume-item:hover {
    background: #f0f0f0;
}

.profile-resume-icon {
    width: 40px;
    height: 40px;
    background: #EB1542;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-resume-icon i {
    font-size: 20px;
    color: white;
}

.profile-resume-info {
    flex: 1;
    min-width: 0;
}

.profile-resume-filename {
    font-size: 14px;
    font-weight: 500;
    color: var(--title-color);
    margin: 0 0 4px 0;
    word-break: break-word;
}

.profile-resume-date {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
}

.profile-resume-download {
    color: var(--text-color);
    font-size: 18px;
    padding: 8px;
    transition: color 0.2s ease;
}

.profile-resume-download:hover {
    color: #EB1542;
}

/* Verification Section */
.profile-verification-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-verification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.profile-verification-item:last-child {
    border-bottom: none;
}

.profile-verification-label {
    font-size: 14px;
    color: var(--text-color);
}

.profile-verification-status {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-verification-status.verified {
    color: #28a745;
}

.profile-verification-status.verified i {
    color: #28a745;
}

.profile-verification-status.pending {
    color: #ffc107;
}

.profile-verification-status.pending i {
    color: #ffc107;
}

/* Social Links - Updated Style */
.profile-social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: var(--title-color);
    margin-bottom: 10px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.profile-social-link-item:hover {
    background: #f0f0f0;
    border-color: #e0e0e0;
    color: var(--title-color);
    text-decoration: none;
}

.profile-social-link-item i:first-child {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.profile-social-link-item i:last-child {
    margin-left: auto;
    font-size: 14px;
    color: var(--text-color);
}

.profile-social-link-icon-linkedin {
    color: #0077b5;
}

.profile-social-link-icon-twitter {
    color: #1da1f2;
}

/* Pink Tags for Skills */
.profile-tag-pink {
    background: #EB1542;
    color: white;
    border: none;
}

.profile-tag-pink .profile-tag-name {
    color: white;
}

.profile-tag-pink .profile-tag-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Empty State for Work History */
.profile-empty-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.profile-empty-icon i {
    font-size: 28px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 991px) {
    .profile-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-info-section {
        text-align: center;
    }

    .profile-action-buttons-large {
        justify-content: center;
    }

    .profile-name-large {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .profile-name-large {
        font-size: 24px;
    }

    .profile-status-line {
        font-size: 14px;
    }

    .profile-photo-large,
    .profile-photo-large-placeholder {
        width: 120px;
        height: 120px;
    }
}

/* ==========================================
   7. INFO ICON COMPONENT
   ========================================== */

.info-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 8px;
    cursor: help;
}

.info-icon-svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color2);
}

.info-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: #333;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.info-icon-wrapper:hover .info-tooltip {
    opacity: 1;
    visibility: visible;
}

.info-tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
}

