﻿

.offer-header-premium {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #f3f4ff 100%);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(30, 64, 175, 0.1);
    overflow: hidden;
}

.offer-header-gradient {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.offer-detail-header.offer-header-premium {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.offer-logo-premium {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-size: 3rem;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.15), 0 0 0 3px rgba(30, 64, 175, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.offer-logo-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(30, 64, 175, 0.25), 0 0 0 4px rgba(30, 64, 175, 0.15);
}

.logo-pulse {
    animation: logoPulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-header-premium-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header-top-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge-new-premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

/* Badge Exclusivité - Offres recruteurs partenaires */
.badge-exclusive-premium {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-views {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.25);
}

.title-premium {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.3;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.025em;
    /* Limiter à 3 lignes max */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 64, 175, 0.06);
    border: 1.5px solid rgba(30, 64, 175, 0.15);
    border-radius: 10px;
    font-weight: 600;
    color: #1e40af;
    width: fit-content;
    transition: all 0.2s ease;
}

.company-badge:hover {
    background: rgba(30, 64, 175, 0.1);
    border-color: rgba(30, 64, 175, 0.25);
}

.company-badge i {
    color: #0891b2;
    font-size: 0.9em;
}

.meta-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.meta-item-premium {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #64748b;
}

.meta-item-premium i {
    color: #94a3b8;
    font-size: 0.9em;
}

.meta-item-premium strong {
    color: #1e293b;
    font-weight: 600;
}

.meta-item-premium .region {
    color: #94a3b8;
    font-size: 0.9em;
    margin-left: 0.25rem;
}

.meta-salary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.12) 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.25);
}

.meta-salary i {
    color: #10b981;
    font-size: 1.1rem;
}

.meta-salary strong {
    color: #047857;
    font-size: 1.05rem;
}

.offer-badges-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.badge-type,
.badge-remote,
.badge-info {
    padding: 0.55rem 0.95rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.2s ease;
}

.badge-type:hover,
.badge-remote:hover,
.badge-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-type {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-remote {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-info {
    background: rgba(168, 85, 247, 0.1);
    color: #9333ea;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.offer-actions-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(30, 64, 175, 0.1);
}

.primary-action-wrapper {
    width: 100%;
}

.btn-premium {
    position: relative;
    font-size: 0.95rem;
    padding: 1.2rem 2rem !important;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: none !important;
}

.btn-primary-premium {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.4);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-primary-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary-premium:hover::before {
    left: 100%;
}

.btn-primary-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.5);
}

.btn-primary-premium:active {
    transform: translateY(-1px) scale(1);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.btn-main {
    display: block;
    font-size: 1rem;
}

.btn-sub {
    display: block;
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 500;
}

/* Bouton urgent avec animation et urgence */
.btn-urgent-action {
    position: relative;
    overflow: visible !important;
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-urgent-action::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #ef4444);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: border-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(30, 64, 175, 0.4);
    }
    50% { 
        box-shadow: 0 15px 60px rgba(239, 68, 68, 0.6), 0 0 30px rgba(251, 191, 36, 0.4);
    }
}

@keyframes border-glow {
    0%, 100% { 
        opacity: 0;
    }
    50% { 
        opacity: 0.6;
    }
}

.btn-urgent-action:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 70px rgba(239, 68, 68, 0.5);
}

/* Badges de statistiques au-dessus du bouton */
.stats-badges-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse-soft 2s ease-in-out infinite;
}

.stats-badge i {
    font-size: 1rem;
}

.stats-badge-views {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.stats-badge-candidatures {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

@keyframes pulse-soft {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.03);
        opacity: 0.95;
    }
}

.btn-urgency {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
    animation: bounce-urgency 2s ease-in-out infinite;
    white-space: nowrap;
}

/* Badge vert pour les candidatures réelles */
.btn-urgency.btn-urgency-candidatures {
    top: auto;
    bottom: -12px;
    right: -12px;
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
    animation: bounce-candidatures 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
    transition: transform 0.3s ease;
}

/* Animation d'apparition pour le badge créé dynamiquement */
.btn-urgency-candidatures.badge-appear {
    animation: badgeAppear 0.5s ease-out, bounce-candidatures 2.5s ease-in-out infinite 0.5s;
}

