/* ==========================================================================
   TALENTEO CONSULTING - Custom CSS Premium
   Design moderne avec police Archivo/Inter, palette Bleu Nuit/Turquoise
   ========================================================================== */

/* Import Google Fonts - Archivo pour titres */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Variables CSS Premium - Charte Graphique Talenteo */
:root {
    /* Couleurs principales - Charte Hirable */
    --primary-color: #3dc1d3;
    /* Turquoise accent */
    --primary-dark: #2ba8b9;
    --primary-light: #5dd5e5;
    --secondary-color: #3dc1d3;
    --accent-color: #3dc1d3;

    /* Bleu Nuit Profond */
    --bg-deep-blue: #0f172a;
    --bg-dark-blue: #1a263f;
    --bg-darker-blue: #0a0f1c;
    --dark-color: #0f172a;

    /* Couleurs d'état */
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;

    /* Couleurs neutres */
    --light-color: #f8fafc;
    --white-off: #fafafa;
    /* Blanc Cassé */
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;

    /* Border Radius */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;

    /* Ombres */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-turquoise: 0 4px 20px rgba(61, 193, 211, 0.3);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* Typographie Premium - Archivo pour titres, Inter pour corps */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title h2,
.about-content-premium h2,
.services-header h2,
.why-choose-content-premium h2 {
    font-family: 'Archivo', 'Inter', sans-serif !important;
    font-weight: 800 !important;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    color: #fff;
    font-weight: 500;
    box-shadow: var(--shadow-medium);
    transform: translateX(400px);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    background: linear-gradient(135deg, var(--success-color), #1e7e34);
}

.toast.error {
    background: linear-gradient(135deg, var(--danger-color), #c82333);
}

.toast.info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.toast i {
    font-size: 18px;
}

/* ==========================================================================
   HEADER AUTH BUTTONS
   ========================================================================== */

.header-btn {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-dashboard {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
}

.btn-dashboard:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
    color: #fff !important;
}

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

/* Bouton Publier Admin - Visible et stylé */
.btn-publish {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: #fff !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 20px auto 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
    transition: var(--transition) !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}

.btn-publish:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4) !important;
    background: linear-gradient(135deg, var(--primary-dark), #1e40af) !important;
}

.btn-publish:active {
    transform: translateY(-1px) !important;
}

/* ==========================================================================
   ADMIN FORM SCROLLABLE & COMPACT
   ========================================================================== */

.admin-container {
    padding: 20px;
    min-height: calc(100vh - 150px);
}

/* Modal scrollable avec formulaire compact */
.modal-content {
    max-height: 90vh !important;
    display: flex;
    flex-direction: column;
}

.modal-body {
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 100px);
    padding: 25px !important;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray-200);
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Formulaire compact */
.admin-form-group {
    margin-bottom: 16px !important;
}

.admin-form-group label {
    font-size: 13px !important;
    margin-bottom: 6px !important;
    color: var(--gray-700) !important;
}

.admin-form-group input,
.admin-form-group select {
    padding: 10px 14px !important;
    font-size: 14px !important;
    border-radius: var(--border-radius-sm) !important;
    border: 1.5px solid var(--gray-300) !important;
    transition: var(--transition-fast) !important;
}

.admin-form-group input:focus,
.admin-form-group select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.admin-form-group textarea {
    padding: 12px 14px !important;
    font-size: 14px !important;
    min-height: 100px !important;
    resize: vertical;
    border-radius: var(--border-radius-sm) !important;
    border: 1.5px solid var(--gray-300) !important;
}

.admin-form-group textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

/* Form Grid compact */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Form actions fixed at bottom */
.form-actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 20px 0 0 !important;
    margin-top: 20px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Form Actions Layout */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.btn-secondary {
    background: #6c757d !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    transform: translateY(-2px);
}

/* Modern Form Grid avec Flexbox */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.full-width {
    grid-column: 1 / -1;
}

/* CV URL Input avec icône et validation */
.cv-url-input-area {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 20px;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    transition: var(--transition);
}

.cv-url-input-area:hover {
    border-color: rgba(59, 153, 189, 0.2);
    box-shadow: var(--shadow-medium);
}

.cv-url-input-area .form-group {
    position: relative;
    margin-bottom: 0;
}

.cv-url-input-area label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-size: 15px;
}

.cv-url-input-area label i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 16px;
}

.cv-url-input-area input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition);
    background: #fff;
}

.cv-url-input-area input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(59, 153, 189, 0.1);
    outline: none;
}

.cv-url-input-area input.valid {
    border-color: var(--success-color);
    background: rgba(40, 167, 69, 0.05);
}

.cv-url-input-area input.invalid {
    border-color: var(--danger-color);
    background: rgba(220, 53, 69, 0.05);
}

.cv-url-input-area .form-text {
    display: block;
    margin-top: 8px;
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
}

.cv-url-input-area .btn-default {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color)) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    box-shadow: var(--shadow-light) !important;
    margin-top: 15px !important;
}

.cv-url-input-area .btn-default:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium) !important;
}

/* Navigation Active State */
.nav-item .nav-link.active {
    color: var(--secondary-color) !important;
    font-weight: 600;
    position: relative;
}

.nav-item .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--dark-color));
    border-radius: 2px;
}

/* ==========================================================================
   ABOUT PAGE REDESIGN BLOCKS (Minimalist & Premium)
   ========================================================================== */

/* General About Section */
.about-section-premium {
    padding: 100px 0;
    background: transparent;
    overflow: hidden;
}

.about-accent-title {
    color: #3dc1d3;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.about-accent-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #3dc1d3;
    border-radius: 50%;
    margin-right: 15px;
    vertical-align: middle;
}

