/* ===================================================================
   SECTION OFFRES EXCLUSIVES - VERSION COMPACTE
   =================================================================== */

.exclusive-offers-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

/* En-tête de section - Plus compact */
.exclusive-offers-header {
    text-align: center;
    margin-bottom: 20px;
}

.exclusive-badge-intro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    animation: pulse-exclusive-intro 2s ease-in-out infinite;
}

.exclusive-badge-intro i {
    font-size: 12px;
    animation: rotate-crown 4s linear infinite;
}

.exclusive-offers-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #92400e;
    margin: 12px 0 8px 0;
    line-height: 1.2;
}

.exclusive-offers-header p {
    color: #92400e;
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
}

/* Grille d'offres - Plus compacte */
.exclusive-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

/* Carte d'offre exclusive - Version compacte */
.exclusive-offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.exclusive-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
    border-color: #f59e0b;
}

/* Badge flottant - Plus petit */
.exclusive-floating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    z-index: 2;
    animation: float-badge 3s ease-in-out infinite;
}

.exclusive-floating-badge i {
    font-size: 10px;
    animation: sparkle 1.5s ease-in-out infinite;
}

/* Badge salaire - Plus petit */
.exclusive-salary-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    z-index: 2;
}

/* En-tête de carte - Plus compact */
.exclusive-offer-header {
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.exclusive-company-logo {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exclusive-offer-main {
    flex: 1;
    min-width: 0;
}

.exclusive-offer-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.exclusive-company-name {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

.exclusive-company-name i {
    color: #10b981;
    font-size: 11px;
}

/* Détails de l'offre - Plus compact */
.exclusive-offer-details {
    padding: 0 15px 12px 15px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.exclusive-detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 500;
}

.exclusive-detail-item i {
    color: #f59e0b;
    font-size: 10px;
}

/* Description - Plus courte */
.exclusive-offer-description {
    padding: 0 15px 12px 15px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pied de carte - Plus compact */
.exclusive-offer-footer {
    margin-top: auto;
    padding: 12px 15px;
    background: linear-gradient(to top, #f9fafb 0%, white 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
}

.exclusive-offer-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.exclusive-offer-date i {
    color: #f59e0b;
    font-size: 10px;
}

.exclusive-apply-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.exclusive-offer-card:hover .exclusive-apply-btn {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateX(3px);
}

.exclusive-apply-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.exclusive-offer-card:hover .exclusive-apply-btn i {
    transform: translateX(3px);
}

/* Message promotionnel - Plus compact */
.exclusive-promo-message {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.15);
    border: 2px dashed #f59e0b;
}

.exclusive-promo-message h3 {
    font-size: 18px;
    color: #92400e;
    margin: 0 0 8px 0;
    font-weight: 800;
}

.exclusive-promo-message p {
    color: #6b7280;
    font-size: 13px;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.exclusive-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.exclusive-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */

@keyframes pulse-exclusive-intro {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.5);
    }
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

@keyframes rotate-crown {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* ===================================================================
   RESPONSIVE - MOBILE
   =================================================================== */

@media (max-width: 768px) {
    .exclusive-offers-section {
        padding: 20px 0;
    }
    
    .exclusive-offers-header h2 {
        font-size: 18px;
        margin: 10px 0 6px 0;
    }
    
    .exclusive-offers-header p {
        font-size: 12px;
    }
    
    .exclusive-offers-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .exclusive-offer-header {
        padding: 12px;
    }
    
    .exclusive-company-logo {
        width: 45px;
        height: 45px;
    }
    
    .exclusive-promo-message {
        padding: 15px;
    }
    
    .exclusive-promo-message h3 {
        font-size: 16px;
    }
    
    .exclusive-promo-message p {
        font-size: 12px;
    }
}