@keyframes badgeAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes bounce-urgency {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-4px) scale(1.05);
    }
}

@keyframes bounce-candidatures {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(4px) scale(1.05);
    }
}

.btn-urgent-action .btn-main {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-disabled-premium {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    cursor: not-allowed;
}

.btn-premium-secondary {
    width: 50px;
    height: 50px;
    padding: 0 !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(30, 64, 175, 0.2);
    background: white;
    color: #1e40af;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-premium-secondary:hover {
    background: rgba(30, 64, 175, 0.1);
    border-color: rgba(30, 64, 175, 0.4);
    transform: scale(1.05);
}

.secondary-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.trust-bar-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(148, 163, 184, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #475569;
    font-weight: 600;
}

.trust-item i {
    font-size: 1.3rem;
    color: #10b981;
}

.section-block-premium {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    border: 2px solid rgba(30, 64, 175, 0.12);
    position: relative;
    overflow: hidden;
}

.section-block-premium h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-block-premium h2 i {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-card-premium {
    padding: 1.8rem;
    background: linear-gradient(135deg, white 0%, rgba(248, 249, 255, 0.8) 100%);
    border: 2px solid rgba(30, 64, 175, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.info-card-premium:hover {
    border-color: rgba(30, 64, 175, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.2);
}

.info-card-premium:hover::before {
    opacity: 1;
}

.info-card-premium i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.info-card-premium:hover i {
    transform: scale(1.15);
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: block;
    position: relative;
    z-index: 1;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .info-card-premium {
        padding: 1.2rem;
    }
    
    .info-card-premium i {
        font-size: 1.8rem;
    }
    
    /* Stats badges responsive */
    .stats-badges-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .stats-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* Badge urgence responsive */
    .btn-urgency {
        position: static;
        display: block;
        margin-top: 0.5rem;
        font-size: 0.65rem;
        padding: 3px 10px;
        text-align: center;
    }
    
    .btn-urgency.btn-urgency-candidatures {
        margin-top: 0.3rem;
    }
    
    .btn-urgent-action {
        padding-bottom: 0.75rem !important;
    }
    
    .btn-urgent-action .btn-main {
        font-size: 1rem;
    }
}

.engagement-section-premium {
    margin: 3rem 0;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f3f4ff 100%);
    border-radius: 24px;
    border: 2px solid rgba(30, 64, 175, 0.12);
    position: relative;
    overflow: hidden;
}

.engagement-section-premium::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.engagement-section-premium > * {
    position: relative;
    z-index: 1;
}

.engagement-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.engagement-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.engagement-header p {
    font-size: 1.05rem;
    color: #64748b;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.engagement-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 2px solid rgba(30, 64, 175, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.engagement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.engagement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 64, 175, 0.3);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.engagement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    border-radius: 14px;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.engagement-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.engagement-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.engagement-highlight {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(30, 64, 175, 0.15);
    color: #1e40af;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.engagement-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    border-radius: 16px;
    color: white;
    flex-wrap: wrap;
}

.cta-text h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .offer-detail-header.offer-header-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .offer-logo-premium {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .title-premium {
        font-size: 1.6rem;
    }

    .meta-premium {
        justify-content: center;
        gap: 1rem;
    }

    .offer-badges-premium {
        justify-content: center;
    }

    .offer-actions-premium {
        padding: 1.5rem;
    }

    .secondary-actions {
        justify-content: center;
        width: 100%;
    }

    .btn-primary-premium {
        width: 100%;
    }

    .trust-bar-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .engagement-cta {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .header-top-badges {
        justify-content: center;
    }

    .company-premium {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .offer-header-premium {
        padding: 1.5rem 1rem;
    }

    .title-premium {
        font-size: 1.3rem;
    }

    .btn-premium {
        padding: 1rem 1.5rem !important;
        font-size: 0.9rem;
    }

    .btn-text {
        gap: 0.1rem;
    }

    .btn-sub {
        display: none;
    }

    .meta-item-premium {
        font-size: 0.9rem;
    }

    .trust-bar-premium {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem;
    }

    .trust-item {
        gap: 0.5rem;
    }

    .engagement-section-premium {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }

    .engagement-header h2 {
        font-size: 1.4rem;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-header-premium {
    animation: slideInDown 0.6s ease-out;
}

/* Hover effects */
.btn-premium:not(:disabled):not(.btn-disabled-premium) {
    cursor: pointer;
}

.btn-premium:active {
    filter: brightness(0.95);
}

.similar-offers-section-premium {
    margin-top: 80px;
    padding: 3rem 0;
}

.similar-offers-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.section-title-premium {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-title-premium i {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

.offers-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.offer-card-premium {
    height: 100%;
    position: relative;
}

.offer-link-premium {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    border: 2px solid rgba(30, 64, 175, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.offer-link-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e40af 0%, #0891b2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card-premium:hover .offer-link-premium {
    border-color: rgba(30, 64, 175, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.2);
}

.offer-link-premium:hover::before {
    opacity: 1;
}

.offer-card-header-premium {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.offer-company-logo-card {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(14, 165, 233, 0.15) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-size: 1.5rem;
}

.offer-card-meta {
    flex: 1;
    min-width: 0;
}

.offer-title-premium {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    word-break: break-word;
}

.offer-company-small {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.offer-card-details-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.offer-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    background: rgba(30, 64, 175, 0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
}

.offer-detail-badge i {
    color: #1e40af;
    font-size: 0.9rem;
}

.offer-card-footer-premium {
    padding-top: 1rem;
    border-top: 2px solid rgba(30, 64, 175, 0.08);
    display: flex;
    justify-content: flex-end;
}

.offer-action-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e40af;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.offer-card-premium:hover .offer-action-premium {
    gap: 0.8rem;
    color: #0891b2;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-card-premium {
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.offer-card-premium:nth-child(1) { animation-delay: 0.1s; }
.offer-card-premium:nth-child(2) { animation-delay: 0.2s; }
.offer-card-premium:nth-child(3) { animation-delay: 0.3s; }
.offer-card-premium:nth-child(4) { animation-delay: 0.4s; }
.offer-card-premium:nth-child(5) { animation-delay: 0.5s; }
.offer-card-premium:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 768px) {
    .similar-offers-header {
        flex-direction: column;
        align-items: stretch;
    }

    .similar-offers-header .btn {
        width: 100%;
        justify-content: center;
    }

    .offers-grid-premium {
        grid-template-columns: 1fr;
    }

    .offer-link-premium {
        padding: 1.5rem;
    }
}

.meta-date {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    border-radius: 12px !important;
    background: rgba(30, 64, 175, 0.08) !important;
    transition: all 0.3s ease !important;
}

.meta-date .date-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.meta-date .date-highlight {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(30, 64, 175, 0.2);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #1e40af;
}

/* HOT - AUJOURD'HUI */
.meta-date.badge-instant {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%) !important;
    border: 2px solid rgba(239, 68, 68, 0.4) !important;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.meta-date.badge-instant i {
    color: #ef4444 !important;
    font-size: 1.3rem;
    animation: pulse-instant 1s ease-in-out infinite;
}

.meta-date.badge-instant .date-highlight {
    background: #ef4444;
    color: white;
}

@keyframes pulse-instant {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* HOT - AUJOURD'HUI */
.meta-date.badge-hot {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%) !important;
    border: 2px solid rgba(239, 68, 68, 0.3) !important;
}

.meta-date.badge-hot i {
    color: #ef4444 !important;
    font-size: 1.2rem;
    animation: pulse-hot 2s ease-in-out infinite;
}

.meta-date.badge-hot .date-highlight {
    background: #ef4444;
    color: white;
}

@keyframes pulse-hot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* FRESH - HIER */
.meta-date.badge-fresh {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%) !important;
    border: 2px solid rgba(34, 197, 94, 0.3) !important;
}

.meta-date.badge-fresh i {
    color: #10b981 !important;
    animation: pulse-fresh 2.5s ease-in-out infinite;
}

.meta-date.badge-fresh .date-highlight {
    background: #10b981;
    color: white;
}

@keyframes pulse-fresh {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* RECENT - 2-3 JOURS */
.meta-date.badge-recent {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%) !important;
    border: 2px solid rgba(245, 158, 11, 0.3) !important;
}

.meta-date.badge-recent i {
    color: #f59e0b !important;
    animation: pulse-recent 3s ease-in-out infinite;
}

.meta-date.badge-recent .date-highlight {
    background: #f59e0b;
    color: white;
}

@keyframes pulse-recent {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-5deg); }
}

/* WEEK */
.meta-date.badge-week {
    background: rgba(59, 130, 246, 0.08) !important;
    border: 2px solid rgba(59, 130, 246, 0.2) !important;
}

.meta-date.badge-week i {
    color: #3b82f6 !important;
}

/* TWO WEEKS */
.meta-date.badge-twoweeks {
    background: rgba(139, 92, 246, 0.08) !important;
    border: 2px solid rgba(139, 92, 246, 0.2) !important;
}

.meta-date.badge-twoweeks i {
    color: #8b5cf6 !important;
}

/* MONTH */
.meta-date.badge-month {
    background: rgba(107, 114, 128, 0.08) !important;
    border: 2px solid rgba(107, 114, 128, 0.2) !important;
}

.meta-date.badge-month i {
    color: #6b7280 !important;
}

/* OLD */
.meta-date.badge-old {
    background: rgba(107, 114, 128, 0.05) !important;
    border: 2px solid rgba(107, 114, 128, 0.1) !important;
    opacity: 0.8;
}

.meta-date.badge-old i {
    color: #9ca3af !important;
}

/* Hover effect */
.meta-date:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2) !important;
}

/* Date badge dans les offres similaires */
.offer-date-badge {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.12) 0%, rgba(14, 165, 233, 0.08) 100%) !important;
    border-color: rgba(30, 64, 175, 0.15) !important;
}

.offer-date-badge strong {
    font-weight: 700;
}

.offer-cta-final-premium {
    position: relative;
    margin: 3rem 0 2rem 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
}

.cta-gradient-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.cta-content-premium {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-icon-large {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-text-premium h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 0.8rem 0;
    color: white;
}

.cta-text-premium p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.btn-premium-cta {
    background: white !important;
    color: #1e40af !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.btn-premium-cta:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-info-text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cta-info-text i {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .offer-cta-final-premium {
        padding: 2rem 1.5rem;
        margin: 2rem 0 1.5rem 0;
    }

    .cta-content-premium {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .cta-text-premium h3 {
        font-size: 1.4rem;
    }

    .cta-actions {
        width: 100%;
    }

    .btn-premium-cta {
        width: 100%;
    }
}

.offer-description-premium {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid rgba(30, 64, 175, 0.12);
    border-radius: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
}

.offer-description-premium h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.offer-description-premium h3 i {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.offer-description-premium ul,
.offer-description-premium ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.offer-description-premium li {
    margin: 0.8rem 0;
    padding-left: 1rem;
    position: relative;
}

.offer-description-premium ul li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: #1e40af;
    font-weight: 800;
    font-size: 1.1rem;
}

.offer-description-premium ol li::before {
    content: counter(list-number);
    counter-increment: list-number;
    position: absolute;
    left: -1.8rem;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.offer-description-premium strong {
    color: #1e40af;
    font-weight: 800;
}

.offer-description-premium p {
    margin-bottom: 1rem;
}

.offer-description-content {
    display: block;
    line-height: 1.7;
}

.premium-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.premium-list li {
    margin: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    color: #334155;
}

.premium-list.premium-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 800;
    font-size: 1.2rem;
}

.job-characteristics-section {
    margin: 2.5rem 0;
    padding: 0;
}

.job-characteristics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.job-characteristic-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid rgba(30, 64, 175, 0.12);
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.job-characteristic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.job-characteristic-card:hover {
    border-color: rgba(30, 64, 175, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.job-characteristic-card:hover::before {
    opacity: 1;
}

.characteristic-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.characteristic-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

.characteristic-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    position: relative;
    z-index: 1;
}

.benefits-section-premium {
    margin: 2.5rem 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    border: 2px solid rgba(30, 64, 175, 0.12);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.benefits-section-premium::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.benefits-section-premium > * {
    position: relative;
    z-index: 1;
}

.benefits-section-premium h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefits-section-premium h3 i {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-item-premium {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item-premium:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 64, 175, 0.3);
}

.benefit-icon-premium {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.benefit-title-premium {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.requirements-section-premium {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid rgba(30, 64, 175, 0.12);
    border-radius: 20px;
}

.requirements-section-premium h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.requirements-section-premium h3 i {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.requirements-list-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.requirement-item-premium {
    padding: 1.5rem 1.8rem;
    background: white;
    border: 2px solid rgba(30, 64, 175, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.requirement-item-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #1e40af 0%, #0891b2 100%);
    border-radius: 12px 0 0 12px;
}

.requirement-item-premium:hover {
    transform: translateX(4px);
    border-color: rgba(30, 64, 175, 0.35);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.1);
}

.requirement-text-premium {
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
    padding-left: 0.5rem;
}

@media (max-width: 768px) {
    .offer-description-premium {
        padding: 1.5rem;
    }
    
    .benefits-section-premium {
        padding: 2rem 1.5rem;
    }
    
    .benefits-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .job-characteristics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .requirements-list-premium {
        grid-template-columns: 1fr;
    }
}

.section-block {
    background: white;
    border-radius: 16px;
    border: 2px solid rgba(30, 64, 175, 0.08);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.section-block h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-block h2 i {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accordion-section {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(30, 64, 175, 0.12);
    transition: all 0.3s ease;
}

.accordion-section:hover {
    border-color: rgba(30, 64, 175, 0.25);
}

.accordion-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.accordion-header h3 i {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accordion-icon {
    font-size: 1rem;
    color: #1e40af;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 1.5rem;
    background: white;
    display: none;
    font-size: 1.05rem;
}

.accordion-content.active {
    display: block;
}

.accordion-content p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.company-offers-list {
    display: grid;
    gap: 1.5rem;
}

.company-offer-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, white 0%, rgba(248, 249, 255, 0.8) 100%);
    border: 2px solid rgba(30, 64, 175, 0.12);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.company-offer-item:hover {
    border-color: rgba(30, 64, 175, 0.35);
    transform: translateX(4px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
}

.company-offer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    flex-basis: 100%;
}

.company-offer-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.company-offer-meta span {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.company-offer-meta i {
    color: #1e40af;
}

@media (max-width: 768px) {
    .section-block {
        padding: 1.5rem;
    }
    
    .accordion-header {
        padding: 1.2rem;
    }
    
    .accordion-content {
        padding: 1.2rem;
    }
    
    .company-offer-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 2px solid rgba(30, 64, 175, 0.2);
    border-radius: 24px;
    color: #1e40af;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(14, 165, 233, 0.2) 100%);
    border-color: rgba(30, 64, 175, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.15);
}

.benefit-item-premium {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item-premium:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 64, 175, 0.3);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
}

.benefit-item-premium .benefit-icon-premium {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item-premium .benefit-title-premium {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.benefit-item-premium p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.requirement-item-premium {
    padding: 1.2rem;
    background: white;
    border: 2px solid rgba(30, 64, 175, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.requirement-item-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #1e40af 0%, #0891b2 100%);
    border-radius: 12px 0 0 12px;
}

.requirement-item-premium:hover {
    transform: translateX(4px);
    border-color: rgba(30, 64, 175, 0.35);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.1);
}

.requirement-text-premium {
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
    padding-left: 0.8rem;
}

.requirement-text-premium::first-letter {
    text-transform: uppercase;
}

.offer-description-content {
    color: #334155;
    line-height: 1.8;
    font-size: 0.95rem;
}

.offer-description-content ul,
.offer-description-content ol {
    margin: 1.2rem 0;
    padding-left: 2rem;
}

.offer-description-content li {
    margin: 0.6rem 0;
    line-height: 1.7;
}

.offer-description-content p {
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .benefits-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .requirements-list-premium {
        grid-template-columns: 1fr;
    }
    
    .benefit-item-premium {
        padding: 1rem;
    }
    
    .requirement-item-premium {
        padding: 1rem;
    }
}

.company-offers-list {
    display: grid;
    gap: 1.5rem;
}

.company-offer-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, white 0%, rgba(248, 249, 255, 0.8) 100%);
    border: 2px solid rgba(30, 64, 175, 0.12);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    gap: 1rem;
}

.company-offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.company-offer-item:hover {
    border-color: rgba(30, 64, 175, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.company-offer-item:hover::before {
    left: 100%;
}

.company-offer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    flex-basis: 100%;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.company-offer-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.company-offer-meta span {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.company-offer-meta i {
    color: #1e40af;
    font-size: 0.95rem;
    min-width: 16px;
}

/* RESPONSIVE - TABLET (768px and below) */
@media (max-width: 768px) {
    .company-offers-list {
        gap: 1rem;
    }
    
    .company-offer-item {
        padding: 1.2rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .company-offer-title {
        margin-bottom: 0.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .company-offer-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
    }
    
    .company-offer-meta span {
        font-size: 0.85rem;
        flex: 0 1 auto;
    }
}

/* RESPONSIVE - MOBILE (480px and below) */
@media (max-width: 480px) {
    .company-offers-list {
        gap: 0.8rem;
    }
    
    .company-offer-item {
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .company-offer-title {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        width: 100%;
        word-break: break-word;
    }
    
    .company-offer-meta {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: flex-start;
    }
    
    .company-offer-meta span {
        font-size: 0.8rem;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }
}

/* Focus visible pour accessibilité */
.btn:focus-visible,
.company-offer-item:focus-visible,
a:focus-visible {
    outline: 3px solid #1e40af;
    outline-offset: 2px;
}

/* Amélioration des transitions globales */
* {
    scroll-behavior: smooth;
}

/* Header hero amélioré avec glassmorphism subtil */
.offer-header-premium {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Animation d'entrée pour les éléments clés */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Date "fraîche" avec meilleure visibilité */
.fresh-today {
    position: relative;
}

.date-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    animation: freshPulse 2s ease-in-out infinite;
}

@keyframes freshPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Amélioration company badge clickable */
.company-badge {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.company-badge:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(14, 165, 233, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.15);
}

/* Quick indicators améliorés */
.offer-quick-indicators {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.offer-quick-indicators::-webkit-scrollbar {
    display: none;
}

.indicator {
    transition: all 0.3s ease;
}

.indicator:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Skeleton loading pour images */
.company-logo-img {
    transition: opacity 0.3s ease;
}

.company-logo-img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Amélioration responsive mobile */
@media (max-width: 768px) {
    .title-premium {
        font-size: clamp(1.25rem, 5vw, 1.6rem);
        -webkit-line-clamp: 2;
    }
    
    .meta-premium {
        gap: 0.75rem;
    }
    
    .meta-item-premium {
        font-size: 0.9rem;
    }
    
    .meta-salary {
        padding: 0.5rem 0.9rem;
    }
    
    .meta-salary strong {
        font-size: 0.95rem;
    }
    
    .offer-logo-premium {
        width: 80px;
        height: 80px;
    }
    
    .btn-premium {
        padding: 1rem 1.5rem !important;
    }
    
    .btn-main {
        font-size: 0.9rem;
    }
    
    .btn-sub {
        font-size: 0.7rem;
    }
    
    /* Améliorer l'espacement des sections */
    .section-block-premium {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .engagement-section-premium {
        padding: 2rem 1.5rem;
    }
}

/* Amélioration pour les petits écrans */
@media (max-width: 480px) {
    .offer-detail-header.offer-header-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .header-top-badges {
        justify-content: center;
    }
    
    .offer-badges-premium {
        justify-content: center;
    }
    
    .meta-premium {
        justify-content: center;
    }
    
    .company-badge {
        margin: 0 auto;
    }
    
 
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
}

/* Préférence de mouvement réduit (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (si implémenté plus tard) */
@media (prefers-color-scheme: dark) {
    /* Styles préparés pour le dark mode */
}

.btn-success-outline {
    background: white !important;
    border: 2px solid #10b981 !important;
    color: #10b981 !important;
    position: relative !important;
    overflow: visible !important;
    transition: all 0.3s ease !important;
}

.btn-success-outline:hover {
    background: #f0fdf4 !important;
    border-color: #059669 !important;
    color: #059669 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2) !important;
}

.badge-already-applied {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(16, 185, 129, 0.6);
    }
}

.candidature-counter-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #0369a1;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    width: 100%;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.1);
}

.candidature-counter-info i {
    font-size: 1.2rem;
    color: #0ea5e9;
}

.candidature-counter-info strong {
    color: #0c4a6e;
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .badge-already-applied {
        position: relative;
        top: 0;
        right: 0;
        margin-left: 0.5rem;
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
    
    .candidature-counter-info {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }
}