.about-main-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-main-title span {
    background: linear-gradient(135deg, #3dc1d3, #2ba8b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Block 1: Notre Profil */
.about-profile-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.profile-collage {
    position: relative;
    padding: 40px;
}

.collage-img-lg {
    width: 80%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.collage-img-sm {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border-radius: 24px;
    border: 10px solid #1a263f;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Block 2: Notre Parcours (Timeline) */
.parcours-timeline {
    position: relative;
    padding: 40px 0;
}

.parcours-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.parcours-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 24px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(to bottom, #3dc1d3, transparent);
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(61, 193, 211, 0.1);
    border: 2px solid #3dc1d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3dc1d3;
    font-weight: 800;
    font-size: 20px;
    z-index: 2;
}

.step-content h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Block 3: Nos Domaines d'Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(61, 193, 211, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
}

.expertise-card:hover {
    background: rgba(61, 193, 211, 0.05);
    border-color: rgba(61, 193, 211, 0.4);
    transform: translateY(-10px);
}

.expertise-icon {
    font-size: 40px;
    color: #3dc1d3;
    margin-bottom: 25px;
}

.expertise-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.expertise-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

/* Block 4: Vision & Mission */
.vision-mission-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.simple-card {
    padding: 50px;
    background: linear-gradient(145deg, rgba(255,255,255,0.02), transparent);
    border-left: 4px solid #3dc1d3;
    border-radius: 0 24px 24px 0;
}

.simple-card h3 {
    color: #3dc1d3;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.simple-card p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-main-title { 
        font-size: 28px !important; 
        text-align: center;
    }
    .about-section-premium {
        padding: 60px 0;
    }
    .vision-mission-clean { 
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .simple-card {
        padding: 30px 20px;
        border-radius: 12px;
        text-align: center;
        border-left: none;
        border-top: 4px solid #3dc1d3;
    }
    .parcours-step { 
        gap: 15px; 
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    .parcours-step::after {
        display: none; /* Hide timeline line on mobile stacking */
    }
    .expertise-card {
        padding: 30px 20px;
        text-align: center;
    }
    .about-section-premium p {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
    .profile-collage {
        padding: 20px;
        margin-top: 30px;
    }
}


/* Responsive Header / About Refinement */
@media (max-width: 768px) {
    .about-accent-title {
        justify-content: center;
        text-align: center;
        font-size: 14px;
    }
    
    .about-main-title {
        font-size: 24px !important;
        text-align: center;
        line-height: 1.3 !important;
    }

    .page-header-box h1 {
        font-size: 32px !important;
    }

    .about-section-premium {
        text-align: center;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    /* Texte sous-titre fluide sur mobile */
    .section-subtitle-mobile {
        max-width: 100% !important;
        padding: 0 15px !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        word-wrap: break-word;
        text-align: center;
    }
}

/* GSAP ANIMATION PREPARATION */
.gsap-reveal {
    visibility: hidden; /* Prevent flash before GSAP kicks in */
}

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

/* E-book Resources Section */
.resources-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.resources-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(59, 153, 189, 0.1);
    transition: var(--transition);
}

.resources-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.resources-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-light);
}

.resources-icon i {
    font-size: 36px;
    color: #fff;
}

.resources-box h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.resources-box p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-ebook {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-light);
}

.btn-ebook:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: #fff;
}

/* Form Sections avec icônes */
.form-section {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Labels avec icônes */
.admin-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.admin-form-group label i {
    color: var(--secondary-color);
    font-size: 14px;
    width: 16px;
}

/* Modal amélioré */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-weight: 600;
    font-size: 22px;
}

.close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

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

    .form-section {
        padding: 20px;
    }
}

/* Sign In/Sign Up Form Styles (moved from inline) */
.auth-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    margin: auto;
    padding: 100px 0px;
}

.auth-container h1 {
    color: white;
}

.auth-form-box {
    width: 100%;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.auth-form-box h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-form input {
    width: 90%;
    max-width: 300px;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: 0.3s;
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.auth-form input:focus {
    background: rgba(255, 255, 255, 0.3);
}

.auth-form button {
    width: 90%;
    max-width: 300px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #3b99bd, #02122f);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 153, 189, 0.7);
}

.auth-switch {
    text-align: center;
    color: #ccc;
    margin-top: 15px;
}

.auth-switch a {
    color: #3b99bd;
    font-weight: bold;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Jobs Page Styles */
.jobs-page-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.jobs-page-container h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.jobs-page-container .subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive adjustments for auth forms */
@media (max-width: 500px) {
    .auth-container {
        padding: 50px 15px;
    }

    .auth-form-box {
        padding: 20px 15px;
    }

    .auth-form input,
    .auth-form button {
        width: 100%;
        max-width: none;
    }
}

/* Admin Form Improvements */
.admin-form-group {
    margin-bottom: 20px;
}

.admin-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
    border-color: #3b99bd;
    outline: none;
}

.admin-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Image Loading Optimization */
img[loading="lazy"] {
    background-color: #f0f0f0;
}

/* ==========================================================================
   PREMIUM DESIGN STYLES
   Ombres légères, boutons arrondis, design moderne
   ========================================================================== */

/* Bouton Espace Client - Style distinct */
.btn-espace-client {
    background: linear-gradient(135deg, #3b99bd 0%, #02122f 100%) !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 153, 189, 0.3);
    transition: all 0.3s ease !important;
}

.btn-espace-client:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 153, 189, 0.4);
}

/* Bouton Déconnexion */
.btn-logout {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    color: #fff !important;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease !important;
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

/* Premium Cards - Ombres légères */
.service-item,
.about-body-item,
.mission-vision-item,
.benefits-body-item,
.contact-info-item {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover,
.about-body-item:hover,
.mission-vision-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Premium Buttons - Arrondis */
.btn-default {
    border-radius: 50px !important;
    padding: 14px 32px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease !important;
}

.btn-default:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Premium Form Inputs */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
    border-radius: 12px !important;
    border: 2px solid #e9ecef !important;
    padding: 14px 18px !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: #3b99bd !important;
    box-shadow: 0 0 0 4px rgba(59, 153, 189, 0.15) !important;
    outline: none;
}

/* Premium Footer */
.main-footer {
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.footer-links h3 {
    position: relative;
    padding-bottom: 12px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #3b99bd, #02122f);
    border-radius: 2px;
}

/* Premium Newsletter Form */
.newsletter-form .form-group {
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    border-radius: 50px !important;
    padding-right: 60px !important;
}

.newsletter-btn {
    border-radius: 50px !important;
    box-shadow: 0 2px 10px rgba(59, 153, 189, 0.3);
}

/* Premium Section Titles */
.section-title h2 span {
    background: linear-gradient(135deg, #3b99bd 0%, #02122f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title h3 {
    color: #3b99bd;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

/* Premium Job Cards */
.job-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 153, 189, 0.1);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 153, 189, 0.3);
}

.job-card .job-title {
    font-size: 20px;
    font-weight: 700;
    color: #02122f;
    margin-bottom: 8px;
}

.job-card .job-company {
    color: #3b99bd;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-card .job-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.job-card .job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-card .job-meta i {
    color: #3b99bd;
}

.job-card .job-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-card .apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b99bd 0%, #02122f 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 153, 189, 0.3);
}

.job-card .apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 153, 189, 0.4);
    color: #fff;
}

.job-card .job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.job-card .job-salary {
    font-weight: 600;
    color: #02122f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-card .job-salary i {
    color: #28a745;
}

/* Jobs Grid Layout */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
    min-height: 300px;
}

/* Featured Jobs Section */
.featured-jobs {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-color) 0%, #fff 100%);
}

/* Loading State */
.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* No Jobs Message */
.no-jobs-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.no-jobs-message i {
    font-size: 48px;
    color: var(--gray-400);
    margin-bottom: 20px;
    display: block;
}

.no-jobs-message p {
    margin: 5px 0;
    font-size: 16px;
}

/* Error Message */
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--danger-color);
}

