/* ================================================================
   SYSTÈME DE PROMOTION DES OFFRES EXCLUSIVES
   Design premium pour mettre en valeur les offres exclusives
   ================================================================ */

/* Section exclusive avec fond premium */
.exclusive-offers-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 20%, #fff7ed 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
}

/* Effet de brillance animé */
.exclusive-offers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* En-tête de section */
.exclusive-offers-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.exclusive-badge-intro {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    animation: pulse-exclusive-intro 2s ease-in-out infinite;
}

@keyframes pulse-exclusive-intro {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4); 
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6); 
    }
}

.exclusive-badge-intro i {
    font-size: 1.5rem;
    color: #fbbf24;
    animation: rotate-crown 3s ease-in-out infinite;
}

@keyframes rotate-crown {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.exclusive-badge-intro span {
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exclusive-offers-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.exclusive-offers-header p {
    color: #92400e;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Grille d'offres exclusives */
.exclusive-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Carte d'offre exclusive */
.exclusive-offer-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
    border: 2px solid #fbbf24;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.exclusive-offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.35);
    border-color: #f59e0b;
}

/* Badge exclusif flottant */
.exclusive-floating-badge {
    position: absolute;
    top: -15px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: float-badge 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.exclusive-floating-badge i {
    font-size: 0.9rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* En-tête de carte */
.exclusive-offer-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.exclusive-company-logo {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #fef3c7;
}

.exclusive-company-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.exclusive-offer-main {
    flex: 1;
    min-width: 0;
}

.exclusive-offer-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.exclusive-company-name {
    font-size: 1rem;
    font-weight: 600;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.exclusive-company-name i {
    color: #10b981;
}

/* Détails de l'offre */
.exclusive-offer-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.exclusive-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
    background: #fef3c7;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

.exclusive-detail-item i {
    color: #f59e0b;
}

/* Description */
.exclusive-offer-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer de carte */
.exclusive-offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #fef3c7;
}

.exclusive-offer-date {
    font-size: 0.85rem;
    color: #92400e;
    font-weight: 600;
}

.exclusive-apply-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.exclusive-apply-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

/* Badge salaire premium */
.exclusive-salary-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Message promotionnel */
.exclusive-promo-message {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #fbbf24;
}

.exclusive-promo-message h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.exclusive-promo-message p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.exclusive-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.exclusive-cta-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .exclusive-offers-section {
        padding: 3rem 0;
    }
    
    .exclusive-offers-header h2 {
        font-size: 2rem;
    }
    
    .exclusive-offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .exclusive-offer-card {
        padding: 1.5rem;
    }
    
    .exclusive-floating-badge {
        top: -10px;
        right: 10px;
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
}