.error-message i {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

/* Premium Modal Styles */
.modal-content {
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #3b99bd 0%, #02122f 100%);
    color: #fff;
    padding: 20px 25px;
}

.modal-header h2 {
    margin: 0;
    font-weight: 600;
}

/* Premium Admin Cards */
.admin-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.admin-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 153, 189, 0.3);
}

.admin-card .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.admin-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #02122f;
    margin-bottom: 12px;
}

.admin-card .card-description {
    color: #666;
    line-height: 1.6;
}

/* Premium Dashboard Header */
.dashboard-header {
    text-align: center;
    padding: 60px 20px 40px;
}

.dashboard-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #02122f;
    margin-bottom: 12px;
}

.dashboard-header p {
    color: #666;
    font-size: 18px;
}

/* Admin Grid */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Premium Profile Section */
.profile-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 40px auto;
    max-width: 800px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b99bd 0%, #02122f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(59, 153, 189, 0.3);
}

.profile-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #02122f;
    margin-bottom: 5px;
}

.profile-info p {
    color: #666;
    font-size: 16px;
}

/* Profile Details */
.profile-details {
    margin-bottom: 30px;
}

.detail-item {
    margin-bottom: 20px;
}

.detail-item label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-item p {
    font-size: 16px;
    color: #02122f;
    font-weight: 500;
    margin: 0;
}

/* CV Upload Section */
.cv-upload-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
}

.cv-upload-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #02122f;
    margin-bottom: 20px;
}

.cv-upload-area {
    border: 2px dashed #3b99bd;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cv-upload-area:hover {
    border-color: #02122f;
    background: rgba(59, 153, 189, 0.05);
}

.cv-upload-area i {
    font-size: 48px;
    color: #3b99bd;
    margin-bottom: 15px;
}

.cv-upload-area p {
    color: #666;
    margin-bottom: 20px;
}

.cv-upload-area input[type="file"] {
    display: none;
}

.cv-upload-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b99bd 0%, #02122f 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cv-upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 153, 189, 0.4);
}

.cv-status {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    display: none;
}

.cv-status.uploading {
    display: block;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.cv-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cv-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
    display: none;
}

.progress-bar-container.active {
    display: block;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #3b99bd 0%, #02122f 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

/* E-book Download Current CV */
.current-cv {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.current-cv i {
    font-size: 36px;
    color: #dc3545;
}

.current-cv-info {
    flex: 1;
}

.current-cv-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #02122f;
    margin-bottom: 5px;
}

.current-cv-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.current-cv .btn-view {
    background: #3b99bd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.current-cv .btn-view:hover {
    background: #02122f;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header h1 {
        font-size: 28px;
    }

    .profile-section {
        margin: 20px;
        padding: 25px;
    }
}

/* ==========================================================================
   CV URL INPUT STYLES
   ========================================================================== */

.cv-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cv-url-input-area {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.cv-url-input-area .form-group {
    margin-bottom: 0;
}

.cv-url-input-area label {
    display: block;
    font-weight: 600;
    color: #02122f;
    margin-bottom: 10px;
    font-size: 14px;
}

.cv-url-input-area label i {
    color: #3b99bd;
    margin-right: 8px;
}

.cv-url-input-area .form-text {
    display: block;
    margin-top: 8px;
    color: #888;
    font-size: 12px;
}

/* ==========================================================================
   ADMIN CANDIDATES STYLES
   ========================================================================== */

.candidates-title {
    color: #02122f;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.candidate-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 153, 189, 0.1);
}

.candidate-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.candidate-info {
    flex: 1;
    min-width: 250px;
}

.candidate-name {
    font-size: 18px;
    color: #02122f;
    margin-bottom: 10px;
}

.candidate-info div {
    color: #666;
    font-size: 14px;
    margin-bottom: 6px;
}

.candidate-info i {
    color: #3b99bd;
    width: 20px;
    margin-right: 8px;
}

.cv-status {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.cv-status.has-cv {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.cv-status.no-cv {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.btn-view-cv {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b99bd 0%, #02122f 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 153, 189, 0.3);
}

.btn-view-cv:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 153, 189, 0.4);
    color: #fff;
}

/* Admin Job List Improvements */
.collection-item {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    border: 1px solid rgba(59, 153, 189, 0.1);
}

.collection-item .job-info {
    flex: 1;
    min-width: 250px;
}

.collection-item .job-info div {
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.collection-item .job-info strong {
    color: #02122f;
}

.btn-delete {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.no-jobs {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Modal improvements for admin */
#name-list,
#candidates {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 60vh;
    overflow-y: auto;
}

/* Responsive candidates */
@media (max-width: 768px) {
    .candidate-card {
        flex-direction: column;
        text-align: center;
    }

    .btn-view-cv {
        width: 100%;
        justify-content: center;
    }

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

    .btn-delete {
        width: 100%;
    }
}

/* ==========================================================================
   JOB DETAILS STYLES
   ========================================================================== */

.job-details {
    margin: 15px 0;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
}

.job-details p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.job-details p strong {
    color: var(--gray-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
}

.job-details p i {
    color: var(--primary-color);
    font-size: 13px;
}

/* Apply Button improvements */
.apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    font-size: 14px;
    width: 100%;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: #fff;
}

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

/* Apply Modal Styles */
.apply-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.apply-modal .modal-content {
    background: #fff;
    border-radius: var(--border-radius-xl);
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.apply-modal .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.apply-modal .close-btn:hover {
    color: var(--danger-color);
}

.apply-modal h3 {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 700;
}

.apply-modal .form-group {
    margin-bottom: 15px;
}

.apply-modal input,
.apply-modal textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    transition: var(--transition-fast);
}

.apply-modal input:focus,
.apply-modal textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

.apply-modal .submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    margin-top: 10px;
}

.apply-modal .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.apply-modal .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Jobs Page Container */
.jobs-page-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.jobs-page-container h1 {
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 700;
}

.jobs-page-container .subtitle {
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

/* Dashboard Layout */
.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-left {
    min-width: 0;
}

.dashboard-right {
    min-width: 0;
}

@media (max-width: 992px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Container */
.dashboard-container {
    padding-bottom: 60px;
}

/* Resources Card in Dashboard */
.resources-card {
    background: #fff;
    border-radius: var(--border-radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-card);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.resources-card.ebook-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.resources-card.ebook-card .resources-icon {
    background: rgba(255, 255, 255, 0.2);
}

.resources-card.ebook-card h3 {
    color: #fff;
}

.resources-card.ebook-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Profile Progress */
.profile-progress {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 25px;
}

.profile-progress h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-progress h3 i {
    color: var(--primary-color);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.progress-bar-animated {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 40px;
}

.progress-items {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
}

.progress-item i:first-child {
    color: var(--gray-400);
}

.progress-item .status-icon {
    color: var(--danger-color);
}

.progress-item.completed .status-icon {
    color: var(--success-color);
}

.progress-item.completed .status-icon::before {
    content: "\f00c";
}

/* Suggested Jobs */
.suggested-jobs {
    background: #fff;
    border-radius: var(--border-radius-xl);
    padding: 25px;
    box-shadow: var(--shadow-card);
}

.suggested-jobs h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggested-jobs h3 i {
    color: var(--primary-color);
}

.job-suggestion-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.job-suggestion-item:last-child {
    border-bottom: none;
}

.job-suggestion-item .job-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.job-suggestion-item .job-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.job-suggestion-item .job-info p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.job-suggestion-item .job-salary {
    font-size: 13px;
    font-weight: 600;
    color: var(--success-color);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 15px;
    transition: var(--transition-fast);
}

.btn-view-all:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* ==========================================================================
   HERO SECTION - STYLE PREMIUM TALENTEO
   ========================================================================== */

/* Sous-titre avec point */
.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.hero-subtitle .hero-dot {
    width: 8px;
    height: 8px;
    background-color: #00b8d4;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-subtitle span:last-child {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
}

/* Titre principal Hero */
.hero-title {
    color: #fff !important;
    font-size: 56px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin-bottom: 35px !important;
    text-align: center;
}

.hero-title span {
    color: #00b8d4 !important;
    background: none !important;
    -webkit-text-fill-color: #00b8d4 !important;
}

/* Secteurs avec icônes check */
.hero-sectors {
    display: flex !important;
    flex-wrap: wrap;
    gap: 30px 50px !important;
    justify-content: center !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
}

.hero-sectors li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding-left: 0 !important;
}

.hero-sectors li::before {
    display: none !important;
}

.hero-sectors li i {
    color: #00b8d4 !important;
    font-size: 20px !important;
}

/* Bouton Connectez-Vous Hero */
.btn-hero-connect {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #0097a7 !important;
    color: #fff !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 151, 167, 0.4) !important;
}

.btn-hero-connect:hover {
    background-color: #00838f !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(0, 151, 167, 0.5) !important;
    color: #fff !important;
}

.btn-hero-connect i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-hero-connect:hover i {
    transform: translateX(5px);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px !important;
    }

    .hero-sectors {
        gap: 20px 30px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px !important;
    }

    .hero-subtitle span:last-child {
        font-size: 12px;
    }

    .hero-sectors {
        flex-direction: column;
        gap: 15px !important;
        align-items: center;
    }

    .hero-sectors li {
        font-size: 14px !important;
    }

    .btn-hero-connect {
        padding: 14px 28px !important;
        font-size: 14px !important;
    }
}

/* ==========================================================================
   A PROPOS DE NOUS - STYLE PREMIUM DARK
   ========================================================================== */

.about-premium {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3a 100%);
    padding: 100px 0;
}

/* Images Grid */
.about-images-grid {
    position: relative;
    height: 500px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    z-index: 1;
}

.about-img-1 img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-img-2 {
    position: absolute;
    top: 0;
    left: 200px;
    width: 280px;
    z-index: 2;
}

.about-img-2 img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-img-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    z-index: 3;
}

.about-img-3 img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid #fff;
}

/* Content */
.about-content-premium h3 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00b8d4;
    padding-left: 15px;
    margin-bottom: 20px;
}

.about-content-premium h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #00b8d4;
    border-radius: 50%;
}

.about-content-premium h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.about-content-premium h2 span {
    color: #00b8d4;
}

.about-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    border: 1px solid rgba(0, 184, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: #00b8d4;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Button */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0097a7;
    color: #fff;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 151, 167, 0.4);
}

.btn-about:hover {
    background: #00838f;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 151, 167, 0.5);
    color: #fff;
}

.btn-about i {
    transition: transform 0.3s ease;
}

.btn-about:hover i {
    transform: translateX(5px);
}

/* Responsive About */
@media (max-width: 1200px) {
    .about-img-2 {
        left: 150px;
        width: 250px;
    }
}

@media (max-width: 992px) {
    .about-premium {
        padding: 80px 0;
    }

    .about-images-grid {
        height: 400px;
        margin-bottom: 50px;
    }

    .about-img-1 {
        width: 150px;
    }

    .about-img-2 {
        left: 130px;
        width: 220px;
    }

    .about-img-3 {
        width: 180px;
    }

    .about-content-premium h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-premium {
        padding: 60px 0;
    }

    .about-images-grid {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .about-img-1,
    .about-img-2,
    .about-img-3 {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        width: 100%;
    }

    .about-img-3 {
        grid-column: span 2;
    }

    .about-img-3 img {
        border: none;
    }

    .about-content-premium h2 {
        font-size: 28px;
    }

    .about-content-premium h3 {
        font-size: 12px;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .about-feature-item {
        gap: 15px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .about-content-premium h2 {
        font-size: 24px;
    }

    .about-intro {
        font-size: 14px;
    }

    .btn-about {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ==========================================================================
   SERVICES SECTION - STYLE PREMIUM DARK
   ========================================================================== */

.services-premium {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3a 100%);
    padding: 100px 0;
}

/* Header Services */
.services-header {
    margin-bottom: 60px;
}

.services-header h3 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00b8d4;
    padding-left: 15px;
    margin-bottom: 25px;
}

.services-header h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #00b8d4;
    border-radius: 50%;
}

.services-header h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}

.services-header h2 span {
    color: #00b8d4;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Service Card - Taille uniforme */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    height: 350px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Effet dégradé qui monte au hover */
.service-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, #3b99bd, #02122f);
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-card:hover::after,
.service-card.active::after {
    height: 100%;
    border-radius: 0;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card-icon i {
    font-size: 28px;
    color: #0a1628;
    transition: all 0.4s ease;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6a7a;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* Hover state - texte blanc */
.service-card:hover .service-card-icon i,
.service-card.active .service-card-icon i {
    color: #fff;
}

.service-card:hover h3,
.service-card.active h3 {
    color: #fff;
}

.service-card:hover p,
.service-card.active p {
    color: rgba(255, 255, 255, 0.9);
}

/* Service Card Highlight (toujours actif) */
.service-card-highlight {
    background: linear-gradient(135deg, #0097a7 0%, #00b8d4 100%);
}

.service-card-highlight::after {
    display: none;
}

.service-card-highlight .service-card-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.service-card-highlight .service-card-icon i {
    color: #fff;
}

.service-card-highlight h3 {
    color: #fff;
}

.service-card-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Services */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card {
        height: 320px;
    }
}

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

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

    .services-header h2 {
        font-size: 32px;
    }

    .service-card {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .services-premium {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 26px;
    }

    .service-card {
        height: auto;
        min-height: 280px;
        padding: 25px 20px;
    }

    .service-card p {
        -webkit-line-clamp: unset;
    }
}

/* ==========================================================================
   POURQUOI NOUS CHOISIR - STYLE PREMIUM
   ========================================================================== */

.why-choose-premium {
    background: linear-gradient(135deg, #02122f 0%, #1a2b4a 50%, #3b99bd 100%);
    padding: 100px 0;
}

.why-choose-content-premium h3 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00b8d4;
    padding-left: 15px;
    margin-bottom: 25px;
}

.why-choose-content-premium h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #00b8d4;
    border-radius: 50%;
}

.why-choose-content-premium h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 40px 0;
}

.why-choose-content-premium h2 span {
    color: #00b8d4;
}

/* Liste des avantages */
.why-choose-list {
    margin-top: 30px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.why-choose-item-premium {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-choose-item-premium i {
    color: #00b8d4;
    font-size: 20px;
    flex-shrink: 0;
}

.why-choose-item-premium span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* Image */
.why-choose-image-premium {
    position: relative;
}

.why-choose-image-premium img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    float: right;
}

/* Responsive */
@media (max-width: 992px) {
    .why-choose-content-premium h2 {
        font-size: 32px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-choose-image-premium img {
        float: none;
        max-width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .why-choose-premium {
        padding: 60px 0;
    }

    .why-choose-content-premium h2 {
        font-size: 26px;
    }

    .why-choose-item-premium span {
        font-size: 14px;
    }
}

/* ==========================================================================
   FOOTER PREMIUM - STYLE MODERNE
   ========================================================================== */

.footer-premium {
    background: linear-gradient(to bottom right, #3b99bd, #02122f);
    margin-top: 0;
}

/* Header Footer */
.footer-header {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo-premium img {
    max-width: 120px;
    height: auto;
}

.footer-social-premium {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-premium span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #fff;
    color: #02122f;
    border-color: #fff;
    transform: translateY(-3px);
}

/* Main Footer */
.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact Items */
.footer-contact-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

/* Newsletter */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form-premium .input-group {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form-premium input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
}

.newsletter-form-premium input::placeholder {
    color: #999;
}

.newsletter-form-premium button {
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: #02122f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-premium button:hover {
    background: #f0f0f0;
}

/* Footer Bottom */
.footer-bottom-premium {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom-premium p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-newsletter {
        grid-column: span 2;
    }
}

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

    .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-header {
        padding: 30px 0;
    }

    .footer-header-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-social-premium {
        flex-direction: column;
        gap: 15px;
    }

    .footer-main {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-contact-premium {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .newsletter-form-premium .input-group {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-logo-premium img {
        max-width: 100px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

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

    .footer-column ul li a,
    .contact-item span,
    .footer-newsletter p {
        font-size: 13px;
    }
}

/* ==========================================================================
   PREMIUM HEADER - TRANSPARENT BLUR TO SOLID
   ========================================================================== */

/* Header transparent par défaut avec blur */
.main-header .header-sticky {
    background: transparent !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header devient bleu nuit solide au scroll */
.main-header .header-sticky.active {
    background: var(--bg-deep-blue) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(61, 193, 211, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Logo avec cadre subtil */
.navbar-brand {
    margin-left: 20px;
    margin-right: 40px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition);
    max-width: 180px;
    height: auto;
    min-height: 50px;
}

.navbar-brand:hover img {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(61, 193, 211, 0.3);
    box-shadow: 0 0 20px rgba(61, 193, 211, 0.2);
}

/* Navigation links */
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Bouton Connectez-vous / Espace Client - Turquoise Premium */
.btn-espace-client,
.btn-hero-connect,
.header-btn .btn-default {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-turquoise) !important;
    transition: var(--transition) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.btn-espace-client:hover,
.btn-hero-connect:hover,
.header-btn .btn-default:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(61, 193, 211, 0.5) !important;
    color: #fff !important;
}

/* Micro-flèches blanches sur boutons */
.btn-espace-client i,
.btn-hero-connect i,
.header-btn .btn-default i {
    color: #fff !important;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-espace-client:hover i,
.btn-hero-connect:hover i,
.header-btn .btn-default:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   FOOTER PREMIUM - BLEU NUIT TRÈS SOMBRE
   ========================================================================== */

.footer-premium {
    background: linear-gradient(180deg, var(--bg-dark-blue) 0%, var(--bg-darker-blue) 100%) !important;
    margin-top: 0;
}

.footer-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px 0;
    border-bottom: 1px solid rgba(61, 193, 211, 0.15);
}

/* Logo footer */
.footer-logo-premium img {
    filter: brightness(1.1);
}

/* Liens footer avec hover turquoise */
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: var(--transition);
    position: relative;
}

.footer-column ul li a:hover {
    color: var(--primary-color) !important;
    padding-left: 8px;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover::before {
    width: 4px;
}

/* Titre colonnes footer */
.footer-column h4 {
    color: #fff !important;
    font-family: 'Archivo', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* Icônes sociales footer - hover turquoise */
.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: var(--transition);
    background: transparent;
}

.social-icons a:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: var(--shadow-turquoise);
}

/* Contact items footer */
.contact-item i {
    background: rgba(61, 193, 211, 0.1);
    border: 1px solid rgba(61, 193, 211, 0.3) !important;
    color: var(--primary-color) !important;
}

/* Newsletter footer */
.newsletter-form-premium button {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 0 8px 8px 0 !important;
}

.newsletter-form-premium button:hover {
    background: var(--primary-dark) !important;
}

/* ==========================================================================
   HERO SECTION - CHARTE TURQUOISE
   ========================================================================== */

.hero-subtitle .hero-dot {
    background-color: var(--primary-color) !important;
}

.hero-subtitle span:last-child {
    color: #ffffff !important;
}

.hero-title span {
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
}

.hero-sectors li i {
    color: var(--primary-color) !important;
}

/* ==========================================================================
   GRILLE JOBS PREMIUM - CARTES SOMBRES
   ========================================================================== */

/* Section offres d'emploi */
.featured-jobs-premium {
    background: linear-gradient(180deg, var(--bg-dark-blue) 0%, var(--bg-deep-blue) 100%) !important;
    padding: 100px 0;
}

.featured-jobs-premium .section-title h3 {
    color: var(--primary-color) !important;
}

.featured-jobs-premium .section-title h2 span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Grille premium jobs */
#jobs-container,
.jobs-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* Cartes jobs premium - fond sombre */
.job-card-premium {
    background: var(--bg-dark-blue) !important;
    border-radius: 16px !important;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.job-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.job-card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    background: #1e2d4d !important;
    border-color: rgba(61, 193, 211, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(61, 193, 211, 0.1);
}

.job-card-premium:hover::before {
    transform: scaleX(1);
}

.job-card-premium .job-title {
    font-family: 'Archivo', sans-serif !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.job-card-premium .job-company {
    color: var(--primary-color) !important;
}

.job-card-premium .job-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

.job-card-premium .job-meta-item i {
    color: var(--primary-color) !important;
}

.job-card-premium .apply-btn-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: #fff !important;
    box-shadow: var(--shadow-turquoise);
}

.job-card-premium .apply-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(61, 193, 211, 0.4);
}

/* ==========================================================================
   E-BOOK SECTION - DÉGRADÉ TURQUOISE/BLEU IRRÉSISTIBLE
   ========================================================================== */

.ebook-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark-blue) 50%, var(--bg-deep-blue) 100%) !important;
    position: relative;
    overflow: hidden;
}

.ebook-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(61, 193, 211, 0.15) 0%, transparent 60%);
    animation: floatGlow 10s ease-in-out infinite;
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -30px) rotate(5deg);
    }
}

.ebook-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 30px;
    padding: 60px;
}

.ebook-card h2 {
    font-family: 'Archivo', sans-serif !important;
    font-weight: 800 !important;
}

/* Icône E-book avec animation pulse */
.ebook-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: ebookPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
}

@keyframes ebookPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(61, 193, 211, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px 10px rgba(61, 193, 211, 0.2);
    }
}

.ebook-icon i {
    font-size: 48px;
    color: #fff;
    animation: downloadPulse 1.5s ease-in-out infinite;
}

@keyframes downloadPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.btn-ebook-premium {
    background: #fff !important;
    color: var(--bg-deep-blue) !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 18px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-ebook-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* ==========================================================================
   SECTIONS AVEC CHARTE TURQUOISE
   ========================================================================== */

.about-content-premium h3::before,
.services-header h3::before,
.why-choose-content-premium h3::before {
    background-color: var(--primary-color) !important;
}

.about-content-premium h3,
.services-header h3,
.why-choose-content-premium h3 {
    color: var(--primary-color) !important;
}

.about-content-premium h2 span,
.services-header h2 span,
.why-choose-content-premium h2 span {
    color: var(--primary-color) !important;
}

.feature-icon {
    border-color: rgba(61, 193, 211, 0.3) !important;
}

.feature-icon i {
    color: var(--primary-color) !important;
}

.why-choose-item-premium i {
    color: var(--primary-color) !important;
}

/* Service cards hover gradient */
.service-card::after {
    background: linear-gradient(to bottom right, var(--primary-color), var(--bg-deep-blue)) !important;
}

.btn-about {
    background: var(--primary-color) !important;
    box-shadow: var(--shadow-turquoise) !important;
}

.btn-about:hover {
    background: var(--primary-dark) !important;
}

/* ==========================================================================
   SLICKNAV MOBILE - TURQUOISE & BLANC
   ========================================================================== */

.slicknav_menu {
    background: var(--bg-deep-blue) !important;
    border-bottom: 1px solid rgba(61, 193, 211, 0.2);
}

.slicknav_btn {
    background: var(--primary-color) !important;
}

.slicknav_nav {
    background: var(--bg-dark-blue) !important;
}

.slicknav_nav a {
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.slicknav_nav a:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.slicknav_nav .slicknav_row:hover {
    background: var(--primary-color) !important;
}

/* ==========================================================================
   FORMULAIRE ADMIN - CENTRÉ & SCROLLABLE
   ========================================================================== */

.modal-content {
    max-width: 600px !important;
    margin: 0 auto !important;
}

.modal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray-200);
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

/* Animation de fondu modal */
.modal-content {
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--bg-deep-blue)) !important;
}

/* ==========================================================================
   RESPONSIVE PREMIUM - MOBILE FIRST
   ========================================================================== */

@media (max-width: 992px) {

    #jobs-container,
    .jobs-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-title {
        font-size: 38px !important;
    }
}

@media (max-width: 768px) {

    /* Force une seule colonne sur mobile */
    #jobs-container,
    .jobs-grid-premium {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 10px;
    }

    /* Titres ajustés pour éviter débordement */
    .hero-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        padding: 0 10px;
    }

    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    .job-card-premium {
        padding: 20px;
    }

    .job-card-premium .job-title {
        font-size: 18px !important;
    }

    /* E-book responsive */
    .ebook-card {
        padding: 30px 20px;
    }

    .ebook-card h2 {
        font-size: 24px !important;
    }

    .btn-ebook-premium {
        padding: 14px 30px;
        font-size: 16px;
    }

    /* Header mobile */
    .navbar-brand img {
        max-width: 130px;
        margin-left: 15px !important;
    }

    /* Footer mobile aligned */
    .footer-column {
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px !important;
    }

    .hero-sectors {
        gap: 12px !important;
    }

    .hero-sectors li {
        font-size: 13px !important;
    }

    .btn-hero-connect {
        padding: 12px 24px !important;
        font-size: 13px !important;
    }

    .job-card-premium .job-title {
        font-size: 16px !important;
    }

    .services-header h2,
    .about-content-premium h2,
    .why-choose-content-premium h2 {
        font-size: 22px !important;
    }
}

/* ==========================================================================
   ANIMATIONS WOW - DELAYS PROGRESSIFS
   ========================================================================== */

.job-card-premium:nth-child(1) {
    animation-delay: 0.1s;
}

.job-card-premium:nth-child(2) {
    animation-delay: 0.2s;
}

.job-card-premium:nth-child(3) {
    animation-delay: 0.3s;
}

.job-card-premium:nth-child(4) {
    animation-delay: 0.4s;
}

.job-card-premium:nth-child(5) {
    animation-delay: 0.5s;
}

.job-card-premium:nth-child(6) {
    animation-delay: 0.6s;
}

/* Magic Cursor styles */
.magic-cursor {
    pointer-events: none !important;
}

.cursor-inner,
.cursor-outer {
    border-color: var(--primary-color) !important;
}

.cursor-inner::after {
    background: var(--primary-color) !important;
}

/* ==========================================================================
   HEADER & LOGO IMPROVEMENTS - Clean and Professional
   ========================================================================== */

.navbar-brand img {
    max-height: 85px;
    width: auto;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    object-fit: contain;
    margin-left: 0 !important;
}

.main-header .navbar {
    padding: 10px 0;
}

.header-sticky {
    background: linear-gradient(135deg, #0f172a 0%, #1a263f 100%) !important;
    border-bottom: 1px solid rgba(61, 193, 211, 0.1);
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item .nav-link {
    padding: 10px 18px !important;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-item .nav-link:hover {
    color: #3dc1d3 !important;
    background: rgba(61, 193, 211, 0.1);
}

/* Responsive Header */
@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 65px;
        margin-left: 15px !important;
    }

    .responsive-menu {
        background: #0f172a !important;
    }

    .slicknav_menu {
        background: transparent !important;
    }

    .slicknav_nav {
        background: #1a263f !important;
        border-radius: 12px;
        margin-top: 10px;
        padding: 15px;
    }

    .slicknav_nav li a {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 12px 15px !important;
        border-radius: 8px;
        margin-bottom: 5px;
    }

    .slicknav_nav li a:hover {
        background: rgba(61, 193, 211, 0.15) !important;
        color: #3dc1d3 !important;
    }

    .slicknav_btn {
        background: rgba(61, 193, 211, 0.2) !important;
        border-radius: 8px;
    }

    .slicknav_icon-bar {
        background: #3dc1d3 !important;
    }
}

/* ==========================================================================
   DASHBOARD DYNAMIC CARDS
   ========================================================================== */

.dashboard-container {
    background: linear-gradient(180deg, #0f172a 0%, #1a263f 100%);
    min-height: 100vh;
    padding-top: 100px;
}

.dashboard-header {
    text-align: center;
    padding: 40px 20px 30px;
}

.dashboard-header h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.dashboard-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px 0 60px;
}

.dashboard-left,
.dashboard-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Dashboard Cards */
.dashboard-card {
    background: linear-gradient(145deg, rgba(26, 38, 63, 0.9), rgba(15, 23, 42, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(61, 193, 211, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: rgba(61, 193, 211, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-header-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(61, 193, 211, 0.1);
}

.card-icon-premium {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3dc1d3, #2ba8b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.card-icon-premium.cv-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.card-icon-premium.ebook-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card-icon-premium.jobs-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.card-header-premium h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.card-body-premium {
    padding: 25px;
}

.card-footer-premium {
    padding: 15px 25px 20px;
    border-top: 1px solid rgba(61, 193, 211, 0.1);
}

.btn-card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: rgba(61, 193, 211, 0.1);
    border: 1px solid rgba(61, 193, 211, 0.3);
    border-radius: 12px;
    color: #3dc1d3;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-card-action:hover {
    background: rgba(61, 193, 211, 0.2);
    color: #5dd5e5;
    transform: translateY(-2px);
}

.btn-card-action.btn-primary {
    background: linear-gradient(135deg, #3dc1d3, #2ba8b9);
    border: none;
    color: #fff;
}

.btn-card-action.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(61, 193, 211, 0.4);
}

/* Loading Small */
.loading-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px;
}

.loading-small i {
    color: #3dc1d3;
}

/* Candidatures List */
.candidature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.candidature-item:hover {
    background: rgba(61, 193, 211, 0.05);
    border-color: rgba(61, 193, 211, 0.2);
}

.candidature-item:last-child {
    margin-bottom: 0;
}

.candidature-info h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.candidature-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.candidature-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.candidature-status.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.candidature-status.accepted {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.candidature-status.rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.no-candidatures {
    text-align: center;
    padding: 30px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.no-candidatures i {
    font-size: 40px;
    color: rgba(61, 193, 211, 0.3);
    margin-bottom: 15px;
    display: block;
}

/* CV Status Display */
.cv-status-display {
    text-align: center;
}

.cv-not-uploaded {
    padding: 25px;
}

.cv-not-uploaded i {
    font-size: 45px;
    color: rgba(61, 193, 211, 0.4);
    margin-bottom: 15px;
}

.cv-not-uploaded p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 5px;
}

.cv-not-uploaded small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.cv-uploaded {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.cv-file-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cv-file-info i {
    font-size: 35px;
    color: #10b981;
}

.cv-file-info p {
    color: #fff;
    font-weight: 600;
    margin-bottom: 3px;
}

.cv-file-info small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.btn-download-cv {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #3dc1d3, #2ba8b9);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download-cv:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 193, 211, 0.4);
    color: #fff;
}

/* Resources Grid (Cleaned) */
.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: rgba(61, 193, 211, 0.05);
    border-color: rgba(61, 193, 211, 0.2);
    transform: translateX(5px);
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.resource-icon.word-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.resource-info {
    flex: 1;
}

.resource-info h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.resource-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 4px;
}

.resource-meta {
    color: rgba(61, 193, 211, 0.8);
    font-size: 12px;
    font-weight: 500;
}

.btn-resource-download {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3dc1d3, #2ba8b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-resource-download:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(61, 193, 211, 0.4);
    color: #fff;
}

/* Jobs Preview */
.job-preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.job-preview-item:last-child {
    margin-bottom: 0;
}

.job-preview-icon {
    width: 40px;
    height: 40px;
    background: rgba(61, 193, 211, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3dc1d3;
}

.job-preview-info h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.job-preview-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0;
}

/* Profile Section Improvements */
.profile-section {
    background: linear-gradient(145deg, rgba(26, 38, 63, 0.9), rgba(15, 23, 42, 0.95));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(61, 193, 211, 0.15);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3dc1d3, #2ba8b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#avatar-initials {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.profile-info h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Profile Progress */
.profile-progress {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-progress h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.profile-progress h3 i {
    color: #3dc1d3;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.progress-bar-animated {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3dc1d3, #2ba8b9);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.progress-text {
    color: #3dc1d3;
    font-weight: 700;
    font-size: 14px;
}

.progress-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.progress-item i:first-child {
    color: #3dc1d3;
}

.progress-item .status-icon {
    margin-left: auto;
}

.progress-item.completed .status-icon {
    color: #10b981;
}

.progress-item:not(.completed) .status-icon {
    color: rgba(255, 255, 255, 0.3);
}

/* Profile Details */
.profile-details {
    margin-bottom: 25px;
}

.detail-item {
    margin-bottom: 15px;
}

.detail-item label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-item p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* CV Upload Section */
.cv-upload-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cv-upload-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cv-upload-section h3 i {
    color: #3dc1d3;
}

.cv-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Responsive Dashboard */
@media (max-width: 991px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .card-header-premium {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .resource-item {
        flex-direction: column;
        text-align: center;
    }

    .btn-resource-download {
        margin-top: 10px;
    }
}

/* ==========================================================================
   CAMPAGNE BANNER SECTION
   ========================================================================== */

.campagne-banner-section {
    background: linear-gradient(135deg, #0f172a 0%, #1a263f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.campagne-banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61, 193, 211, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.campagne-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.campagne-banner-content {
    flex: 1;
    max-width: 600px;
}

.campagne-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 25px;
}

.campagne-badge i {
    color: #f59e0b;
    font-size: 18px;
}

.campagne-badge span {
    color: #f59e0b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.campagne-banner-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.campagne-banner-content h2 span {
    background: linear-gradient(135deg, #3dc1d3, #5dd5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campagne-banner-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-campagne {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
}

.btn-campagne:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.5);
    color: #fff;
}

.btn-campagne i {
    font-size: 18px;
}

.campagne-banner-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 40px;
    color: rgba(61, 193, 211, 0.6);
    animation: float 3s ease-in-out infinite;
}

.floating-icons .icon-1 {
    top: 10%;
    left: 20%;
    color: #f59e0b;
    animation-delay: 0s;
}

.floating-icons .icon-2 {
    top: 30%;
    right: 10%;
    animation-delay: 0.5s;
}

.floating-icons .icon-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.floating-icons .icon-4 {
    bottom: 10%;
    right: 20%;
    color: #10b981;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 991px) {
    .campagne-banner {
        flex-direction: column;
        text-align: center;
    }

    .campagne-banner-content h2 {
        font-size: 32px;
    }

    .campagne-banner-illustration {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .campagne-banner-content h2 {
        font-size: 26px;
    }

    .campagne-banner-illustration {
        display: none;
    }
}

/* ==========================================================================
   CAMPAIGN POPUP MODAL - PREMIUM DESIGN
   ========================================================================== */

.campaign-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.campaign-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.campaign-popup-content {
    background: linear-gradient(145deg, #1a263f, #0f172a);
    border: 2px solid #3dc1d3;
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 80px rgba(61, 193, 211, 0.4),
        0 0 100px rgba(61, 193, 211, 0.2);
    animation: popupSlideUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.campaign-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.campaign-popup-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
    transform: rotate(90deg);
}

.campaign-popup-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: popupIconPulse 2s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
}

@keyframes popupIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(245, 158, 11, 0.6);
    }
}

.campaign-popup-icon i {
    font-size: 48px;
    color: #fff;
}

.campaign-popup-title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Archivo', sans-serif;
}

.campaign-popup-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.campaign-popup-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(61, 193, 211, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(61, 193, 211, 0.2);
    transition: all 0.3s ease;
}

.popup-feature:hover {
    background: rgba(61, 193, 211, 0.15);
    border-color: rgba(61, 193, 211, 0.4);
    transform: translateX(5px);
}

.popup-feature i {
    color: #3dc1d3;
    font-size: 20px;
}

.popup-feature span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.btn-campaign-popup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 35px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
    margin-bottom: 15px;
}

.btn-campaign-popup:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.6);
    color: #fff;
}

.btn-campaign-popup i {
    font-size: 18px;
}

.campaign-popup-later {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.campaign-popup-later:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Popup */
@media (max-width: 768px) {
    .campaign-popup-content {
        padding: 40px 30px;
        max-width: 90%;
    }

    .campaign-popup-title {
        font-size: 26px;
    }

    .campaign-popup-text {
        font-size: 15px;
    }

    .campaign-popup-icon {
        width: 80px;
        height: 80px;
    }

    .campaign-popup-icon i {
        font-size: 40px;
    }

    .btn-campaign-popup {
        padding: 16px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .campaign-popup-content {
        padding: 30px 20px;
    }

    .campaign-popup-title {
        font-size: 22px;
    }

    .popup-feature {
        padding: 10px 15px;
    }

    .popup-feature span {
        font-size: 14px;
    }
}

/* ==========================================================================
   E-BOOKS SECTION HOMEPAGE - 3 CARDS LAYOUT
   ========================================================================== */

.ebooks-section-homepage {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1a263f 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h3 {
    color: #3dc1d3;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ebook-dot {
    width: 8px;
    height: 8px;
    background: #3dc1d3;
    border-radius: 50%;
    display: inline-block;
}

.section-header-center h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Archivo', sans-serif;
}

.section-header-center h2 span {
    background: linear-gradient(135deg, #3dc1d3, #5dd5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-center p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.ebooks-grid-homepage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ebook-card-homepage {
    background: linear-gradient(145deg, rgba(26, 38, 63, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(61, 193, 211, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ebook-card-homepage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3dc1d3, #5dd5e5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ebook-card-homepage:hover {
    transform: translateY(-10px);
    border-color: rgba(61, 193, 211, 0.4);
    box-shadow: 0 20px 50px rgba(61, 193, 211, 0.2);
}

.ebook-card-homepage:hover::before {
    transform: scaleX(1);
}

.ebook-icon-homepage {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

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

.ebook-icon-homepage i {
    font-size: 36px;
    color: #fff;
}

.word-icon-homepage {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.interview-icon-homepage {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.ebook-card-homepage h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Archivo', sans-serif;
}

.ebook-card-homepage p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
}

.ebook-meta-homepage {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ebook-meta-homepage span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ebook-meta-homepage i {
    color: #3dc1d3;
    font-size: 14px;
}

.btn-ebook-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, #3dc1d3, #2ba8b9);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(61, 193, 211, 0.3);
    cursor: pointer;
}

.btn-ebook-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(61, 193, 211, 0.5);
    color: #fff;
}

.btn-ebook-download i {
    font-size: 16px;
}

/* Responsive E-books Homepage */
@media (max-width: 992px) {
    .ebooks-grid-homepage {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .ebooks-section-homepage {
        padding: 80px 0;
    }

    .ebooks-grid-homepage {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header-center h2 {
        font-size: 28px;
    }

    .section-header-center p {
        font-size: 16px;
    }

    .ebook-card-homepage {
        padding: 35px 25px;
    }

    .ebook-card-homepage p {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .ebooks-section-homepage {
        padding: 60px 0;
    }

    .section-header-center h2 {
        font-size: 24px;
    }

    .ebook-card-homepage h3 {
        font-size: 18px;
    }

    .ebook-meta-homepage {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   STICKY CAMPAIGN TOP BAR (RIBBON)
   ========================================================================== */
.campaign-top-bar {
    height: 40px;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-bottom: 1px solid rgba(61, 193, 211, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 10001;
    overflow: hidden;
    transition: all 0.3s ease;
}

.campaign-top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(61, 193, 211, 0.2), transparent);
    animation: shine-bar 6s infinite;
}

@keyframes shine-bar {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.campaign-content {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 0.3px;
}

.campaign-emoji {
    font-size: 16px;
    animation: bounce-emoji 2s infinite;
    display: inline-block;
}

@keyframes bounce-emoji {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.campaign-btn-link {
    color: #3dc1d3;
    font-weight: 700;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(61, 193, 211, 0.1);
    border: 1px solid rgba(61, 193, 211, 0.3);
    transition: all 0.3s ease;
    font-size: 11px;
    text-transform: uppercase;
}

.campaign-btn-link:hover {
    background: #3dc1d3;
    color: #0f172a;
    box-shadow: 0 0 15px rgba(61, 193, 211, 0.4);
}

/* Header Offset for Sticky Bar */
.sticky-on {
    top: 40px !important;
}

@media (max-width: 991px) {
    .campaign-content span:nth-child(2) {
        font-size: 11px;
    }
}

/* ==========================================================================
   NEWSLETTER VISIBILITY & ANIMATION FIXES
   ========================================================================== */
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    transition: var(--transition) !important;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(61, 193, 211, 0.2) !important;
    outline: none !important;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Helper for dynamic animations sync */
.job-card-premium.wow {
    visibility: hidden;
}
